comparison src/findwidget.h @ 556:04f18b2a32e8 find

Add forgotten files. So busy looking at the test search results, I totally forget to read what the program is actually telling me!
author Chris Cannam
date Thu, 23 Feb 2012 11:44:50 +0000
parents
children 533519ebc0cb
comparison
equal deleted inserted replaced
555:a1d210c767ab 556:04f18b2a32e8
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