This repository has been archived on 2020-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
gnoemoe/gnoemoe/widgets/gm-commands.h
Jesse van den Kieboom 355c7e8a41 * VERSION CHANGED TO 2.0.9
* po/POTFILES.in: added gnoemoe/dialogs/gm-world-paste-dialog.c and
		  ui/gm-world-paste.glade
		* po/nl.po: added translations
		* ui/Makefile.am:
		* ui/gm-ui.xml:
		* ui/gm-world-paste.glade: new paste dialog
		* gnoemoe/mcp/Makefile.include: added gm-cell-renderer-text.[ch]
		* gnoemoe/mcp/gm-cell-renderer-text.[ch]: new cell renderer for 
		  rendering userlist
		* gnoemoe/mcp/gm-mcp-vmoo-client.c: update metrics in timeout so to
		  reduce the number of updates when resizing
		* gnoemoe/mcp/gm-mcp-icecrew-serverinfo.c: max version set to 1.0 (1.0 
		  does not actively request the info because it will be send on 
		  initialization). Set menu item invisible instead of insensitive when 
		  there is no info available
		* gnoemoe/mcp/gm-mcp-icecrew-userlist.c: fixed menu item substitution
		* gnoemoe/mcp/gm-mcp-vmoo-userlist.c: removed support for status 
		  because it doesn't really support it
		* gm-mcp-userlist-view.[ch]: moved column constants to header. Render
		  items with new gm-cell-renderer-text. 
		* gnoemoe/mcp/gm-mcp-icecrew-playerdb.[ch]: made 
		  gm_mcp_icecrew_playerdb_players public
		* gnoemoe/dialogs/Makefile.include: added gm-world-paste-dialog
		* gnoemoe/dialogs/gm-world-paste-dialog.[ch]: new paste dialog
		* gnoemoe/dialogs/gm-world-properties-dialog.c:
		* gnoemoe/dialogs/gm-world-logs-dialog.c: fixed leaking tree stores
		* gnoemoe/widgets/Makefile.include: added gm-commands.[ch]
		* gnoemoe/widgets/gm-commands.[ch]: new file for handling action
		  activation (removed from gm-app-view)
		* gnoemoe/widgets/gm-world-view.c: fixed userlist size restore
		* gnoemoe/widgets/gm-app-view.c: removed action handlers 
		* gnoemoe/gm-support.[ch]: added gm_find_child
		* gnoemoe/gm-world.c: removed debug message
		* gnoemoe/gm-ui.h: changed actions to gm-commands
2006-04-23 14:51:04 +00:00

30 lines
1.3 KiB
C

#ifndef __GM_COMMANDS_H__
#define __GM_COMMANDS_H__
void on_action_world_new(GtkAction *action, GmAppView *view);
void on_action_world_open(GtkAction *action, GmAppView *view);
void on_action_world_connect(GtkAction *action, GmAppView *view);
void on_action_world_paste(GtkAction *action, GmAppView *view);
void on_action_world_logs(GtkAction *action, GmAppView *view);
void on_action_world_close(GtkAction *action, GmAppView *view);
void on_action_world_quit(GtkAction *action, GmAppView *view);
void on_action_edit_cut(GtkAction *action, GmAppView *view);
void on_action_edit_copy(GtkAction *action, GmAppView *view);
void on_action_edit_paste(GtkAction *action, GmAppView *view);
void on_action_edit_worlds(GtkAction *action, GmAppView *view);
void on_action_edit_world(GtkAction *action, GmAppView *view);
void on_action_edit_preferences(GtkAction *action, GmAppView *view);
void on_action_edit_scripts(GtkAction *action, GmAppView *view);
void on_action_editor_save(GtkAction *action, GmAppView *view);
void on_action_editor_save_close(GtkAction *action, GmAppView *view);
void on_action_editor_parse(GtkAction *action, GmAppView *view);
void on_action_editor_close(GtkAction *action, GmAppView *view);
void on_action_edit_triggers(GtkAction *action, GmAppView *view);
void on_action_help_about(GtkAction *action, GmAppView *view);
#endif /* __GM_COMMANDS_H__ */