|
|
/*************************************************************************** logsearch.h - description ------------------- begin : Sun Jul 16 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 LOGSEARCH_H #define LOGSEARCH_H #include#include #include #include "myqlistviewitem.h" #define LIST_CALL 0 #define LIST_NAME 1 #define LIST_QTH 2 #define LIST_RSTS 3 #define LIST_RSTR 4 #define LIST_BAND 5 #define LIST_DATE 6 #define LIST_TIME 7 #define LIST_NOTES 8 /** *@author Luc Langehegermann */ class logSearch : public QDialog { Q_OBJECT public: logSearch(QWidget *parent=0, const char *name=0); ~logSearch(); void search (QString search); private: QListView* view; private slots: // Private slots void slotEdit(); void slotDeleteQSO(); }; #endif
Generated by: ernie on homer on Fri Aug 30 19:54:09 2002, using kdoc 2.0a53. |