00001 #ifndef RENDERSETTINGSDIALOG_H 00002 #define RENDERSETTINGSDIALOG_H 00003 00004 #include <Qt/qdialog.h> 00005 #include <vrs/sg/camerapatheditor.h> 00006 #include "../../../../src/qt4/CameraPathEditorWidget/resource/ui_renderSettings.h" 00007 00008 class RenderSettingsDialog : public QDialog 00009 00010 // Dialogform for renderingsettings 00011 { 00012 Q_OBJECT 00013 public: 00014 RenderSettingsDialog(VRS::SO<VRS::CameraPathEditor> cam); 00015 ~RenderSettingsDialog(){}; 00016 00017 public slots: 00018 void renderScene(); 00019 void fileOpenButtonTriggered(); 00020 00021 private: 00022 Ui::renderSettings _ui; 00023 VRS::SO<VRS::CameraPathEditor> _camera; 00024 }; 00025 00026 #endif // RENDERSETTINGSDIALOG_H