summaryrefslogtreecommitdiff
path: root/src/window_gui.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-01-18 10:36:55 +0000
committerpeter1138 <peter1138@openttd.org>2008-01-18 10:36:55 +0000
commit68707808c015db1cda0723882ffce99977d4593c (patch)
tree4a7f2fbd16bbc5ad48c890141c722273c2efea2e /src/window_gui.h
parentb7f50533c29ea74e9973ac641ec677eb69411d5d (diff)
downloadopenttd-68707808c015db1cda0723882ffce99977d4593c.tar.xz
(svn r11915) -Codechange: Add a function to draw a sort button's up/down arrow. Arrows are now drawn in a consistent position based on the widget, instead of randomly positioned by pixel.
Diffstat (limited to 'src/window_gui.h')
-rw-r--r--src/window_gui.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/window_gui.h b/src/window_gui.h
index 70deb5512..e8f5d7e7a 100644
--- a/src/window_gui.h
+++ b/src/window_gui.h
@@ -581,6 +581,14 @@ static inline void GuiShowTooltips(StringID str)
int GetWidgetFromPos(const Window *w, int x, int y);
void DrawWindowWidgets(const Window *w);
+enum SortButtonState {
+ SBS_OFF,
+ SBS_DOWN,
+ SBS_UP,
+};
+
+void DrawSortButtonState(const Window *w, int widget, SortButtonState state);
+
Window *GetCallbackWnd();
void DeleteNonVitalWindows();