summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-sheet/finddlg.h
authorthufir <thufir>2002-07-04 16:58:16 (UTC)
committer thufir <thufir>2002-07-04 16:58:16 (UTC)
commitd2b982a38091cbc7cd4eba0994ab6c5e3c7f7189 (patch) (side-by-side diff)
treed1e0a5fa80a12717b46257936ee3f8bb1b3ef89e /noncore/apps/opie-sheet/finddlg.h
parenta53847b7d27938551bb4f1c8891e7bacc93143ee (diff)
downloadopie-d2b982a38091cbc7cd4eba0994ab6c5e3c7f7189.zip
opie-d2b982a38091cbc7cd4eba0994ab6c5e3c7f7189.tar.gz
opie-d2b982a38091cbc7cd4eba0994ab6c5e3c7f7189.tar.bz2
added opie-sheet
Diffstat (limited to 'noncore/apps/opie-sheet/finddlg.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-sheet/finddlg.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/noncore/apps/opie-sheet/finddlg.h b/noncore/apps/opie-sheet/finddlg.h
new file mode 100644
index 0000000..02c9cdd
--- a/dev/null
+++ b/noncore/apps/opie-sheet/finddlg.h
@@ -0,0 +1,35 @@
+#ifndef FINDDLG_H
+#define FINDDLG_H
+
+#include <qdialog.h>
+#include <qtabwidget.h>
+#include <qlayout.h>
+#include <qlineedit.h>
+#include <qcheckbox.h>
+#include <qpushbutton.h>
+#include <qvbuttongroup.h>
+#include "sheet.h"
+
+class FindDialog: public QDialog
+{
+ Q_OBJECT
+
+ // QT objects
+ QBoxLayout *box;
+ QTabWidget *tabs;
+ QWidget *widgetFind, *widgetOptions;
+ QCheckBox *checkCase, *checkSelection, *checkEntire;
+ QLineEdit *editFind, *editReplace;
+ QVButtonGroup *groupType;
+
+ private slots:
+ void typeChanged(int id);
+
+ public:
+ FindDialog(QWidget *parent=0);
+ ~FindDialog();
+
+ int exec(Sheet *s);
+};
+
+#endif