kde-playground/kdepim/kalarm/find.h
Ivailo Monev a9b00154bc generic: replace forward class declarations with header inclusions
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2019-07-31 18:05:48 +00:00

78 lines
2.6 KiB
C++

/*
* find.h - search facility
* Program: kalarm
* Copyright © 2005-2009 by David Jarvie <djarvie@kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef FIND_H
#define FIND_H
#include <QObject>
#include <QPointer>
#include <QStringList>
#include <QModelIndex>
#include <QCheckBox>
class FindDlg;
class KFind;
class KSeparator;
class EventListView;
class Find : public QObject
{
Q_OBJECT
public:
explicit Find(EventListView* parent);
~Find();
void display();
void findNext(bool forward) { findNext(forward, false, false); }
signals:
void active(bool);
private slots:
void slotFind();
void slotKFindDestroyed() { emit active(false); }
void slotSelectionChanged();
private:
void findNext(bool forward, bool checkEnd, bool fromCurrent);
QModelIndex nextItem(const QModelIndex&, bool forward) const;
EventListView* mListView; // parent list view
QPointer<FindDlg> mDialog;
QCheckBox* mArchived;
QCheckBox* mLive;
KSeparator* mActiveArchivedSep;
QCheckBox* mMessageType;
QCheckBox* mFileType;
QCheckBox* mCommandType;
QCheckBox* mEmailType;
QCheckBox* mAudioType;
KFind* mFind;
QStringList mHistory; // list of history items for Find dialog
QString mLastPattern; // pattern used in last search
QString mStartID; // ID of first alarm searched if 'from cursor' was selected
long mOptions; // OR of find dialog options
bool mNoCurrentItem; // there is no current item for the purposes of searching
bool mFound; // true if any matches have been found
};
#endif // FIND_H
// vim: et sw=4: