blob: 3ddcfd68eb333b63065ac3a6a858a87b6c9aeb06 (
plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/***************************************************************************
* Copyright (C) 1999-2001 by Bernd Gehrmann and the KDevelop Team *
* bernd@tdevelop.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef _GREPDLG_H_
#define _GREPDLG_H_
#include <tqdialog.h>
#include <tqcombobox.h>
#include <tqcheckbox.h>
#include <kcombobox.h>
#include <klineedit.h>
class KConfig;
class KURLRequester;
class TQPushButton;
class GrepViewPart;
class KLineEdit;
class GrepDialog : public TQDialog
{
Q_OBJECT
TQ_OBJECT
public:
GrepDialog( GrepViewPart * part, TQWidget *parent=0, const char *name=0 );
~GrepDialog();
void setPattern(const TQString &pattern)
{ pattern_combo->setEditText(pattern); }
void setDirectory(const TQString &dir)
{ dir_combo->setEditText(dir); }
void setEnableProjectBox(bool enable);
TQString patternString() const
{ return pattern_combo->currentText(); }
TQString templateString() const
{ return template_edit->text(); }
TQString filesString() const
{ return files_combo->currentText(); }
TQString excludeString() const
{ return exclude_combo->currentText(); }
TQString directoryString() const
{ return dir_combo->currentText(); }
bool useProjectFilesFlag() const
{ return use_project_box->isChecked(); }
bool regexpFlag() const
{ return regexp_box->isChecked(); }
bool recursiveFlag() const
{ return recursive_box->isChecked(); }
bool noFindErrorsFlag() const
{ return no_find_err_box->isChecked(); }
bool caseSensitiveFlag() const
{ return case_sens_box->isChecked(); }
bool keepOutputFlag() const
{ return keep_output_box->isChecked(); }
void show();
void hide();
signals:
void searchClicked();
private slots:
void templateActivated(int index);
void slotSearchClicked();
void slotPatternChanged( const TQString &);
void slotSynchDirectory();
private:
KLineEdit *template_edit;
KHistoryCombo *pattern_combo;
KComboBox *files_combo;
KComboBox *exclude_combo;
KComboBox * dir_combo;
KURLRequester * url_requester;
TQCheckBox *regexp_box;
TQCheckBox *recursive_box;
TQCheckBox *use_project_box;
TQCheckBox *no_find_err_box;
TQCheckBox *case_sens_box;
TQCheckBox *keep_output_box;
KConfig* config;
TQPushButton *search_button;
TQPushButton *synch_button;
GrepViewPart * m_part;
};
#endif
|