|
|
|
#ifndef GUI_H
|
|
|
|
#define GUI_H
|
|
|
|
|
|
|
|
#include <tdemainwindow.h>
|
|
|
|
#include <tdelistview.h>
|
|
|
|
#include <tqsplitter.h>
|
|
|
|
#include <tqdict.h>
|
|
|
|
#include <dcopobject.h>
|
|
|
|
#include <kurl.h>
|
|
|
|
|
|
|
|
class Renderer;
|
|
|
|
|
|
|
|
class Control : public TDEMainWindow
|
|
|
|
{
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
Control();
|
|
|
|
|
|
|
|
void addCreator(const TQString &title);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void save(const KURL &file);
|
|
|
|
void save();
|
|
|
|
void saveAs();
|
|
|
|
|
|
|
|
void open();
|
|
|
|
void open(const KURL &file);
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void dropEvent(TQDropEvent *e, TQListViewItem *parent, TQListViewItem *pafter);
|
|
|
|
void currentChanged(TQListViewItem *item);
|
|
|
|
|
|
|
|
private:
|
|
|
|
TQWidget *mRight;
|
|
|
|
TDEListView *mTree, *mCreatorsList;
|
|
|
|
TQWidget *mConfigurator;
|
|
|
|
|
|
|
|
KURL mCurrentURL;
|
|
|
|
};
|
|
|
|
|
|
|
|
class RendererListView : public TDEListView
|
|
|
|
{
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
RendererListView(TQWidget *p);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual bool acceptDrag(TQDropEvent *event) const;
|
|
|
|
virtual TQDragObject *dragObject() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|