From b8a79edda20f0b764c8d70fb664f21fb80b61299 Mon Sep 17 00:00:00 2001 From: tille Date: Wed, 07 May 2003 12:36:02 +0000 Subject: initial import searches contacts, todos and events not much more yet --- (limited to 'core/pim/osearch/mainwindow.h') diff --git a/core/pim/osearch/mainwindow.h b/core/pim/osearch/mainwindow.h new file mode 100644 index 0000000..f7e8f8e --- a/dev/null +++ b/core/pim/osearch/mainwindow.h @@ -0,0 +1,69 @@ +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + +// (c) 2002 Patrick S. Vogt + +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include +#include +#include +#include +#include + +class QPEToolBar; +class QVBoxLayout; +class QTextView; +class QFrame; +class QListViewItem; +class OListView; +class OListViewItem; +class AdressSearch; +class TodoSearch; +class DatebookSearch; + +class MainWindow : public QMainWindow +{ + Q_OBJECT + + +public: + MainWindow( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); + ~MainWindow(); + + +public slots: + void setCurrent(QListViewItem*); + void showPopup(); + void stopTimer( QListViewItem* ); + void setSearch( const QString& ); + +protected slots: + void showItem(); + void editItem(); + +private: + OListView *resultsList; + QTextView *richEdit; + OListViewItem *_currentItem; + QVBoxLayout *mainLayout; + QFrame *detailsFrame; + OListViewItem *_item; + QTimer *popupTimer; + + AdressSearch *adrSearch; + TodoSearch *todoSearch; + DatebookSearch *datebookSearch; + + void makeMenu(); +}; + +#endif + -- cgit v0.9.0.2