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
449 B
30 lines
449 B
#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
|