~ubuntu-branches/ubuntu/lucid/kile/lucid

« back to all changes in this revision

Viewing changes to src/kile.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Wenning
  • Date: 2009-05-08 01:25:17 UTC
  • mfrom: (1.1.15 upstream) (2.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090508012517-qjs73veqvu063tzw
Tags: 1:2.1.0~svn963524-1ubuntu1
* Merge from debian unstable, remaining changes:
  - debain/control: Don't suggest kile-i18n
  - debian/kile-doc.install: Install to /usr/share/doc/kde/HTML
* Includes updated svn snapshot:
  - Fixes crash on exit. (LP: #357016)
  - Fixes for quick-build actions. (LP: #956878)
* debian/control: Make kile suggest a spell-check dictionary
  (aspell | ispell | hspell). (LP: #369871)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/***************************************************************************************
2
2
    begin                : sam jui 13 09:50:06 CEST 2002
3
3
    copyright            : (C) 2003 by Jeroen Wijnhout (wijnhout@science.uva.nl)
4
 
                               2007, 2008 by Michel Ludwig (michel.ludwig@kdemail.net)
 
4
                               2007-2009 by Michel Ludwig (michel.ludwig@kdemail.net)
5
5
 ***************************************************************************************/
6
6
 
7
7
/***************************************************************************
17
17
#define KILE_H
18
18
 
19
19
#include <QList>
20
 
#include <QHideEvent>
21
 
#include <QShowEvent>
22
20
#include <QSplitter>
23
21
#include <QStackedWidget>
24
22
#include <QString>
190
188
        KileLyxServer           *m_lyxserver;
191
189
        KileErrorHandler        *m_errorHandler;
192
190
 
193
 
        QWidget *m_focusWidget;
194
 
 
195
191
        /* actions */
196
 
        void showEvent(QShowEvent *e);
197
 
        void hideEvent(QHideEvent *e);
198
 
 
199
192
        void initSelectActions();
200
193
        void setupStatusBar();
201
194
        void setupSideBar();
222
215
        void setMenuItems(QStringList &list, QMap<QString,bool> &dict);
223
216
        void updateMenu();
224
217
        void updateActionList(const QList<QAction*>& list, bool state);
 
218
        bool updateMenuActivationStatus(QMenu *menu);
225
219
 
226
220
        void setViewerToolBars();
227
221