mitsuba/src/qtgui/sceneinfodlg.h

40 lines
1.1 KiB
C
Raw Normal View History

2011-03-28 02:01:34 +08:00
/*
This file is part of Mitsuba, a physically based rendering system.
2011-04-14 21:15:59 +08:00
Copyright (c) 2007-2011 by Wenzel Jakob and others.
2011-03-28 02:01:34 +08:00
Mitsuba is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License Version 3
as published by the Free Software Foundation.
Mitsuba is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
2011-04-14 21:15:59 +08:00
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2011-03-28 02:01:34 +08:00
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#if !defined(__SCENEINFODLG_H)
#define __SCENEINFODLG_H
#include "common.h"
namespace Ui {
class SceneInformationDialog;
}
class SceneInformationDialog : public QDialog {
Q_OBJECT
public:
SceneInformationDialog(QWidget *parent, Scene *scene);
~SceneInformationDialog();
protected:
void changeEvent(QEvent *e);
private:
Ui::SceneInformationDialog *ui;
};
#endif // __SCENEINFODLG_H