-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.h
63 lines (50 loc) · 1.03 KB
/
search.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//////////////////////////////////////////////////////////////
// $Id: search.h 20671 1999-05-02 14:28:37Z coolo $
//
// Author: Toivo Pedaste
//
#ifndef SEARCH_H
#define SEARCH_H
#include "config.h"
// Standard Headers
#include <stdio.h>
// Qt Headers
#include <qdir.h>
#include <qwidget.h>
#include <qframe.h>
#include <qlabel.h>
#include <qfiledlg.h>
#include <qgrpbox.h>
#include <qchkbox.h>
#include <qlayout.h>
// KDE headers
#include <kapp.h>
#include <kmenubar.h>
#include <kmsgbox.h>
#include <ktopwidget.h>
#include <kbuttonbox.h>
class Search : public QDialog
{
Q_OBJECT
public:
Search ( QWidget *parent = 0, const char *name=0);
~Search();
void resizeEvent(QResizeEvent *);
private:
QPushButton *ok, *cancel;
QCheckBox *substr;
QCheckBox *wrap;
QGroupBox *frame1;
QLineEdit *value;
QVBoxLayout* vl;
QVBoxLayout* vtop, vf;
QHBoxLayout* hc;
KButtonBox* hb;
signals:
void search_signal();
void search_done_signal();
public slots:
void done_slot();
void ok_slot();
};
#endif