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 #if !defined(INC_GRE_UILRGLOB_H) && (defined(X_NATIVE) || defined(WIN32_MFC))
00028 #define INC_GRE_UILRGLOB_H
00029
00030 #ifndef INC_GRE_LAYER_H
00031 #include <gre/layer.h>
00032 #endif
00033
00034 #ifndef INC_MGUI_FORM
00035 #include <mgui/form.h>
00036 #endif
00037
00038
00039
00040
00041 class GRE_LAYER::GLOBALOPTIONS::FORM : public MGUI::FORM_COMPOSITE {
00042 public:
00043
00044
00045 FORM (
00046 );
00047
00048
00049 virtual ~FORM (
00050 );
00051
00052
00053 void Create (
00054 MGUI::LAYOUT_PANE_BASE& ParentPane
00055 );
00056
00057
00058 const GRE_LAYER::GLOBALOPTIONS& GetValues (
00059 ) const;
00060
00061
00062 void SetValues (
00063 const GRE_LAYER::GLOBALOPTIONS& values
00064 );
00065
00066 private:
00067 #ifndef GENERATING_DOXYGEN_OUTPUT
00068 class PRIV;
00069 PRIV *m_pPriv;
00070 #endif
00071 };
00072
00073
00074
00075 #endif