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 QLineEdit; 00011 00012 #include <qdialog.h> 00013 00014 class SearchMethodDlg : public QDialog 00015 { 00016 Q_OBJECT 00017 00018 public: 00019 SearchMethodDlg(QWidget *parent, const char *name, bool modal=FALSE, QString itemname=0 ); 00020 00021 QString itemName; 00022 QLineEdit *nameLE; 00023 QLineEdit *lang1, *lang2, *trenner; 00024 void saveItem(); 00025 00026 private: 00027 QLineEdit *dictFileLE; 00028 void setupEntries( QString ); 00029 00030 private slots: 00031 void slotBrowse(); 00032 00033 };
1.4.2