Fixes:
- menu shortcuts implemented
- most windows close on space (except for menus with
PICK_ANY style)
- "hilite_pet" option is implemented
- map scrolling is improved somewhat (it now scrolls if
the char is within 5 spaces from the edge of the map -
configurable by #define CLIPAROUND_MARGIN)
- added 3 winhack-specific options:
win32_map_mode:[tiles|ascii4x6|ascii6x8|ascii8x8
|ascii16x8|ascii7x12|ascii8x12|ascii15x12
|ascii12x16|ascii10x18|fit_to_screen]=20
win32_align_status:[left|top|right|bottom]
win32_align_message:[left|top|right|bottom]
Note: aligning status window to left or right edge of the screen does
not look good.
20 lines
479 B
C
20 lines
479 B
C
/* Copyright (C) 2001 by Alex Kompel <shurikk@pacbell.net> */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
#ifndef MSWINMainWindow_h
|
|
#define MSWINMainWindow_h
|
|
|
|
/* this is a main appliation window */
|
|
|
|
#include "winMS.h"
|
|
|
|
#define NHWND_ALIGN_LEFT 0
|
|
#define NHWND_ALIGN_RIGHT 1
|
|
#define NHWND_ALIGN_TOP 2
|
|
#define NHWND_ALIGN_BOTTOM 3
|
|
|
|
HWND mswin_init_main_window ();
|
|
void mswin_layout_main_window(HWND changed_child);
|
|
|
|
#endif /* MSWINMainWindow_h */
|