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