X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fcanvas%2FCanvas.hxx;h=2c817f61bcbf98fe17805b505847204df1d41f7f;hb=36cb7a752b5d86d636aebd2379773923e0cbed1a;hp=1d508a8912543c12c07901949cfbaeae6addd8bf;hpb=2a6c50c893bc538bcfc5d0149ea9c59a4736fba9;p=simgear.git diff --git a/simgear/canvas/Canvas.hxx b/simgear/canvas/Canvas.hxx index 1d508a89..2c817f61 100644 --- a/simgear/canvas/Canvas.hxx +++ b/simgear/canvas/Canvas.hxx @@ -1,4 +1,4 @@ -// The canvas for rendering with the 2d API +///@file The canvas for rendering with the 2d API // // Copyright (C) 2012 Thomas Geymayer // @@ -23,33 +23,40 @@ #include "ODGauge.hxx" #include +#include #include +#include #include #include + #include #include -#include +#include #include namespace simgear { +/// Canvas 2D drawing API namespace canvas { class CanvasMgr; class MouseEvent; class Canvas: - public PropertyBasedElement + public PropertyBasedElement, + public nasal::Object { public: enum StatusFlags { STATUS_OK, - STATUS_DIRTY = 1, - MISSING_SIZE_X = STATUS_DIRTY << 1, + STATUS_DIRTY = 1, + LAYOUT_DIRTY = STATUS_DIRTY << 1, + MISSING_SIZE_X = LAYOUT_DIRTY << 1, MISSING_SIZE_Y = MISSING_SIZE_X << 1, + MISSING_SIZE = MISSING_SIZE_X | MISSING_SIZE_Y, CREATE_FAILED = MISSING_SIZE_Y << 1 }; @@ -72,15 +79,12 @@ namespace canvas Canvas(SGPropertyNode* node); virtual ~Canvas(); - - void setSystemAdapter(const SystemAdapterPtr& system_adapter); - SystemAdapterPtr getSystemAdapter() const; + virtual void onDestroy(); void setCanvasMgr(CanvasMgr* canvas_mgr); CanvasMgr* getCanvasMgr() const; bool isInit() const; - void destroy(); /** * Add a canvas which should be marked as dirty upon any change to this @@ -102,10 +106,33 @@ namespace canvas void removeParentCanvas(const CanvasWeakPtr& canvas); void removeChildCanvas(const CanvasWeakPtr& canvas); + /** + * Create a new group + */ GroupPtr createGroup(const std::string& name = ""); + + /** + * Get an existing group with the given name + */ GroupPtr getGroup(const std::string& name); + + /** + * Get an existing group with the given name or otherwise create a new + * group + */ + GroupPtr getOrCreateGroup(const std::string& name); + + /** + * Get the root group of the canvas + */ GroupPtr getRootGroup(); + /** + * Set the layout of the canvas (the layout will automatically update with + * the viewport size of the canvas) + */ + void setLayout(const LayoutRef& layout); + /** * Enable rendering for the next frame * @@ -116,7 +143,8 @@ namespace canvas void update(double delta_time_sec); - naRef addEventListener(const nasal::CallContext& ctx); + bool addEventListener(const std::string& type, const EventListener& cb); + bool dispatchEvent(const EventPtr& event); void setSizeX(int sx); void setSizeY(int sy); @@ -132,6 +160,8 @@ namespace canvas SGRect getViewport() const; bool handleMouseEvent(const MouseEventPtr& event); + bool propagateEvent( EventPtr const& event, + EventPropagationPath const& path ); virtual void childAdded( SGPropertyNode * parent, SGPropertyNode * child ); @@ -146,13 +176,23 @@ namespace canvas void reloadPlacements( const std::string& type = std::string() ); static void addPlacementFactory( const std::string& type, PlacementFactory factory ); + static void removePlacementFactory(const std::string& type); + + /** + * Set global SystemAdapter for all Canvas/ODGauge instances. + * + * The SystemAdapter is responsible for application specific operations + * like loading images/fonts and adding/removing cameras to the scene + * graph. + */ + static void setSystemAdapter(const SystemAdapterPtr& system_adapter); + static SystemAdapterPtr getSystemAdapter(); protected: - SystemAdapterPtr _system_adapter; CanvasMgr *_canvas_mgr; - std::auto_ptr _event_manager; + boost::scoped_ptr _event_manager; int _size_x, _size_y, @@ -167,7 +207,9 @@ namespace canvas _visible; ODGauge _texture; - GroupPtr _root_group; + + GroupPtr _root_group; + LayoutRef _layout; CullCallbackPtr _cull_callback; bool _render_always; // PlacementFactoryMap; static PlacementFactoryMap _placement_factories; - virtual void setSelf(const PropertyBasedElementPtr& self); void setStatusFlags(unsigned int flags, bool set = true); private: + static SystemAdapterPtr _system_adapter; + Canvas(const Canvas&); // = delete; Canvas& operator=(const Canvas&); // = delete; };