00001
00002
00003
00004
00005 #ifndef BALL_VIEW_DIALOGS_SETCAMERA_H
00006 #define BALL_VIEW_DIALOGS_SETCAMERA_H
00007
00008 #ifndef BALL_COMMON_GLOBAL_H
00009 # include <BALL/COMMON/global.h>
00010 #endif
00011
00012 #include <BALL/VIEW/UIC/ui_setCamera.h>
00013
00014 #include <QtGui/QDialog>
00015
00016 namespace BALL
00017 {
00018 namespace VIEW
00019 {
00020 class Camera;
00021
00025 class BALL_VIEW_EXPORT SetCamera
00026 : public QDialog,
00027 public Ui_SetCameraData
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 SetCamera( QWidget* parent = 0, const char* name = "SetCamera", bool modal = FALSE, Qt::WFlags fl = 0 );
00033 ~SetCamera();
00034
00035 Camera* camera;
00036
00037 public slots:
00038 void okPressed();
00039 };
00040
00041 } }
00042 #endif