summaryrefslogtreecommitdiff
path: root/src/window.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-04 08:49:57 +0000
committerrubidium <rubidium@openttd.org>2008-05-04 08:49:57 +0000
commit5b44c68b1943a143591ee9542cb1be0c46771a69 (patch)
treea71eb92f8a2eab857ca0a480d3d90f2fe01f2ec2 /src/window.cpp
parent72eb1f100b944902bee8bcc092dfaf0acbdfdd56 (diff)
downloadopenttd-5b44c68b1943a143591ee9542cb1be0c46771a69.tar.xz
(svn r12937) -Codechange: split allocating and finding the spot to place a window. Patch by Alberth.
Diffstat (limited to 'src/window.cpp')
-rw-r--r--src/window.cpp29
1 files changed, 21 insertions, 8 deletions
diff --git a/src/window.cpp b/src/window.cpp
index 04e8def39..0f3fd92fb 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -916,15 +916,14 @@ restart:
}
/**
- * Set the x and y coordinates of a new window.
+ * Compute the position of the top-left corner of a new window that is opened.
*
* @param *desc The pointer to the WindowDesc to be created
* @param window_number the window number of the new window
- * @param data arbitrary data that is send with the WE_CREATE message
*
- * @return see Window pointer of the newly created window
+ * @return Coordinate of the top-left corner of the new window
*/
-static Window *LocalAllocateWindowDesc(const WindowDesc *desc, int window_number, void *data)
+static Point LocalGetWindowPlacement(const WindowDesc *desc, int window_number)
{
Point pt;
Window *w;
@@ -954,8 +953,7 @@ static Window *LocalAllocateWindowDesc(const WindowDesc *desc, int window_number
pt.x = FindWindowById(WC_MAIN_TOOLBAR, 0)->left;
break;
case WDP_AUTO: /* Find a good automatic position for the window */
- pt = GetAutoPlacePosition(desc->default_width, desc->default_height);
- goto allocate_window;
+ return GetAutoPlacePosition(desc->default_width, desc->default_height);
case WDP_CENTER: /* Centre the window horizontally */
pt.x = (_screen.width - desc->default_width) / 2;
break;
@@ -981,9 +979,24 @@ static Window *LocalAllocateWindowDesc(const WindowDesc *desc, int window_number
}
}
-allocate_window:
- w = LocalAllocateWindow(pt.x, pt.y, desc->minimum_width, desc->minimum_height, desc->default_width, desc->default_height, desc->proc, desc->cls, desc->widgets, window_number, data);
+ return pt;
+}
+
+/**
+ * Set the positions of a new window from a WindowDesc and open it.
+ *
+ * @param *desc The pointer to the WindowDesc to be created
+ * @param window_number the window number of the new window
+ * @param data arbitrary data that is send with the WE_CREATE message
+ *
+ * @return Window pointer of the newly created window
+ */
+static Window *LocalAllocateWindowDesc(const WindowDesc *desc, int window_number, void *data)
+{
+ Point pt = LocalGetWindowPlacement(desc, window_number);
+ Window *w = LocalAllocateWindow(pt.x, pt.y, desc->minimum_width, desc->minimum_height, desc->default_width, desc->default_height, desc->proc, desc->cls, desc->widgets, window_number, data);
w->desc_flags = desc->flags;
+
return w;
}