|
|
/*************************************************************************** logedit.h - description ------------------- begin : Sun Jul 23 2000 copyright : (C) 2000 by Luc Langehegermann email : luc@1409.org ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef LOGEDIT_H #define LOGEDIT_H #include#include #include #include #include #include #include "myqlineedit.h" #include "myqlistviewitem.h" /** *@author Luc Langehegermann */ class logEdit : public KDialogBase { Q_OBJECT public: logEdit(QWidget *parent=0, myQListViewItem* _item=NULL); ~logEdit(); private: myQLineEdit* callEdit; QLineEdit* nameEdit; QLineEdit* qthEdit; QLineEdit* rstsEdit; QLineEdit* rstrEdit; QLineEdit* notesEdit; QComboBox* bandEdit; // QLineEdit* dateEdit; // QLineEdit* timeEdit; myQListViewItem* item; private slots: // Private slots void slotOk(); }; #endif
Generated by: ernie on homer on Fri Aug 30 19:54:09 2002, using kdoc 2.0a53. |