Chris@556: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
Chris@556: 
Chris@556: /*
Chris@556:     EasyMercurial
Chris@556: 
Chris@556:     Based on HgExplorer by Jari Korhonen
Chris@556:     Copyright (c) 2010 Jari Korhonen
Chris@644:     Copyright (c) 2013 Chris Cannam
Chris@644:     Copyright (c) 2013 Queen Mary, University of London
Chris@556:     
Chris@556:     This program is free software; you can redistribute it and/or
Chris@556:     modify it under the terms of the GNU General Public License as
Chris@556:     published by the Free Software Foundation; either version 2 of the
Chris@556:     License, or (at your option) any later version.  See the file
Chris@556:     COPYING included with this distribution for more information.
Chris@556: */
Chris@556: 
Chris@556: #ifndef FINDWIDGET_H
Chris@556: #define FINDWIDGET_H
Chris@556: 
Chris@556: #include <QWidget>
Chris@556: 
Chris@556: class QLineEdit;
Chris@556: 
Chris@556: class FindWidget : public QWidget
Chris@556: {
Chris@556:     Q_OBJECT
Chris@556: 
Chris@556: public:
Chris@556:     FindWidget(QWidget *parent = 0);
Chris@556:     ~FindWidget();
Chris@556: 
Chris@556: signals:
Chris@556:     void findTextChanged(QString);
Chris@556: 
Chris@556: private slots:
Chris@556:     void buttonPressed();
Chris@556: 
Chris@556: private:
Chris@556:     QLineEdit *m_lineEdit;
Chris@556: };
Chris@556: 
Chris@556: #endif