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

« back to all changes in this revision

Viewing changes to src/documentwidget.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:
74
74
        void saveState();
75
75
        void restoreState();
76
76
 
 
77
        KDirWatch &dirWatch();
 
78
 
77
79
    signals:
78
80
        void modified();
79
81
        void listViewSelectionChanged( int numSelected );
81
83
 
82
84
    public slots:
83
85
        void executeElement( DocumentListViewItem* );
84
 
        void editElement();
85
 
        void editElement( DocumentListViewItem* );
86
 
        void editElement( BibTeX::Element* );
 
86
        bool editElement();
 
87
        bool editElement( DocumentListViewItem* );
 
88
        bool editElement( BibTeX::Element* );
87
89
        void deleteElements();
88
90
        void sendSelectedToLyx();
89
91
        void cutElements();
98
100
        void findNext();
99
101
        void refreshBibTeXFile();
100
102
        void onlineSearch();
 
103
        void findDuplicates();
 
104
        void slotViewFirstDocument();
 
105
        void slotViewFirstDocumentsOnlineRef();
 
106
        void slotNormalizeIds();
101
107
 
102
108
    private:
103
109
        enum EditMode
132
138
        KAction *m_actionEditSelectAll;
133
139
        KAction *m_actionEditFind;
134
140
        KAction *m_actionEditFindNext;
 
141
        KAction *m_actionNormalizeIds;
135
142
        KDirWatch m_dirWatch;
136
143
 
137
144
        void setupGUI();