00001 /*************************************************************************** 00002 * * 00003 * This program is free software; you can redistribute it and/or modify * 00004 * it under the terms of the GNU General Public License as published by * 00005 * the Free Software Foundation; either version 2 of the License, or * 00006 * ( at your option ) any later version. * 00007 * * 00008 **************************************************************************/ 00009 00010 class QWidget; 00011 class QListView; 00012 class QPushButton; 00013 00014 #include <qdialog.h> 00015 00016 class ConfigDlg : public QDialog 00017 { 00018 Q_OBJECT 00019 00020 public: 00021 ConfigDlg(QWidget *parent, const char *name, bool modal=FALSE ); 00022 00023 private: 00024 QWidget *settings_tab, *search_tab; 00025 QListView *list; 00026 QPushButton *new_button, *change_button, *delete_button; 00027 00028 void loadSearchMethodNames(); 00029 00030 private slots: 00031 void slotNewMethod(); 00032 void slotChangeMethod(); 00033 void slotDeleteMethod(); 00034 };
1.4.2