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 #ifndef OSDL_BASE_GUI_VIEW_H_
00028 #define OSDL_BASE_GUI_VIEW_H_
00029
00030
00031
00032
00033
00034
00035 #include "Ceylan.h"
00036
00037 #include <string>
00038
00039
00040
00041
00042
00043
00044 namespace OSDL
00045 {
00046
00047
00048
00049 namespace Rendering
00050 {
00051
00052
00053
00061 class OSDL_DLL BaseGUIView : public Ceylan::MVC::BaseView
00062 {
00063
00064
00065 public:
00066
00067
00068
00074 explicit BaseGUIView() ;
00075
00076
00077
00082 virtual ~BaseGUIView() throw() ;
00083
00084
00092 virtual void render() ;
00093
00094
00106 virtual const std::string toString(
00107 Ceylan::VerbosityLevels level = Ceylan::high ) const ;
00108
00109
00110
00111
00112 protected:
00113
00114
00115
00116 private:
00117
00118
00119
00128 explicit BaseGUIView( const BaseGUIView & source ) ;
00129
00130
00131
00140 BaseGUIView & operator = ( const BaseGUIView & source ) ;
00141
00142
00143
00144
00145 } ;
00146
00147
00148 }
00149
00150 }
00151
00152
00153
00154 #endif // OSDL_BASE_GUI_VIEW_H_