source: terepaima/terepaima-0.4.16/sources/helpdialog.h

desarrollostretch
Last change on this file was 1f4adec, checked in by aosorio <aosorio@…>, 8 years ago

Agregado proyecto base, esto luego del dh_make -f

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2
3Copyright 2013 Benjamin Eltzner
4Copyright 2013 Adam Reichold
5
6This file is part of qpdfview.
7
8qpdfview is free software: you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation, either version 2 of the License, or
11(at your option) any later version.
12
13qpdfview is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with qpdfview.  If not, see <http://www.gnu.org/licenses/>.
20
21*/
22
23#ifndef HELPDIALOG_H
24#define HELPDIALOG_H
25
26#include <QDialog>
27
28class QDialogButtonBox;
29class QTextBrowser;
30class QLineEdit;
31
32namespace qpdfview
33{
34
35class HelpDialog : public QDialog
36{
37    Q_OBJECT
38
39public:
40    explicit HelpDialog(QWidget* parent = 0);
41    ~HelpDialog();
42
43protected slots:
44    void on_findPrevious_triggered();
45    void on_findNext_triggered();
46    void on_search_textEdited();
47
48private:
49    Q_DISABLE_COPY(HelpDialog)
50
51    QTextBrowser* m_textBrowser;
52
53    QDialogButtonBox* m_dialogButtonBox;
54
55    QLineEdit* m_searchLineEdit;
56    QPushButton* m_findPreviousButton;
57    QPushButton* m_findNextButton;
58
59};
60
61} // qpdfview
62
63#endif // HELPDIALOG_H
Note: See TracBrowser for help on using the repository browser.