summaryrefslogtreecommitdiff
path: root/src/gui/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/window.h')
-rw-r--r--src/gui/window.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/gui/window.h b/src/gui/window.h
index 9f5969f0..5c81ba6d 100644
--- a/src/gui/window.h
+++ b/src/gui/window.h
@@ -251,6 +251,11 @@ class Window : public gcn::Window, gcn::WidgetListener
*/
ContainerPlacer getPlacer(int x, int y);
+ /**
+ * Loads a window skin
+ */
+ void Window::loadSkin(const std::string filename);
+
private:
/**
* Determines if the mouse is in a resize area and returns appropriate
@@ -285,7 +290,10 @@ class Window : public gcn::Window, gcn::WidgetListener
static int mouseResize; /**< Active resize handles */
static int instances; /**< Number of Window instances */
- static ImageRect border; /**< The window border and background */
+
+ void setGuiAlpha();
+ static bool mAlphaChanged;
+ Image *border[9];
static Image *closeImage; /**< Close Button Image */
/**