status display - port modules (trunk only)

Introduction of a new set of window port status display
routines.  The new routines are conditional on
	STATUS_VIA_WINDOWPORT
being defined in config.h. See the experimental section,
where the #define resides for the time being.
This commit is contained in:
nethack.allison
2003-11-23 06:47:13 +00:00
parent 5ed547995d
commit 586a805c8f
10 changed files with 66 additions and 3 deletions

View File

@@ -81,7 +81,13 @@ struct window_procs amii_procs =
amii_outrip,
genl_preference_update,
genl_getmsghistory,
genl_putmsghistory
genl_putmsghistory,
#ifdef STATUS_VIA_WINDOWPORT
genl_status_init,
genl_status_finish,
genl_status_enablefield,
genl_status_update,
#endif
};
/* The view window layout uses the same function names so we can use
@@ -142,7 +148,13 @@ struct window_procs amiv_procs =
amii_outrip,
genl_preference_update,
genl_getmsghistory,
genl_putmsghistory
genl_putmsghistory,
#ifdef STATUS_VIA_WINDOWPORT
genl_status_init,
genl_status_finish,
genl_status_enablefield,
genl_status_update,
#endif
};
unsigned short amii_initmap[ AMII_MAXCOLORS ];

View File

@@ -2647,6 +2647,12 @@ struct window_procs mac_procs = {
genl_preference_update,
genl_getmsghistory,
genl_putmsghistory,
#ifdef STATUS_VIA_WINDOWPORT
genl_status_init,
genl_status_finish,
genl_status_enablefield,
genl_status_update,
#endif
};
/*macwin.c*/

View File

@@ -97,6 +97,12 @@ struct window_procs mswin_procs = {
mswin_preference_update,
genl_getmsghistory,
genl_putmsghistory,
#ifdef STATUS_VIA_WINDOWPORT
genl_status_init,
genl_status_finish,
genl_status_enablefield,
genl_status_update,
#endif
};
/*

View File

@@ -418,7 +418,7 @@ HACK_H = $(INCL)\hack.h $(CONFIG_H) $(INCL)\align.h $(INCL)\context.h \
$(INCL)\skills.h $(INCL)\onames.h $(INCL)\timeout.h \
$(INCL)\trap.h $(INCL)\flag.h $(INCL)\rm.h \
$(INCL)\vision.h $(INCL)\display.h $(INCL)\engrave.h \
$(INCL)\rect.h $(INCL)\region.h $(INCL)\winprocs.h \
$(INCL)\rect.h $(INCL)\region.h $(INCL)\winprocs.h $(INCL)\botl.h \
$(INCL)\wintty.h $(INCL)\trampoli.h
LEV_H = $(INCL)\lev.h

View File

@@ -5281,6 +5281,12 @@ struct window_procs Qt_procs = {
genl_preference_update,
genl_getmsghistory,
genl_putmsghistory,
#ifdef STATUS_VIA_WINDOWPORT
genl_status_init,
genl_status_finish,
genl_status_enablefield,
genl_status_update,
#endif
};
extern "C" void play_usersound(const char* filename, int volume)

View File

@@ -159,6 +159,12 @@ struct window_procs X11_procs = {
X11_preference_update,
genl_getmsghistory,
genl_putmsghistory,
#ifdef STATUS_VIA_WINDOWPORT
genl_status_init,
genl_status_finish,
genl_status_enablefield,
genl_status_update,
#endif
};
/*

View File

@@ -100,6 +100,12 @@ struct window_procs Gem_procs = {
Gem_preference_update,
genl_getmsghistory,
genl_putmsghistory
#ifdef STATUS_VIA_WINDOWPORT
genl_status_init,
genl_status_finish,
genl_status_enablefield,
genl_status_update,
#endif
};
#ifdef MAC

View File

@@ -76,6 +76,12 @@ struct window_procs Gnome_procs = {
genl_preference_update,
genl_getmsghistory,
genl_putmsghistory,
#ifdef STATUS_VIA_WINDOWPORT
genl_status_init,
genl_status_finish,
genl_status_enablefield,
genl_status_update,
#endif
};
/*

View File

@@ -40,6 +40,9 @@ extern void msmsg(const char *,...);
extern char mapped_menu_cmds[]; /* from options.c */
/* this is only needed until tty_status_* routines are written */
extern NEARDATA winid WIN_STATUS;
/* Interface definition, for windows.c */
struct window_procs tty_procs = {
"tty",
@@ -111,6 +114,12 @@ struct window_procs tty_procs = {
#endif
tty_getmsghistory,
tty_putmsghistory,
#ifdef STATUS_VIA_WINDOWPORT
genl_status_init,
genl_status_finish,
genl_status_enablefield,
genl_status_update,
#endif
};
static int maxwin = 0; /* number of windows in use */

View File

@@ -123,6 +123,12 @@ struct window_procs mswin_procs = {
mswin_preference_update,
mswin_getmsghistory,
mswin_putmsghistory,
#ifdef STATUS_VIA_WINDOWPORT
genl_status_init,
genl_status_finish,
genl_status_enablefield,
genl_status_update,
#endif
};