summaryrefslogtreecommitdiff
path: root/core/pim/osearch/mainwindow.h
Unidiff
Diffstat (limited to 'core/pim/osearch/mainwindow.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/osearch/mainwindow.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/pim/osearch/mainwindow.h b/core/pim/osearch/mainwindow.h
index 939762e..cba11c5 100644
--- a/core/pim/osearch/mainwindow.h
+++ b/core/pim/osearch/mainwindow.h
@@ -42,35 +42,37 @@ public:
42 42
43 43
44public slots: 44public slots:
45 void setCurrent(QListViewItem*); 45 void setCurrent(QListViewItem*);
46 void setSearch( const QString& ); 46 void setSearch( const QString& );
47 void searchAll(); 47 void searchAll();
48 48
49protected slots: 49protected slots:
50 void slotAction(int); 50 void slotAction(int);
51 void showPopup(); 51 void showPopup();
52 void stopTimer( QListViewItem* ); 52 void stopTimer( QListViewItem* );
53 void searchStringChanged(); 53 void searchStringChanged();
54 void optionChanged(int);
54 55
55private: 56private:
56 OListView *resultsList; 57 OListView *resultsList;
57 QTextView *richEdit; 58 QTextView *richEdit;
58 OListViewItem *_currentItem; 59 OListViewItem *_currentItem;
59 QVBoxLayout *mainLayout; 60 QVBoxLayout *mainLayout;
60 QHBoxLayout *buttonLayout; 61 QHBoxLayout *buttonLayout;
61 QFrame *detailsFrame; 62 QFrame *detailsFrame;
62 QTimer *popupTimer; 63 QTimer *popupTimer;
63 QTimer *searchTimer; 64 QTimer *searchTimer;
64 65
65 QString _searchString; 66 QString _searchString;
66 QList<SearchGroup> searches; 67 QList<SearchGroup> searches;
67 QHButtonGroup *buttonGroupActions; 68 QHButtonGroup *buttonGroupActions;
68 QAction *SearchAllAction; 69 QAction *SearchAllAction;
69 QAction *actionCaseSensitiv; 70 QAction *actionCaseSensitiv;
70 QAction *actionWildcards; 71 QAction *actionWildcards;
72 //QAction *actionWholeWordsOnly;
71 uint _buttonCount; 73 uint _buttonCount;
72 void makeMenu(); 74 void makeMenu();
73}; 75};
74 76
75#endif 77#endif
76 78