comparison src/findwidget.h @ 559:95877ad67d3e

Merge from branch "find"
author Chris Cannam
date Mon, 27 Feb 2012 17:08:47 +0000
parents 04f18b2a32e8
children 533519ebc0cb
comparison
equal deleted inserted replaced
553:9c8147c9f245 559:95877ad67d3e
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2
3 /*
4 EasyMercurial
5
6 Based on HgExplorer by Jari Korhonen
7 Copyright (c) 2010 Jari Korhonen
8 Copyright (c) 2011 Chris Cannam
9 Copyright (c) 2011 Queen Mary, University of London
10
11 This program is free software; you can redistribute it and/or
12 modify it under the terms of the GNU General Public License as
13 published by the Free Software Foundation; either version 2 of the
14 License, or (at your option) any later version. See the file
15 COPYING included with this distribution for more information.
16 */
17
18 #ifndef FINDWIDGET_H
19 #define FINDWIDGET_H
20
21 #include <QWidget>
22
23 class QLineEdit;
24
25 class FindWidget : public QWidget
26 {
27 Q_OBJECT
28
29 public:
30 FindWidget(QWidget *parent = 0);
31 ~FindWidget();
32
33 signals:
34 void findTextChanged(QString);
35
36 private slots:
37 void buttonPressed();
38
39 private:
40 QLineEdit *m_lineEdit;
41 };
42
43 #endif