00001 /*************************************************************************** 00002 commandentrydialog.h - description 00003 ------------------- 00004 begin : Wed Oct 31 2001 00005 copyright : (C) 2001 by Eggert Ehmke 00006 email : eggert.ehmke@berlin.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef COMMANDENTRYDIALOG_H 00019 #define COMMANDENTRYDIALOG_H 00020 00021 #include <ntqwidget.h> 00022 #include "commandentry.h" 00023 #include "CommandEntryDlg.h" 00024 #include "configelem.h" 00025 00030 class CommandEntryDialog : public CommandEntryDlg 00031 { 00032 Q_OBJECT 00033 public: 00034 CommandEntryDialog(TQWidget *parent, const char *name, CommandEntry* entry, ConfigElem* pConfigElem); 00035 ~CommandEntryDialog(); 00036 private slots: 00037 void slotPath (); 00038 void slotTest (); 00039 void slotOk (); 00040 private: 00041 CommandEntry* m_pentry; 00042 ConfigElem* m_pConfigElem; 00043 }; 00044 00045 #endif