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.
57 lines
910 B
57 lines
910 B
#ifndef GUI_H
|
|
#define GUI_H
|
|
|
|
#include <kmainwindow.h>
|
|
#include <klistview.h>
|
|
#include <tqsplitter.h>
|
|
#include <tqdict.h>
|
|
#include <dcopobject.h>
|
|
#include <kurl.h>
|
|
|
|
class Renderer;
|
|
|
|
class Control : public KMainWindow
|
|
{
|
|
Q_OBJECT
|
|
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 *tqparent, TQListViewItem *pafter);
|
|
void currentChanged(TQListViewItem *item);
|
|
|
|
private:
|
|
TQWidget *mRight;
|
|
KListView *mTree, *mCreatorsList;
|
|
TQWidget *mConfigurator;
|
|
|
|
KURL mCurrentURL;
|
|
};
|
|
|
|
class RendererListView : public KListView
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
RendererListView(TQWidget *p);
|
|
|
|
protected:
|
|
virtual bool acceptDrag(TQDropEvent *event) const;
|
|
virtual TQDragObject *dragObject() const;
|
|
};
|
|
|
|
|
|
#endif
|