25 #include <tqguardedptr.h>
26 #include <tqstringlist.h>
32 class EventListViewBase;
33 class EventListViewItemBase;
36 class Find : public TQObject
41 explicit Find(EventListViewBase* parent);
44 void findNext( bool forward) { findNext(forward, true); }
51 void slotKFindDestroyed() { emit active( false); }
54 void findNext( bool forward, bool sort, bool checkEnd = false, bool fromCurrent = false);
55 EventListViewItemBase* nextItem(EventListViewItemBase*, bool forward) const;
57 EventListViewBase* mListView;
58 TQGuardedPtr<KFindDialog> mDialog;
61 KSeparator* mActiveExpiredSep;
62 TQCheckBox* mMessageType;
63 TQCheckBox* mFileType;
64 TQCheckBox* mCommandType;
65 TQCheckBox* mEmailType;
67 TQStringList mHistory;
68 TQString mLastPattern;
|