You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
441 B
30 lines
441 B
#ifndef shell_xparthost_h
|
|
#define shell_xparthost_h
|
|
|
|
#include <kmainwindow.h>
|
|
#include <kparts/mainwindow.h>
|
|
#include <kdebug.h>
|
|
|
|
class KProcess;
|
|
|
|
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;
|
|
KProcess *m_partProcess;
|
|
};
|
|
|
|
#endif
|