summaryrefslogtreecommitdiffstats
path: root/kfind/kftabdlg.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit4aed2c8219774f5d797760606b8489a92ddc5163 (patch)
tree3f8c130f7d269626bf6a9447407ef6c35954426a /kfind/kftabdlg.h
downloadtdebase-4aed2c8219774f5d797760606b8489a92ddc5163.tar.gz
tdebase-4aed2c8219774f5d797760606b8489a92ddc5163.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kfind/kftabdlg.h')
-rw-r--r--kfind/kftabdlg.h136
1 files changed, 136 insertions, 0 deletions
diff --git a/kfind/kftabdlg.h b/kfind/kftabdlg.h
new file mode 100644
index 000000000..3ead70c99
--- /dev/null
+++ b/kfind/kftabdlg.h
@@ -0,0 +1,136 @@
+/***********************************************************************
+ *
+ * kftabdlg.h
+ *
+ ***********************************************************************/
+
+#ifndef KFTABDLG_H
+#define KFTABDLG_H
+
+#include <qtabwidget.h>
+#include <qvalidator.h> // for KDigitValidator
+
+#include <kurl.h>
+#include <kmimetype.h>
+
+#include "kdatecombo.h"
+
+class QButtonGroup;
+class QPushButton;
+class QRadioButton;
+class QCheckBox;
+class QLineEdit;
+class QString;
+class QDate;
+class QRegExp;
+class QDialog;
+class QComboBox;
+class QSpinBox;
+
+class KfDirDialog;
+
+class KfindTabWidget: public QTabWidget
+{
+ Q_OBJECT
+
+public:
+ KfindTabWidget(QWidget * parent = 0, const char *name=0);
+ virtual ~KfindTabWidget();
+ void initMimeTypes();
+ void initSpecialMimeTypes();
+ void setQuery(class KQuery * query);
+ void setDefaults();
+
+ void beginSearch();
+ void endSearch();
+ void loadHistory();
+ void saveHistory();
+ bool isSearchRecursive();
+
+ void setURL( const KURL & url );
+
+ virtual QSize sizeHint() const;
+
+public slots:
+ void setFocus();
+
+private slots:
+ void getDirectory();
+ void fixLayout();
+ void slotSizeBoxChanged(int);
+ void slotEditRegExp();
+
+signals:
+ void startSearch();
+
+protected:
+public:
+ QComboBox *nameBox;
+ QComboBox *dirBox;
+ // for first page
+ QCheckBox *subdirsCb;
+ QCheckBox *useLocateCb;
+ // for third page
+ QComboBox *typeBox;
+ QLineEdit * textEdit;
+ QCheckBox *caseSensCb;
+ QComboBox *m_usernameBox;
+ QComboBox *m_groupBox;
+ //for fourth page
+ QLineEdit *metainfoEdit;
+ QLineEdit *metainfokeyEdit;
+
+private:
+ bool isDateValid();
+
+ QString date2String(const QDate &);
+ QDate &string2Date(const QString &, QDate * );
+
+ QWidget *pages[3];
+
+ //1st page
+ QPushButton *browseB;
+
+ KfDirDialog *dirselector;
+
+ //2nd page
+ QCheckBox *findCreated;
+ QComboBox *betweenType;
+ QButtonGroup *bg;
+ QRadioButton *rb[2];
+ KDateCombo * fromDate;
+ KDateCombo * toDate;
+ QSpinBox *timeBox;
+
+ //3rd page
+ QComboBox *sizeBox;
+ QComboBox *sizeUnitBox;
+ QSpinBox *sizeEdit;
+ QCheckBox *caseContextCb;
+ QCheckBox *binaryContextCb;
+ QCheckBox *regexpContentCb;
+ QDialog *regExpDialog;
+
+ KURL m_url;
+
+ KMimeType::List m_types;
+ QStringList m_ImageTypes;
+ QStringList m_VideoTypes;
+ QStringList m_AudioTypes;
+};
+
+class KDigitValidator : public QValidator
+{
+ Q_OBJECT
+
+public:
+ KDigitValidator(QWidget * parent, const char *name = 0 );
+ ~KDigitValidator();
+
+ QValidator::State validate(QString & input, int &) const;
+
+ private:
+ QRegExp *r;
+};
+
+#endif