00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef OST_GFX_CUSTOM_RENDER_OPTIONS_HH
00024 #define OST_GFX_CUSTOM_RENDER_OPTIONS_HH
00025
00026 #include <boost/shared_ptr.hpp>
00027 #include <ost/base.hh>
00028
00029 #include <ost/gfx/module_config.hh>
00030
00031 #include "render_options.hh"
00032
00033 namespace ost {namespace gfx {
00034
00035 class DLLEXPORT_OST_GFX CustomRenderOptions: public RenderOptions {
00036 public:
00037 CustomRenderOptions();
00038
00039
00040 virtual RenderMode::Type GetRenderMode();
00041 virtual bool CanApplyRenderOptions(RenderOptionsPtr render_options);
00042 virtual void ApplyRenderOptions(RenderOptionsPtr render_options);
00043
00044
00045 void SetSphereDetail(uint sphere_detail);
00046 uint GetSphereDetail();
00047 void SetArcDetail(uint arc_detail);
00048 uint GetArcDetail();
00049 void SetSphereRad(float r);
00050 float GetSphereRad() const;
00051 void SetBondRad(float r);
00052 float GetBondRad() const;
00053
00054 private:
00055 uint sphere_detail_;
00056 uint arc_detail_;
00057 float sphere_rad_;
00058 float bond_rad_;
00059
00060 };
00061
00062 typedef boost::shared_ptr<CustomRenderOptions> CustomRenderOptionsPtr;
00063
00064 }}
00065
00066 #endif