~ubuntu-branches/ubuntu/trusty/bibletime/trusty

« back to all changes in this revision

Viewing changes to src/frontend/display/bthtmlfindtext.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Marsden
  • Date: 2009-11-18 17:30:00 UTC
  • mfrom: (1.3.4 upstream) (5.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20091118173000-endkhjz5qai88tvr
Tags: 2.4-1
* New upstream version 2.4
* debian/control: 
  - Replace incorrect bibletime-data Depends on lib4qt-gui
    with bibletime Depends on libqtgui4 (>= 4.4.0). (Closes: #556209).
  - Add Build-depends: on zlib1g-dev and libcurl4-gnutls-dev 
    (Closes: #556805).

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
#ifndef BTHTMLFINDTEXT_H
11
11
#define BTHTMLFINDTEXT_H
12
12
 
 
13
/// \todo Qt Designer UI file!?
13
14
#include "ui_bthtmlfindtext.h"
 
15
 
 
16
 
14
17
class CMDIArea;
15
18
class QWebView;
16
19
 
17
 
class BtHtmlFindText : public QDialog
18
 
{
19
 
        Q_OBJECT
 
20
class BtHtmlFindText : public QDialog {
 
21
        Q_OBJECT
20
22
 
21
 
public:
22
 
        BtHtmlFindText(CMDIArea* mdiArea, QWidget *parent=0, Qt::WindowFlags f=0);
23
 
        ~BtHtmlFindText();
24
 
public slots:
25
 
        void findNext();
26
 
        void findPrevious();
27
 
        void doHide();
28
 
private:
29
 
        QWebView* getActiveWindowWebView();
30
 
        Ui_findTextDialog ui;
31
 
        CMDIArea* m_mdiArea;
 
23
    public:
 
24
        BtHtmlFindText(CMDIArea* mdiArea, QWidget *parent = 0, Qt::WindowFlags f = 0);
 
25
        ~BtHtmlFindText();
 
26
    public slots:
 
27
        void findNext();
 
28
        void findPrevious();
 
29
        void doHide();
 
30
    private:
 
31
        QWebView* getActiveWindowWebView();
 
32
        Ui_findTextDialog ui;
 
33
        CMDIArea* m_mdiArea;
32
34
};
33
35
 
34
36
 
35
 
#endif 
 
37
#endif