00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00031
00032 #pragma once
00033
00034 #include "api_gl1.h"
00035 #include "../Core/System/sharedptr.h"
00036 #include "../Display/Window/display_window_description.h"
00037
00038 class CL_GL1WindowDescription_Impl;
00039
00052 class CL_API_GL1 CL_GL1WindowDescription : public CL_DisplayWindowDescription
00053 {
00056 public:
00058 CL_GL1WindowDescription();
00059
00063 CL_GL1WindowDescription(const CL_DisplayWindowDescription &desc);
00064 CL_GL1WindowDescription &operator=(CL_DisplayWindowDescription &desc);
00065
00066 virtual ~CL_GL1WindowDescription();
00067
00071 public:
00073
00074 bool get_doublebuffer() const;
00075
00077
00078 bool get_stereo() const;
00079
00081
00083 int get_buffer_size() const;
00084
00086 int get_red_size() const;
00087
00089 int get_green_size() const;
00090
00092 int get_blue_size() const;
00093
00095 int get_alpha_size() const;
00096
00098 int get_multisampling() const;
00099
00103 public:
00105
00106 void set_doublebuffer(bool value);
00107
00109
00110 void set_stereo(bool value);
00111
00113
00115 void set_buffer_size(int value);
00116
00118
00120 void set_red_size(int value);
00121
00123
00125 void set_green_size(int value);
00126
00128
00130 void set_blue_size(int value);
00131
00133
00135 void set_alpha_size(int value);
00136
00138 void set_multisampling(int value);
00139
00143 private:
00144 CL_SharedPtr<CL_GL1WindowDescription_Impl> impl_gl;
00146 };
00147