Krazy/EBN: qMin is better than QMIN
[kphotoalbum.git] / MainWindow / SearchBar.h
blob83c22536d8f8c8ffb7c7f2d8bec164e788a0dd36
1 /* Copyright (C) 2003-2006 Jesper K. Pedersen <blackie@kde.org>
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU General Public
5 License as published by the Free Software Foundation; either
6 version 2 of the License, or (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; see the file COPYING. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
18 #ifndef SEARCHBAR_H
19 #define SEARCHBAR_H
20 #include <ktoolbar.h>
21 #include <QEvent>
22 class KLineEdit;
23 class KMainWindow;
25 namespace MainWindow
28 class SearchBar :public KToolBar {
29 Q_OBJECT
31 public:
32 SearchBar( KMainWindow* parent );
34 protected:
35 virtual bool eventFilter( QObject* watched, QEvent* e );
37 public slots:
38 void reset();
39 void setLineEditEnabled(bool b);
41 signals:
42 void textChanged( const QString& );
43 void returnPressed();
44 void keyPressed( QKeyEvent* );
46 private:
47 KLineEdit* _edit;
48 QWidget* _browser;
54 #endif /* SEARCHBAR_H */