~ubuntu-branches/ubuntu/wily/kbibtex/wily

« back to all changes in this revision

Viewing changes to src/documentsourceview.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2009-06-15 12:41:19 UTC
  • mfrom: (1.1.3 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090615124119-eoojhlvkmw3o9tkm
Tags: 0.2.2-1
* New upstream version (Closes: #487301, #507837, #518959, #520392).
* Bumped Standards-Version to 3.8.1. No changes necessary.
* Added 'DM-Upload-Allowed: yes'.
* Added missing '${misc:Depends}'.
* Support for per-file encoding settings (Closes: #514356)
* Upgrade debhelper compatibility to version 5.
* Update debian/copyright for 2009 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include <kate/view.h>
29
29
#include <kate/document.h>
30
30
 
 
31
class KProgressDialog;
 
32
 
31
33
namespace KBibTeX
32
34
{
33
35
    class DocumentWidget;
75
77
        KTextEditor::EditInterface* m_editInterface;
76
78
        QString m_lastSearchTerm;
77
79
        QStringList m_findHistory;
 
80
        KProgressDialog *m_progDlg;
78
81
 
79
82
        void setupGUI();
80
83
        void readConfig();
83
86
        void writeConfig( KConfig *config );
84
87
 
85
88
        void search( int fromLine, int fromCol );
 
89
 
 
90
    private slots:
 
91
        void updateProgress(int current, int total);
86
92
    };
87
93
 
88
94
}