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.
23 lines
302 B
23 lines
302 B
15 years ago
|
#ifndef __example_h__
|
||
|
#define __example_h__
|
||
|
|
||
|
#include <kparts/mainwindow.h>
|
||
|
|
||
|
class Shell : public KParts::MainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
Shell();
|
||
|
virtual ~Shell();
|
||
|
|
||
|
void openURL( const KURL & url );
|
||
|
|
||
|
protected slots:
|
||
|
void slotFileOpen();
|
||
|
|
||
|
private:
|
||
|
KParts::ReadOnlyPart *m_gvpart;
|
||
|
};
|
||
|
|
||
|
#endif
|