Mercurial > hg > easyhg
annotate src/findwidget.h @ 587:4ed384ea7f39 fswatcher
comment only
author | Chris Cannam |
---|---|
date | Wed, 14 Mar 2012 12:00:20 +0000 |
parents | 533519ebc0cb |
children | ae67ea0af696 |
rev | line source |
---|---|
Chris@556 | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
Chris@556 | 2 |
Chris@556 | 3 /* |
Chris@556 | 4 EasyMercurial |
Chris@556 | 5 |
Chris@556 | 6 Based on HgExplorer by Jari Korhonen |
Chris@556 | 7 Copyright (c) 2010 Jari Korhonen |
Chris@560 | 8 Copyright (c) 2012 Chris Cannam |
Chris@560 | 9 Copyright (c) 2012 Queen Mary, University of London |
Chris@556 | 10 |
Chris@556 | 11 This program is free software; you can redistribute it and/or |
Chris@556 | 12 modify it under the terms of the GNU General Public License as |
Chris@556 | 13 published by the Free Software Foundation; either version 2 of the |
Chris@556 | 14 License, or (at your option) any later version. See the file |
Chris@556 | 15 COPYING included with this distribution for more information. |
Chris@556 | 16 */ |
Chris@556 | 17 |
Chris@556 | 18 #ifndef FINDWIDGET_H |
Chris@556 | 19 #define FINDWIDGET_H |
Chris@556 | 20 |
Chris@556 | 21 #include <QWidget> |
Chris@556 | 22 |
Chris@556 | 23 class QLineEdit; |
Chris@556 | 24 |
Chris@556 | 25 class FindWidget : public QWidget |
Chris@556 | 26 { |
Chris@556 | 27 Q_OBJECT |
Chris@556 | 28 |
Chris@556 | 29 public: |
Chris@556 | 30 FindWidget(QWidget *parent = 0); |
Chris@556 | 31 ~FindWidget(); |
Chris@556 | 32 |
Chris@556 | 33 signals: |
Chris@556 | 34 void findTextChanged(QString); |
Chris@556 | 35 |
Chris@556 | 36 private slots: |
Chris@556 | 37 void buttonPressed(); |
Chris@556 | 38 |
Chris@556 | 39 private: |
Chris@556 | 40 QLineEdit *m_lineEdit; |
Chris@556 | 41 }; |
Chris@556 | 42 |
Chris@556 | 43 #endif |