Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@telenet.be>2020-07-18 17:20:32 +0200
committerStijn Buys <ingar@telenet.be>2020-07-18 17:20:32 +0200
commit41ec4ed68571091f2e2500344a7aeb527a91dc92 (patch)
tree29584f1f2f949e73da749d2e2504799519a1c21a /src/ui/tooltip.h
parentb19afea9427dde861c990236ab11e23edfeb267c (diff)
Added standard close button widget class, added tooltips where approriate.
Diffstat (limited to 'src/ui/tooltip.h')
-rw-r--r--src/ui/tooltip.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ui/tooltip.h b/src/ui/tooltip.h
index 2345973..0cfa12d 100644
--- a/src/ui/tooltip.h
+++ b/src/ui/tooltip.h
@@ -19,7 +19,7 @@ class Tooltip : public Label
{
public:
Tooltip(Widget *parent);
- ~Tooltip();
+ virtual ~Tooltip();
/**
* @brief resize the tooltip
@@ -51,6 +51,11 @@ class Tooltip : public Label
*/
virtual void draw();
+ /**
+ * @brief draw the tooltip background
+ */
+ virtual void draw_background();
+
private:
static Tooltip *tooltip_global;