summaryrefslogtreecommitdiff
path: root/src/gui_w32.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-01-21 22:12:51 +0000
committerBram Moolenaar <Bram@vim.org>2006-01-21 22:12:51 +0000
commitc716c306e926156e24823fc0d365c64d7fdef165 (patch)
tree4def8fe8abdc7ccfa46acadb5d7c6c741ba05a51 /src/gui_w32.c
parentb1b715d1fb12f935a524dbaf2c2685a8bc0015a3 (diff)
downloadvim-git-c716c306e926156e24823fc0d365c64d7fdef165.tar.gz
updated for version 7.0184
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r--src/gui_w32.c25
1 files changed, 24 insertions, 1 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c
index c49d82b3e..234afe1f3 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -2166,6 +2166,29 @@ clear_rect(RECT *rcp)
}
+ void
+gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
+{
+ RECT workarea_rect;
+
+ get_work_area(&workarea_rect);
+
+ *screen_w = workarea_rect.right
+ - GetSystemMetrics(SM_CXFRAME) * 2;
+
+ /* FIXME: dirty trick: Because the gui_get_base_height() doesn't include
+ * the menubar for MSwin, we subtract it from the screen height, so that
+ * the window size can be made to fit on the screen. */
+ *screen_h = workarea_rect.bottom
+ - GetSystemMetrics(SM_CYFRAME) * 2
+ - GetSystemMetrics(SM_CYCAPTION)
+#ifdef FEAT_MENU
+ - gui_mswin_get_menu_height(FALSE)
+#endif
+ ;
+}
+
+
#if defined(FEAT_MENU) || defined(PROTO)
/*
* Add a sub menu to the menu bar.
@@ -2779,7 +2802,7 @@ gui_mch_dialog(
{
RECT workarea_rect;
- /* We don't have a window, use the desktip area. */
+ /* We don't have a window, use the desktop area. */
get_work_area(&workarea_rect);
maxDialogWidth = workarea_rect.right - workarea_rect.left - 100;
if (maxDialogWidth > 600)