#ifndef ICL_BORDER_HANDLE_H #define ICL_BORDER_HANDLE_H #include #include /** \cond */ class QGroupBox; /** \endcond */ namespace icl{ /// Handle class for "border" gui components (only for explicit "border" components) \ingroup HANDLES class BorderHandle : public GUIHandle{ public: /// Creates an empty border handle BorderHandle(){} /// Create a new border handle BorderHandle(QGroupBox *b, GUIWidget *w):GUIHandle(b,w){} /// get the borders title string std::string getTitle() const; /// setup the border to show another title void operator=(const std::string &title); }; } #endif