parts/doctreeview/doctreeglobalconfigwidget.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 * Copyright (C) 2002 by Bernd Gehrmann * 00003 * bernd@kdevelop.org * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 ***************************************************************************/ 00011 00012 #ifndef _DOCTREEGLOBALCONFIGWIDGET_H_ 00013 #define _DOCTREEGLOBALCONFIGWIDGET_H_ 00014 00015 #include "doctreeglobalconfigwidgetbase.h" 00016 00017 class DocTreeViewWidget; 00018 class DocTreeViewPart; 00019 00020 class DocTreeGlobalConfigWidget : public DocTreeGlobalConfigWidgetBase 00021 { 00022 Q_OBJECT 00023 00024 public: 00025 DocTreeGlobalConfigWidget( DocTreeViewPart *part, DocTreeViewWidget *widget, QWidget *parent, const char *name=0 ); 00026 ~DocTreeGlobalConfigWidget(); 00027 00028 public slots: 00029 void accept(); 00030 00031 private slots: 00032 void updateIndexClicked(); 00033 void removeBookmarkClicked(); 00034 void addBookmarkClicked(); 00035 void extEdit(); 00036 void extEnable(); 00037 void extDisable(); 00038 void doxygenadd_button_clicked(); 00039 void doxygenedit_button_clicked(); 00040 void doxygenremove_button_clicked(); 00041 void qtdocsadd_button_clicked(); 00042 void qtdocsedit_button_clicked(); 00043 void qtdocsremove_button_clicked(); 00044 void kdocadd_button_clicked(); 00045 void kdocedit_button_clicked(); 00046 void kdocremove_button_clicked(); 00047 void pushEdit_clicked(); 00048 void extAddButton_clicked(); 00049 void extRemoveButton_clicked(); 00050 void dhAddButton_clicked(); 00051 void dhDisableButton_clicked(); 00052 void dhEditButton_clicked(); 00053 void dhEnableButton_clicked(); 00054 void dhRemoveButton_clicked(); 00055 void dhScanButton_clicked(); 00056 00057 private: 00058 void readConfig(); 00059 void storeConfig(); 00060 void readTocConfigs(); 00061 void readDevHelpConfig(); 00062 00063 DocTreeViewWidget *m_widget; 00064 QStringList m_ignoreTocs; 00065 QStringList m_ignoreDevHelp; 00066 DocTreeViewPart *m_part; 00067 }; 00068 00069 #endif