~ubuntu-branches/ubuntu/raring/kbibtex/raring

« back to all changes in this revision

Viewing changes to src/kbibtexshell.h

  • Committer: Package Import Robot
  • Author(s): Michael Hanke
  • Date: 2011-07-18 09:29:48 UTC
  • mfrom: (1.1.6) (2.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20110718092948-ksxjmg7kdfamolmg
Tags: 0.3-1
* First upstream release for KDE4 (Closes: #634255). A number of search
  engines are still missing, in comparison to the 0.2 series.
* Bumped Standards-Version to 3.9.2, no changes necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
*   Copyright (C) 2004-2006 by Thomas Fischer                             *
3
 
*   fischer@unix-ag.uni-kl.de                                             *
4
 
*                                                                         *
5
 
*   This program is free software; you can redistribute it and/or modify  *
6
 
*   it under the terms of the GNU General Public License as published by  *
7
 
*   the Free Software Foundation; either version 2 of the License, or     *
8
 
*   (at your option) any later version.                                   *
9
 
*                                                                         *
10
 
*   This program is distributed in the hope that it will be useful,       *
11
 
*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12
 
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13
 
*   GNU General Public License for more details.                          *
14
 
*                                                                         *
15
 
*   You should have received a copy of the GNU General Public License     *
16
 
*   along with this program; if not, write to the                         *
17
 
*   Free Software Foundation, Inc.,                                       *
18
 
*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19
 
***************************************************************************/
20
 
 
21
 
#ifndef _KBIBTEXSHELL_H_
22
 
#define _KBIBTEXSHELL_H_
23
 
 
24
 
#ifdef HAVE_CONFIG_H
25
 
#include <config.h>
26
 
#endif
27
 
 
28
 
#include <kapplication.h>
29
 
#include <kparts/mainwindow.h>
30
 
 
31
 
class QWidget;
32
 
class QFrame;
33
 
 
34
 
class KToggleAction;
35
 
class KConfig;
36
 
class KRecentFilesAction;
37
 
 
38
 
class KBibTeXShell : public KParts::MainWindow
39
 
{
40
 
    Q_OBJECT
41
 
 
42
 
public:
43
 
    KBibTeXShell( QWidget* parentWidget = 0, const char* name = 0 );
44
 
 
45
 
    virtual ~KBibTeXShell();
46
 
 
47
 
    bool openURL( const KURL& url );
48
 
 
49
 
    KParts::ReadWritePart *part();
50
 
 
51
 
    //config file functions
52
 
public:
53
 
    void readConfig( KConfig * );
54
 
    void writeConfig( KConfig * );
55
 
 
56
 
    void readConfig();
57
 
    void writeConfig();
58
 
 
59
 
public:
60
 
    static QString encoding();
61
 
 
62
 
public slots:
63
 
    void slotAddRecentURL( const KURL& );
64
 
 
65
 
protected:
66
 
    virtual bool queryClose( );
67
 
 
68
 
private slots:
69
 
    void slotFileNew();
70
 
    void slotFileOpen();
71
 
    void slotFileOpen( const KURL& url );
72
 
    void slotFileClose();
73
 
    void optionsShowStatusbar();
74
 
    void optionsConfigureKeys();
75
 
    void optionsConfigureToolbars();
76
 
 
77
 
    void applyNewToolbarConfig();
78
 
 
79
 
    void slotActionStatusText( const QString &text );
80
 
 
81
 
private:
82
 
    KParts::ReadWritePart *m_part;
83
 
    QWidget* m_parentWidget;
84
 
 
85
 
    KToggleAction *m_statusbarAction;
86
 
 
87
 
    KRecentFilesAction *m_recentFiles;
88
 
 
89
 
    void saveProperties( KConfig * );
90
 
    void readProperties( KConfig * );
91
 
 
92
 
    void setupAccel();
93
 
    void setupActions();
94
 
 
95
 
    void initializePart( KParts::ReadWritePart* );
96
 
 
97
 
    bool checkExternalToolAvailable( const QString &binary );
98
 
};
99
 
 
100
 
#endif // _KBIBTEXSHELL_H_