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