mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 02:49:46 +00:00
db7cd3524d
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
36 lines
577 B
C++
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
|