summaryrefslogtreecommitdiffstats
path: root/xparts/xpart_notepad/shell_xparthost.h
blob: 590a6293327e6efb8ef800f9bf9441211e883b8f (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 <kmainwindow.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