blob: 154edb595d295328e46be22be92f61da92bb695f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/***************************************************************************
kimeshell.h - description
-------------------
begin : Mon Aug 5 2002
copyright : (C) 2002 by Jan Schäfer
email : janschaefer@users.sourceforge.net
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef KIMESHELL_H
#define KIMESHELL_H
#include <tdeparts/dockmainwindow.h>
class KImageMapEditor;
class KimeShell : public KParts::DockMainWindow
{
Q_OBJECT
public:
KimeShell( const char *name=0 );
virtual ~KimeShell();
void setStdout(bool b);
void openFile(const KURL & url);
/**
* Opens the last open file, if the
* user has configured to open the last
* file. Otherwise does nothing
*/
void openLastFile();
void readConfig();
void writeConfig();
protected:
void setupActions();
void readConfig(TDEConfig*);
void writeConfig(TDEConfig*);
// virtual bool queryClose();
virtual void readProperties(TDEConfig *config);
virtual void saveProperties(TDEConfig *config);
virtual bool queryClose();
virtual bool queryExit();
private slots:
void fileNew();
void fileOpen();
void optionsShowToolbar();
void optionsShowStatusbar();
void optionsConfigureKeys();
void optionsConfigureToolbars();
void applyNewToolbarConfig();
private:
KImageMapEditor *m_part;
bool _stdout; // write HTML-Code to stdout on exit ?
};
inline void KimeShell::setStdout(bool b) {
_stdout=b;
}
#endif
|