X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatviewsearchbar.h;fp=src%2Fqtui%2Fchatviewsearchbar.h;h=043e4bac0dab56471fc087378b4319868eef7a63;hp=0000000000000000000000000000000000000000;hb=a117d3bd1592bae3b14630c953790a005b3c3a3d;hpb=64735bfd46695ec6980195e50a4f167a64a9d3ab diff --git a/src/qtui/chatviewsearchbar.h b/src/qtui/chatviewsearchbar.h new file mode 100644 index 00000000..043e4bac --- /dev/null +++ b/src/qtui/chatviewsearchbar.h @@ -0,0 +1,52 @@ +/*************************************************************************** + * Copyright (C) 2005-08 by the Quassel Project * + * devel@quassel-irc.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) version 3. * + * * + * 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., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef CHATVIEWSEARCHBAR_H +#define CHATVIEWSEARCHBAR_H + +#include "ui_chatviewsearchbar.h" + +#include + +class QAction; + +class ChatViewSearchBar : public QWidget { + Q_OBJECT + +public: + ChatViewSearchBar(QWidget *parent = 0); + + inline QLineEdit *searchEditLine() const { return ui.searchEditLine; } + inline QCheckBox *caseSensitiveBox() const { return ui.caseSensitiveBox; } + inline QCheckBox *searchSendersBox() const { return ui.searchSendersBox; } + inline QCheckBox *searchMsgsBox() const { return ui.searchMsgsBox; } + inline QCheckBox *searchOnlyRegularMsgsBox() const { return ui.searchOnlyRegularMsgsBox; } + + inline QAction *toggleViewAction() const { return _toggleViewAction; } + +public slots: + void setVisible(bool visible); + +private: + Ui::ChatViewSearchBar ui; + QAction *_toggleViewAction; +}; + +#endif //CHATVIEWSEARCHBAR_H