#ifndef _LLX_APT_GRAPHICS_ #define _LLX_APT_GRAPHICS_ #include "Sources.hpp" #include namespace net { namespace lliurex { namespace apt { namespace graphics { class SourceLineBubble { protected: Cairo::RefPtr context; void DrawRoundSquare(float x,float y,float width,float height); float width; float height; SourceLine line; public: Cairo::RefPtr surface; SourceLineBubble(SourceLine line,float width,float height); virtual ~SourceLineBubble(); void Update(); }; } } } } #endif