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.
tdelibs/tdeparts/tests/example.h

40 lines
635 B

#ifndef __example_h__
#define __example_h__
#include <tdeparts/partmanager.h>
#include <tdeparts/mainwindow.h>
class TDEAction;
class TQWidget;
class Shell : public KParts::MainWindow
{
TQ_OBJECT
public:
Shell();
virtual ~Shell();
protected slots:
void slotFileOpen();
void slotFileOpenRemote();
void slotFileEdit();
void slotFileCloseEditor();
protected:
void embedEditor();
private:
TDEAction * m_paEditFile;
TDEAction * m_paCloseEditor;
KParts::ReadOnlyPart *m_part1;
KParts::Part *m_part2;
KParts::ReadWritePart *m_editorpart;
KParts::PartManager *m_manager;
TQWidget *m_splitter;
};
#endif