finddialog.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef __FINDDIALOG_H__
00027 #define __FINDDIALOG_H__
00028
00029 #include <qdatetime.h>
00030 #include <qdialog.h>
00031
00032 class FindWidget;
00033
00034 class FindDialogPrivate;
00035 class FindDialog : public QDialog
00036 {
00037 Q_OBJECT
00038 public:
00039
00040
00041
00042 #ifdef QTOPIA_INTERNAL_FD
00043
00044 FindDialog( const QString &appName,
00045 QWidget *parent = 0, const char *name = 0, bool modal = TRUE );
00046 ~FindDialog();
00047 #endif
00048
00049 QString findText() const;
00050 void setUseDate( bool show );
00051 void setDate( const QDate &dt );
00052
00053 public slots:
00054 void slotNotFound();
00055 void slotWrapAround();
00056
00057 signals:
00058 void signalFindClicked( const QString &txt, bool caseSensitive,
00059 bool backwards, int category );
00060 void signalFindClicked( const QString &txt, const QDate &dt,
00061 bool caseSensitive, bool backwards, int category );
00062
00063 private:
00064 FindWidget *fw;
00065 FindDialogPrivate *d;
00066 };
00067
00068 #endif
This file is part of the documentation for OPIE Version 1.5.5.