blob: 4e3298221326463e54fedeb6f82b3b111f90fd0d (
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
|
#ifndef shell_xparthost_h
#define shell_xparthost_h
#include <tdemainwindow.h>
#include <tdeparts/mainwindow.h>
#include <kdebug.h>
class TDEProcess;
class ShellWindow : public KParts::MainWindow
{
Q_OBJECT
public:
ShellWindow();
virtual ~ShellWindow();
public slots:
void hop();
void slotOpenUrl( const TQString &url );
void mergeGUI();
private:
XPartHost_KPart *m_host;
TDEProcess *m_partProcess;
};
#endif
|