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.
55 lines
872 B
55 lines
872 B
#ifndef GUI_H
|
|
#define GUI_H
|
|
|
|
#include <kmainwindow.h>
|
|
#include <klistview.h>
|
|
#include <qsplitter.h>
|
|
#include <qdict.h>
|
|
#include <dcopobject.h>
|
|
#include <kurl.h>
|
|
|
|
class Renderer;
|
|
|
|
class Control : public KMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Control();
|
|
|
|
void addCreator(const QString &title);
|
|
|
|
public slots:
|
|
void save(const KURL &file);
|
|
void save();
|
|
void saveAs();
|
|
|
|
void open();
|
|
void open(const KURL &file);
|
|
|
|
protected slots:
|
|
void dropEvent(QDropEvent *e, QListViewItem *parent, QListViewItem *pafter);
|
|
void currentChanged(QListViewItem *item);
|
|
|
|
private:
|
|
QWidget *mRight;
|
|
KListView *mTree, *mCreatorsList;
|
|
QWidget *mConfigurator;
|
|
|
|
KURL mCurrentURL;
|
|
};
|
|
|
|
class RendererListView : public KListView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
RendererListView(QWidget *p);
|
|
|
|
protected:
|
|
virtual bool acceptDrag(QDropEvent *event) const;
|
|
virtual QDragObject *dragObject() const;
|
|
};
|
|
|
|
|
|
#endif
|