lyx_mirror/src/frontends/qt2/QGraphicsDialog.h
John Levon db7cd3524d add graphics dialog - not quite working
the controllers really do make this piss easy to do :))


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2602 a592a061-630c-0410-9148-cb99ea01b6c8
2001-08-28 03:35:17 +00:00

36 lines
577 B
C++

/**
* \file QGraphicsDialog.h
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author John Levon <moz@compsoc.man.ac.uk>
*/
#ifndef QGRAPHICSDIALOG_H
#define QGRAPHICSDIALOG_H
#include <config.h>
#include "ui/QGraphicsDialogBase.h"
class QGraphics;
class QGraphicsDialog : public QGraphicsDialogBase
{ Q_OBJECT
public:
QGraphicsDialog(QGraphics * form);
protected slots:
virtual void change_adaptor();
virtual void browseClicked();
protected:
virtual void closeEvent(QCloseEvent * e);
private:
QGraphics * form_;
};
#endif // QGRAPHICSDIALOG_H