00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #if !defined(INC_GRE_UILRGLOB_H) && (defined(X_NATIVE) || defined(WIN32_MFC))
00025 #define INC_GRE_UILRGLOB_H
00026
00027 #ifndef INC_MI32_GRE_H
00028 #include <mi32/gre.h>
00029 #endif
00030
00031 #ifndef INC_MGUI_FORM
00032 #include <mgui/form.h>
00033 #endif
00034
00035
00036
00037
00038 class GRE_LAYER::GLOBALOPTIONS::FORM : public MGUI::FORM_COMPOSITE {
00039 public:
00040
00041
00042 FORM (
00043 );
00044
00045
00046 virtual ~FORM (
00047 );
00048
00049
00050 void Create (
00051 MGUI::LAYOUT_PANE_BASE& ParentPane
00052 );
00053
00054
00055 const GRE_LAYER::GLOBALOPTIONS& GetValues (
00056 ) const;
00057
00058
00059 void SetValues (
00060 const GRE_LAYER::GLOBALOPTIONS& values
00061 );
00062
00063 private:
00064 #ifndef GENERATING_DOXYGEN_OUTPUT
00065 class PRIV;
00066 PRIV *m_pPriv;
00067 #endif
00068 };
00069
00070
00071
00072 #endif