From 7a5ede33b58b8935ce33c5363f7d500ba8663c63 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Tue, 7 Jun 2016 21:32:41 +0200 Subject: Update all use of widget_*.png to new TexturedBox. --- plugingui/listbox.h | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'plugingui/listbox.h') diff --git a/plugingui/listbox.h b/plugingui/listbox.h index 9989ae7..1d5ed14 100644 --- a/plugingui/listbox.h +++ b/plugingui/listbox.h @@ -32,10 +32,14 @@ #include "widget.h" #include "painter.h" #include "listboxbasic.h" +#include "texturedbox.h" -namespace GUI { +namespace GUI +{ -class ListBox : public Widget { +class ListBox + : public Widget +{ public: ListBox(Widget *parent); ~ListBox(); @@ -61,7 +65,10 @@ public: private: ListBoxBasic basic; - Painter::Box box; + TexturedBox box{getImageCache(), ":widget.png", + 0, 0, // atlas offset (x, y) + 7, 1, 7, // dx1, dx2, dx3 + 7, 63, 7}; // dy1, dy2, dy3 }; } // GUI:: -- cgit v1.2.3