findwindow.h
changeset 809 0a1abd218f36
parent 808 b163492fda17
child 810 a9295db4dcbf
     1.1 --- a/findwindow.h	Wed Nov 25 15:27:22 2009 +0000
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,39 +0,0 @@
     1.4 -#ifndef FINDWINDOW_H 
     1.5 -#define FINDWINDOW_H
     1.6 -
     1.7 -#include <QMainWindow>
     1.8 -#include <QComboBox>
     1.9 -#include <QPushButton>
    1.10 -#include <QGroupBox>
    1.11 -#include <QLayout>
    1.12 -#include <QLabel>
    1.13 -
    1.14 -
    1.15 -class FindWindow : public QWidget
    1.16 -{
    1.17 -	Q_OBJECT
    1.18 -
    1.19 -public:
    1.20 -	FindWindow (QWidget* parent=0);
    1.21 -
    1.22 -public slots:	
    1.23 -	void popup();
    1.24 -	void cancelPressed();
    1.25 -	void findPressed();
    1.26 -	void findTextChanged(const QString&);
    1.27 -	void clearLineEdit();
    1.28 -
    1.29 -signals:
    1.30 -	void findButton(QString);		// emit to mainwindow
    1.31 -	void somethingChanged();	// emit to mainwindow
    1.32 -
    1.33 -private:
    1.34 -	QGroupBox *findbox;
    1.35 -	QComboBox *findcombo;
    1.36 -	QPushButton *clearbutton;
    1.37 -	QPushButton *findbutton;
    1.38 -	QPushButton *cancelbutton;
    1.39 -};
    1.40 -
    1.41 -
    1.42 -#endif