standard event identifierswxwidgets defines a special identifier value wxid_any which is used in the following two situations:
another standard special identifier value is wxid_none: this is a value which is not matched by any other id. wxwidgets also defines a few standard command identifiers which may be used by the user code and also are sometimes used by wxwidgets itself. these reserved identifiers are all in the range between wxid_lowest and wxid_highest and, accordingly, the user code should avoid defining its own constants in this range.
wxid_lowest = 4999,
wxid_open,
wxid_close,
wxid_new,
wxid_save,
wxid_saveas,
wxid_revert,
wxid_exit,
wxid_undo,
wxid_redo,
wxid_help,
wxid_print,
wxid_print_setup,
wxid_page_setup,
wxid_preview,
wxid_about,
wxid_help_contents,
wxid_help_index,
wxid_help_search,
wxid_help_commands,
wxid_help_procedures,
wxid_help_context,
wxid_close_all,
wxid_edit = 5030,
wxid_cut,
wxid_copy,
wxid_paste,
wxid_clear,
wxid_find,
wxid_duplicate,
wxid_selectall,
wxid_delete,
wxid_replace,
wxid_replace_all,
wxid_properties,
wxid_view_details,
wxid_view_largeicons,
wxid_view_smallicons,
wxid_view_list,
wxid_view_sortdate,
wxid_view_sortname,
wxid_view_sortsize,
wxid_view_sorttype,
wxid_file = 5050,
wxid_file1,
wxid_file2,
wxid_file3,
wxid_file4,
wxid_file5,
wxid_file6,
wxid_file7,
wxid_file8,
wxid_file9,
// standard button ids
wxid_ok = 5100,
wxid_cancel,
wxid_apply,
wxid_yes,
wxid_no,
wxid_static,
wxid_forward,
wxid_backward,
wxid_default,
wxid_more,
wxid_setup,
wxid_reset,
wxid_context_help,
wxid_yestoall,
wxid_notoall,
wxid_abort,
wxid_retry,
wxid_ignore,
wxid_up,
wxid_down,
wxid_home,
wxid_refresh,
wxid_stop,
wxid_index,
wxid_bold,
wxid_italic,
wxid_justify_center,
wxid_justify_fill,
wxid_justify_right,
wxid_justify_left,
wxid_underline,
wxid_indent,
wxid_unindent,
wxid_zoom_100,
wxid_zoom_fit,
wxid_zoom_in,
wxid_zoom_out,
wxid_undelete,
wxid_revert_to_saved,
// system menu ids (used by wxuniv):
wxid_system_menu = 5200,
wxid_close_frame,
wxid_move_frame,
wxid_resize_frame,
wxid_maximize_frame,
wxid_iconize_frame,
wxid_restore_frame,
// ids used by generic file dialog (13 consecutive starting from this value)
wxid_filedlgg = 5900,
wxid_highest = 5999
|