EVT_ACTIVATE(func) -- Process a wxEVT_ACTIVATE event. EVT_ACTIVATE_APP(func) -- Process a wxEVT_ACTIVATE_APP event. EVT_HIBERNATE(func) -- Process a hibernate event, supplying the member function. This event applies to wxApp only, and only on Windows SmartPhone and PocketPC. It is generated when the system is low on memory; the application should free up as much memory as possible, and restore full working when it receives a wxEVT_ACTIVATE or wxEVT_ACTIVATE_APP event. EVT_BUTTON(id, func) -- Process a wxEVT_COMMAND_BUTTON_CLICKED event, when the button is clicked. EVT_BUTTON(id, func) -- Process a wxEVT_COMMAND_BUTTON_CLICKED event, when the button is clicked. EVT_CALCULATE_LAYOUT(func) -- Process a wxEVT_CALCULATE_LAYOUT event, which asks the window to take a 'bite' out of a rectangle provided by the algorithm. EVT_CALENDAR(id, func) -- A day was double clicked in the calendar. EVT_CALENDAR_SEL_CHANGED(id, func) -- The selected date changed. EVT_CALENDAR_DAY(id, func) -- The selected day changed. EVT_CALENDAR_MONTH(id, func) -- The selected month changed. EVT_CALENDAR_YEAR(id, func) -- The selected year changed. EVT_CALENDAR_WEEKDAY_CLICKED(id, func) -- User clicked on the week day header EVT_CHECKBOX(id, func) -- Process a wxEVT_COMMAND_CHECKBOX_CLICKED event, when the checkbox is clicked. EVT_CHECKLISTBOX(id, func) -- Process a wxEVT_COMMAND_CHECKLISTBOX_TOGGLED event, when an item in the check list box is checked or unchecked. EVT_CHOICE(id, func) -- Process a wxEVT_COMMAND_CHOICE_SELECTED event, when an item on the list is selected. EVT_CLOSE(func) -- Process a close event, supplying the member function. This event applies to wxFrame and wxDialog classes. EVT_QUERY_END_SESSION(func) -- Process a query end session event, supplying the member function. This event applies to wxApp only. EVT_END_SESSION(func) -- Process an end session event, supplying the member function. This event applies to wxApp only. EVT_COMBOBOX(id, func) -- Process a wxEVT_COMMAND_COMBOBOX_SELECTED event, when an item on the list is selected. Note that calling GetValue returns the new value of selection. EVT_TEXT(id, func) -- Process a wxEVT_COMMAND_TEXT_UPDATED event, when the combobox text changes. EVT_TEXT_ENTER(id, func) -- Process a wxEVT_COMMAND_TEXT_ENTER event, when is pressed in the combobox. EVT_COMMAND(id, event, func) -- Process a command, supplying the window identifier, command event identifier, and member function. EVT_COMMAND_RANGE(id1, id2, event, func) -- Process a command for a range of window identifiers, supplying the minimum and maximum window identifiers, command event identifier, and member function. EVT_BUTTON(id, func) -- Process a wxEVT_COMMAND_BUTTON_CLICKED command, which is generated by a wxButton control. EVT_CHECKBOX(id, func) -- Process a wxEVT_COMMAND_CHECKBOX_CLICKED command, which is generated by a wxCheckBox control. EVT_CHOICE(id, func) -- Process a wxEVT_COMMAND_CHOICE_SELECTED command, which is generated by a wxChoice control. EVT_COMBOBOX(id, func) -- Process a wxEVT_COMMAND_COMBOBOX_SELECTED command, which is generated by a wxComboBox control. EVT_LISTBOX(id, func) -- Process a wxEVT_COMMAND_LISTBOX_SELECTED command, which is generated by a wxListBox control. EVT_LISTBOX_DCLICK(id, func) -- Process a wxEVT_COMMAND_LISTBOX_DOUBLECLICKED command, which is generated by a wxListBox control. EVT_MENU(id, func) -- Process a wxEVT_COMMAND_MENU_SELECTED command, which is generated by a menu item. EVT_MENU_RANGE(id1, id2, func) -- Process a wxEVT_COMMAND_MENU_RANGE command, which is generated by a range of menu items. EVT_CONTEXT_MENU(func) -- Process the event generated when the user has requested a popup menu to appear by pressing a special keyboard key (under Windows) or by right clicking the mouse. EVT_RADIOBOX(id, func) -- Process a wxEVT_COMMAND_RADIOBOX_SELECTED command, which is generated by a wxRadioBox control. EVT_RADIOBUTTON(id, func) -- Process a wxEVT_COMMAND_RADIOBUTTON_SELECTED command, which is generated by a wxRadioButton control. EVT_SCROLLBAR(id, func) -- Process a wxEVT_COMMAND_SCROLLBAR_UPDATED command, which is generated by a wxScrollBar control. This is provided for compatibility only; more specific scrollbar event macros should be used instead (see wxScrollEvent). EVT_SLIDER(id, func) -- Process a wxEVT_COMMAND_SLIDER_UPDATED command, which is generated by a wxSlider control. EVT_TEXT(id, func) -- Process a wxEVT_COMMAND_TEXT_UPDATED command, which is generated by a wxTextCtrl control. EVT_TEXT_ENTER(id, func) -- Process a wxEVT_COMMAND_TEXT_ENTER command, which is generated by a wxTextCtrl control. Note that you must use wxTE_PROCESS_ENTER flag when creating the control if you want it to generate such events. EVT_TEXT_MAXLEN(id, func) -- Process a wxEVT_COMMAND_TEXT_MAXLEN command, which is generated by a wxTextCtrl control when the user tries to enter more characters into it than the limit previously set with SetMaxLength. EVT_TOOL(id, func) -- Process a wxEVT_COMMAND_TOOL_CLICKED event (a synonym for wxEVT_COMMAND_MENU_SELECTED). Pass the id of the tool. EVT_TOOL_RANGE(id1, id2, func) -- Process a wxEVT_COMMAND_TOOL_CLICKED event for a range of identifiers. Pass the ids of the tools. EVT_TOOL_RCLICKED(id, func) -- Process a wxEVT_COMMAND_TOOL_RCLICKED event. Pass the id of the tool. EVT_TOOL_RCLICKED_RANGE(id1, id2, func) -- Process a wxEVT_COMMAND_TOOL_RCLICKED event for a range of ids. Pass the ids of the tools. EVT_TOOL_ENTER(id, func) -- Process a wxEVT_COMMAND_TOOL_ENTER event. Pass the id of the toolbar itself. The value of wxCommandEvent::GetSelection is the tool id, or -1 if the mouse cursor has moved off a tool. EVT_COMMAND_LEFT_CLICK(id, func) -- Process a wxEVT_COMMAND_LEFT_CLICK command, which is generated by a control (Windows 95 and NT only). EVT_COMMAND_LEFT_DCLICK(id, func) -- Process a wxEVT_COMMAND_LEFT_DCLICK command, which is generated by a control (Windows 95 and NT only). EVT_COMMAND_RIGHT_CLICK(id, func) -- Process a wxEVT_COMMAND_RIGHT_CLICK command, which is generated by a control (Windows 95 and NT only). EVT_COMMAND_SET_FOCUS(id, func) -- Process a wxEVT_COMMAND_SET_FOCUS command, which is generated by a control (Windows 95 and NT only). EVT_COMMAND_KILL_FOCUS(id, func) -- Process a wxEVT_COMMAND_KILL_FOCUS command, which is generated by a control (Windows 95 and NT only). EVT_COMMAND_ENTER(id, func) -- Process a wxEVT_COMMAND_ENTER command, which is generated by a control. EVT_CONTEXT_MENU(func) -- A right click (or other context menu command depending on platform) has been detected. EVT_DATE_CHANGED(id, func) -- This event fires when the user changes the current selection in the control. EVT_DIALUP_CONNECTED(func) -- A connection with the network was established. EVT_DIALUP_DISCONNECTED(func) -- The connection with the network was lost. EVT_DROP_FILES(func) -- Process a wxEVT_DROP_FILES event. EVT_ERASE_BACKGROUND(func) -- Process a wxEVT_ERASE_BACKGROUND event. EVT_FIND(id, func) -- Find button was pressed in the dialog. EVT_FIND_NEXT(id, func) -- Find next button was pressed in the dialog. EVT_FIND_REPLACE(id, func) -- Replace button was pressed in the dialog. EVT_FIND_REPLACE_ALL(id, func) -- Replace all button was pressed in the dialog. EVT_FIND_CLOSE(id, func) -- The dialog is being destroyed, any pointers to it cannot be used any longer. EVT_SET_FOCUS(func) -- Process a wxEVT_SET_FOCUS event. EVT_KILL_FOCUS(func) -- Process a wxEVT_KILL_FOCUS event. EVT_GRID_EDITOR_CREATED(func) -- The editor for a cell was created. Processes a wxEVT_GRID_EDITOR_CREATED. EVT_GRID_CMD_EDITOR_CREATED(id, func) -- The editor for a cell was created; variant taking a window identifier. Processes a wxEVT_GRID_EDITOR_CREATED. EVT_GRID_CELL_LEFT_CLICK(func) -- The user clicked a cell with the left mouse button. Processes a wxEVT_GRID_CELL_LEFT_CLICK. EVT_GRID_CELL_RIGHT_CLICK(func) -- The user clicked a cell with the right mouse button. Processes a wxEVT_GRID_CELL_RIGHT_CLICK. EVT_GRID_CELL_LEFT_DCLICK(func) -- The user double-clicked a cell with the left mouse button. Processes a wxEVT_GRID_CELL_LEFT_DCLICK. EVT_GRID_CELL_RIGHT_DCLICK(func) -- The user double-clicked a cell with the right mouse button. Processes a wxEVT_GRID_CELL_RIGHT_DCLICK. EVT_GRID_LABEL_LEFT_CLICK(func) -- The user clicked a label with the left mouse button. Processes a wxEVT_GRID_LABEL_LEFT_CLICK. EVT_GRID_LABEL_RIGHT_CLICK(func) -- The user clicked a label with the right mouse button. Processes a wxEVT_GRID_LABEL_RIGHT_CLICK. EVT_GRID_LABEL_LEFT_DCLICK(func) -- The user double-clicked a label with the left mouse button. Processes a wxEVT_GRID_LABEL_LEFT_DCLICK. EVT_GRID_LABEL_RIGHT_DCLICK(func) -- The user double-clicked a label with the right mouse button. Processes a wxEVT_GRID_LABEL_RIGHT_DCLICK. EVT_GRID_CELL_CHANGE(func) -- The user changed the data in a cell. Processes a wxEVT_GRID_CELL_CHANGE. EVT_GRID_SELECT_CELL(func) -- The user moved to, and selected a cell. Processes a wxEVT_GRID_SELECT_CELL. EVT_GRID_EDITOR_HIDDEN(func) -- The editor for a cell was hidden. Processes a wxEVT_GRID_EDITOR_HIDDEN. EVT_GRID_EDITOR_SHOWN(func) -- The editor for a cell was shown. Processes a wxEVT_GRID_EDITOR_SHOWN. EVT_GRID_CMD_CELL_LEFT_CLICK(id, func) -- The user clicked a cell with the left mouse button; variant taking a window identifier. Processes a wxEVT_GRID_CELL_LEFT_CLICK. EVT_GRID_CMD_CELL_RIGHT_CLICK(id, func) -- The user clicked a cell with the right mouse button; variant taking a window identifier. Processes a wxEVT_GRID_CELL_RIGHT_CLICK. EVT_GRID_CMD_CELL_LEFT_DCLICK(id, func) -- The user double-clicked a cell with the left mouse button; variant taking a window identifier. Processes a wxEVT_GRID_CELL_LEFT_DCLICK. EVT_GRID_CMD_CELL_RIGHT_DCLICK(id, func) -- The user double-clicked a cell with the right mouse button; variant taking a window identifier. Processes a wxEVT_GRID_CELL_RIGHT_DCLICK. EVT_GRID_CMD_LABEL_LEFT_CLICK(id, func) -- The user clicked a label with the left mouse button; variant taking a window identifier. Processes a wxEVT_GRID_LABEL_LEFT_CLICK. EVT_GRID_CMD_LABEL_RIGHT_CLICK(id, func) -- The user clicked a label with the right mouse button; variant taking a window identifier. Processes a wxEVT_GRID_LABEL_RIGHT_CLICK. EVT_GRID_CMD_LABEL_LEFT_DCLICK(id, func) -- The user double-clicked a label with the left mouse button; variant taking a window identifier. Processes a wxEVT_GRID_LABEL_LEFT_DCLICK. EVT_GRID_CMD_LABEL_RIGHT_DCLICK(id, func) -- The user double-clicked a label with the right mouse button; variant taking a window identifier. Processes a wxEVT_GRID_LABEL_RIGHT_DCLICK. EVT_GRID_CMD_CELL_CHANGE(id, func) -- The user changed the data in a cell; variant taking a window identifier. Processes a wxEVT_GRID_CELL_CHANGE. EVT_GRID_CMD_SELECT_CELL(id, func) -- The user moved to, and selected a cell; variant taking a window identifier. Processes a wxEVT_GRID_SELECT_CELL. EVT_GRID_CMD_EDITOR_HIDDEN(id, func) -- The editor for a cell was hidden; variant taking a window identifier. Processes a wxEVT_GRID_EDITOR_HIDDEN. EVT_GRID_CMD_EDITOR_SHOWN(id, func) -- The editor for a cell was shown; variant taking a window identifier. Processes a wxEVT_GRID_EDITOR_SHOWN. EVT_GRID_RANGE_SELECT(func) -- The user selected a group of contiguous cells. Processes a wxEVT_GRID_RANGE_SELECT. EVT_GRID_CMD_RANGE_SELECT(func) -- The user selected a group of contiguous cells; variant taking a window identifier. Processes a wxEVT_GRID_RANGE_SELECT. EVT_GRID_COL_SIZE(func) -- The user resized a column by dragging it. Processes a wxEVT_GRID_COL_SIZE. EVT_GRID_ROW_SIZE(func) -- The user resized a row by dragging it. Processes a wxEVT_GRID_ROW_SIZE. EVT_GRID_CMD_COL_SIZE(func) -- The user resized a column by dragging it; variant taking a window identifier. Processes a wxEVT_GRID_COL_SIZE. EVT_GRID_CMD_ROW_SIZE(func) -- The user resized a row by dragging it; variant taking a window identifier. Processes a wxEVT_GRID_ROW_SIZE. EVT_HELP(id, func) -- Process a wxEVT_HELP event. EVT_HELP_RANGE(id1, id2, func) -- Process a wxEVT_HELP event for a range of ids. EVT_ICONIZE(func) -- Process a wxEVT_ICONIZE event. EVT_IDLE(func) -- Process a wxEVT_IDLE event. EVT_INIT_DIALOG(func) -- Process a wxEVT_INIT_DIALOG event. EVT_JOY_BUTTON_DOWN(func) -- Process a wxEVT_JOY_BUTTON_DOWN event. EVT_JOY_BUTTON_UP(func) -- Process a wxEVT_JOY_BUTTON_UP event. EVT_JOY_MOVE(func) -- Process a wxEVT_JOY_MOVE event. EVT_JOY_ZMOVE(func) -- Process a wxEVT_JOY_ZMOVE event. EVT_JOYSTICK_EVENTS(func) -- Processes all joystick events. EVT_KEY_DOWN(func) -- Process a wxEVT_KEY_DOWN event (any key has been pressed). EVT_KEY_UP(func) -- Process a wxEVT_KEY_UP event (any key has been released). EVT_CHAR(func) -- Process a wxEVT_CHAR event. EVT_QUERY_LAYOUT_INFO(func) -- Process a wxEVT_QUERY_LAYOUT_INFO event, to get size, orientation and alignment from a window. See wxQueryLayoutInfoEvent. EVT_CALCULATE_LAYOUT(func) -- Process a wxEVT_CALCULATE_LAYOUT event, which asks the window to take a 'bite' out of a rectangle provided by the algorithm. See wxCalculateLayoutEvent. EVT_LISTBOX(id, func) -- Process a wxEVT_COMMAND_LISTBOX_SELECTED event, when an item on the list is selected. EVT_LISTBOX_DCLICK(id, func) -- Process a wxEVT_COMMAND_LISTBOX_DOUBLECLICKED event, when the listbox is double-clicked. EVT_LIST_BEGIN_DRAG(id, func) -- Begin dragging with the left mouse button. EVT_LIST_BEGIN_RDRAG(id, func) -- Begin dragging with the right mouse button. EVT_LIST_BEGIN_LABEL_EDIT(id, func) -- Begin editing a label. This can be prevented by calling Veto(). EVT_LIST_END_LABEL_EDIT(id, func) -- Finish editing a label. This can be prevented by calling Veto(). EVT_LIST_DELETE_ITEM(id, func) -- Delete an item. EVT_LIST_DELETE_ALL_ITEMS(id, func) -- Delete all items. EVT_LIST_ITEM_SELECTED(id, func) -- The item has been selected. EVT_LIST_ITEM_DESELECTED(id, func) -- The item has been deselected. EVT_LIST_ITEM_ACTIVATED(id, func) -- The item has been activated (ENTER or double click). EVT_LIST_ITEM_FOCUSED(id, func) -- The currently focused item has changed. EVT_LIST_ITEM_MIDDLE_CLICK(id, func) -- The middle mouse button has been clicked on an item. EVT_LIST_ITEM_RIGHT_CLICK(id, func) -- The right mouse button has been clicked on an item. EVT_LIST_KEY_DOWN(id, func) -- A key has been pressed. EVT_LIST_INSERT_ITEM(id, func) -- An item has been inserted. EVT_LIST_COL_CLICK(id, func) -- A column ( m_col) has been left-clicked. EVT_LIST_COL_RIGHT_CLICK(id, func) -- A column ( m_col) has been right-clicked. EVT_LIST_COL_BEGIN_DRAG(id, func) -- The user started resizing a column - can be vetoed. EVT_LIST_COL_DRAGGING(id, func) -- The divider between columns is being dragged. EVT_LIST_COL_END_DRAG(id, func) -- A column has been resized by the user. EVT_LIST_CACHE_HINT(id, func) -- Prepare cache for a virtual list control EVT_LIST_BEGIN_DRAG(id, func) -- Begin dragging with the left mouse button. EVT_LIST_BEGIN_RDRAG(id, func) -- Begin dragging with the right mouse button. EVT_LIST_BEGIN_LABEL_EDIT(id, func) -- Begin editing a label. This can be prevented by calling Veto(). EVT_LIST_END_LABEL_EDIT(id, func) -- Finish editing a label. This can be prevented by calling Veto(). EVT_LIST_DELETE_ITEM(id, func) -- Delete an item. EVT_LIST_DELETE_ALL_ITEMS(id, func) -- Delete all items. EVT_LIST_ITEM_SELECTED(id, func) -- The item has been selected. EVT_LIST_ITEM_DESELECTED(id, func) -- The item has been deselected. EVT_LIST_ITEM_ACTIVATED(id, func) -- The item has been activated (ENTER or double click). EVT_LIST_ITEM_FOCUSED(id, func) -- The currently focused item has changed. EVT_LIST_ITEM_MIDDLE_CLICK(id, func) -- The middle mouse button has been clicked on an item. EVT_LIST_ITEM_RIGHT_CLICK(id, func) -- The right mouse button has been clicked on an item. EVT_LIST_KEY_DOWN(id, func) -- A key has been pressed. EVT_LIST_INSERT_ITEM(id, func) -- An item has been inserted. EVT_LIST_COL_CLICK(id, func) -- A column ( m_col) has been left-clicked. EVT_LIST_COL_RIGHT_CLICK(id, func) -- A column ( m_col) (which can be $-1$ if the click occurred outside any column) has been right-clicked. EVT_LIST_COL_BEGIN_DRAG(id, func) -- The user started resizing a column - can be vetoed. EVT_LIST_COL_DRAGGING(id, func) -- The divider between columns is being dragged. EVT_LIST_COL_END_DRAG(id, func) -- A column has been resized by the user. EVT_LIST_CACHE_HINT(id, func) -- Prepare cache for a virtual list control EVT_MAXIMIZE(func) -- Process a wxEVT_MAXIMIZE event. EVT_MEDIA_STOP(func) -- Triggerred right before the media stops. You can Veto this event to prevent it from stopping, causing it to continue playing - even if it has reached that end of the media. EVT_MEDIA_FINISHED(func) -- Sent when a media has finished playing in a wxMediaCtrl. Note that if you connect to this event and don't skip it, it will override the looping behaviour of the media control. EVT_MENU_OPEN(func) -- A menu is about to be opened. On Windows, this is only sent once for each navigation of the menubar (up until all menus have closed). EVT_MENU_CLOSE(func) -- A menu has been just closed. EVT_MENU_HIGHLIGHT(id, func) -- The menu item with the specified id has been highlighted: used to show help prompts in the status bar by wxFrame EVT_MENU_HIGHLIGHT_ALL(func) -- A menu item has been highlighted, i.e. the currently selected menu item has changed. EVT_MOUSE_CAPTURE_CHANGED(func) -- Process a wxEVT_MOUSE_CAPTURE_CHANGED event. EVT_LEFT_DOWN(func) -- Process a wxEVT_LEFT_DOWN event. The handler of this event should normally call event.Skip() to allow the default processing to take place as otherwise the window under mouse wouldn't get the focus. EVT_LEFT_UP(func) -- Process a wxEVT_LEFT_UP event. EVT_LEFT_DCLICK(func) -- Process a wxEVT_LEFT_DCLICK event. EVT_MIDDLE_DOWN(func) -- Process a wxEVT_MIDDLE_DOWN event. EVT_MIDDLE_UP(func) -- Process a wxEVT_MIDDLE_UP event. EVT_MIDDLE_DCLICK(func) -- Process a wxEVT_MIDDLE_DCLICK event. EVT_RIGHT_DOWN(func) -- Process a wxEVT_RIGHT_DOWN event. EVT_RIGHT_UP(func) -- Process a wxEVT_RIGHT_UP event. EVT_RIGHT_DCLICK(func) -- Process a wxEVT_RIGHT_DCLICK event. EVT_MOTION(func) -- Process a wxEVT_MOTION event. EVT_ENTER_WINDOW(func) -- Process a wxEVT_ENTER_WINDOW event. EVT_LEAVE_WINDOW(func) -- Process a wxEVT_LEAVE_WINDOW event. EVT_MOUSEWHEEL(func) -- Process a wxEVT_MOUSEWHEEL event. EVT_MOUSE_EVENTS(func) -- Process all mouse events. EVT_MOVE(func) -- Process a wxEVT_MOVE event, which is generated when a window is moved. EVT_NOTEBOOK_PAGE_CHANGED(id, func) -- The page selection was changed. Processes a wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED event. EVT_NOTEBOOK_PAGE_CHANGING(id, func) -- The page selection is about to be changed. Processes a wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING event. This event can be vetoed. EVT_PAINT(func) -- Process a wxEVT_PAINT event. EVT_END_PROCESS(id, func) -- Process a wxEVT_END_PROCESS event. id is the identifier of the process object (the id passed to the wxProcess constructor) or a window to receive the event. EVT_QUERY_LAYOUT_INFO(func) -- Process a wxEVT_QUERY_LAYOUT_INFO event, to get size, orientation and alignment from a window. EVT_RADIOBOX(id, func) -- Process a wxEVT_COMMAND_RADIOBOX_SELECTED event, when a radiobutton is clicked. EVT_RADIOBUTTON(id, func) -- Process a wxEVT_COMMAND_RADIOBUTTON_SELECTED event, when the radiobutton is clicked. EVT_SASH_DRAGGED(id, func) -- Process a wxEVT_SASH_DRAGGED event, when the user has finished dragging a sash. EVT_SASH_DRAGGED_RANGE(id1, id2, func) -- Process a wxEVT_SASH_DRAGGED_RANGE event, when the user has finished dragging a sash. The event handler is called when windows with ids in the given range have their sashes dragged. EVT_SASH_DRAGGED(id, func) -- Process a wxEVT_SASH_DRAGGED event, when the user has finished dragging a sash. EVT_SASH_DRAGGED_RANGE(id1, id2, func) -- Process a wxEVT_SASH_DRAGGED_RANGE event, when the user has finished dragging a sash. The event handler is called when windows with ids in the given range have their sashes dragged. EVT_SCROLL(func) -- Process all scroll events. EVT_SCROLL_TOP(func) -- Process wxEVT_SCROLL_TOP scroll-to-top events (minimum position). EVT_SCROLL_BOTTOM(func) -- Process wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position). EVT_SCROLL_LINEUP(func) -- Process wxEVT_SCROLL_LINEUP line up events. EVT_SCROLL_LINEDOWN(func) -- Process wxEVT_SCROLL_LINEDOWN line down events. EVT_SCROLL_PAGEUP(func) -- Process wxEVT_SCROLL_PAGEUP page up events. EVT_SCROLL_PAGEDOWN(func) -- Process wxEVT_SCROLL_PAGEDOWN page down events. EVT_SCROLL_THUMBTRACK(func) -- Process wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). EVT_SCROLL_THUMBRELEASE(func) -- Process wxEVT_SCROLL_THUMBRELEASE thumb release events. EVT_SCROLL_CHANGED(func) -- Process wxEVT_SCROLL_CHANGED end of scrolling events (MSW only). EVT_COMMAND_SCROLL(id, func) -- Process all scroll events. EVT_COMMAND_SCROLL_TOP(id, func) -- Process wxEVT_SCROLL_TOP scroll-to-top events (minimum position). EVT_COMMAND_SCROLL_BOTTOM(id, func) -- Process wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position). EVT_COMMAND_SCROLL_LINEUP(id, func) -- Process wxEVT_SCROLL_LINEUP line up events. EVT_COMMAND_SCROLL_LINEDOWN(id, func) -- Process wxEVT_SCROLL_LINEDOWN line down events. EVT_COMMAND_SCROLL_PAGEUP(id, func) -- Process wxEVT_SCROLL_PAGEUP page up events. EVT_COMMAND_SCROLL_PAGEDOWN(id, func) -- Process wxEVT_SCROLL_PAGEDOWN page down events. EVT_COMMAND_SCROLL_THUMBTRACK(id, func) -- Process wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). EVT_COMMAND_SCROLL_THUMBRELEASE(func) -- Process wxEVT_SCROLL_THUMBRELEASE thumb release events. EVT_COMMAND_SCROLL_CHANGED(func) -- Process wxEVT_SCROLL_CHANGED end of scrolling events (MSW only). EVT_SCROLLWIN(func) -- Process all scroll events. EVT_SCROLLWIN_TOP(func) -- Process wxEVT_SCROLLWIN_TOP scroll-to-top events. EVT_SCROLLWIN_BOTTOM(func) -- Process wxEVT_SCROLLWIN_TOP scroll-to-bottom events. EVT_SCROLLWIN_LINEUP(func) -- Process wxEVT_SCROLLWIN_LINEUP line up events. EVT_SCROLLWIN_LINEDOWN(func) -- Process wxEVT_SCROLLWIN_LINEDOWN line down events. EVT_SCROLLWIN_PAGEUP(func) -- Process wxEVT_SCROLLWIN_PAGEUP page up events. EVT_SCROLLWIN_PAGEDOWN(func) -- Process wxEVT_SCROLLWIN_PAGEDOWN page down events. EVT_SCROLLWIN_THUMBTRACK(func) -- Process wxEVT_SCROLLWIN_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). EVT_SCROLLWIN_THUMBRELEASE(func) -- Process wxEVT_SCROLLWIN_THUMBRELEASE thumb release events. EVT_SET_CURSOR(func) -- Process a wxEVT_SET_CURSOR event. EVT_SIZE(func) -- Process a wxEVT_SIZE event. EVT_SCROLL(func) -- Process all scroll events. EVT_SCROLL_TOP(func) -- Process wxEVT_SCROLL_TOP scroll-to-top events (minimum position). EVT_SCROLL_BOTTOM(func) -- Process wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position). EVT_SCROLL_LINEUP(func) -- Process wxEVT_SCROLL_LINEUP line up events. EVT_SCROLL_LINEDOWN(func) -- Process wxEVT_SCROLL_LINEDOWN line down events. EVT_SCROLL_PAGEUP(func) -- Process wxEVT_SCROLL_PAGEUP page up events. EVT_SCROLL_PAGEDOWN(func) -- Process wxEVT_SCROLL_PAGEDOWN page down events. EVT_SCROLL_THUMBTRACK(func) -- Process wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). EVT_SCROLL_THUMBRELEASE(func) -- Process wxEVT_SCROLL_THUMBRELEASE thumb release events. EVT_SCROLL_CHANGED(func) -- Process wxEVT_SCROLL_CHANGED end of scrolling events (MSW only). EVT_COMMAND_SCROLL(id, func) -- Process all scroll events. EVT_COMMAND_SCROLL_TOP(id, func) -- Process wxEVT_SCROLL_TOP scroll-to-top events (minimum position). EVT_COMMAND_SCROLL_BOTTOM(id, func) -- Process wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position). EVT_COMMAND_SCROLL_LINEUP(id, func) -- Process wxEVT_SCROLL_LINEUP line up events. EVT_COMMAND_SCROLL_LINEDOWN(id, func) -- Process wxEVT_SCROLL_LINEDOWN line down events. EVT_COMMAND_SCROLL_PAGEUP(id, func) -- Process wxEVT_SCROLL_PAGEUP page up events. EVT_COMMAND_SCROLL_PAGEDOWN(id, func) -- Process wxEVT_SCROLL_PAGEDOWN page down events. EVT_COMMAND_SCROLL_THUMBTRACK(id, func) -- Process wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). EVT_COMMAND_SCROLL_THUMBRELEASE(func) -- Process wxEVT_SCROLL_THUMBRELEASE thumb release events. EVT_COMMAND_SCROLL_CHANGED(func) -- Process wxEVT_SCROLL_CHANGED end of scrolling events (MSW only). EVT_SOCKET(id, func) -- Process a wxEVT_SOCKET event. EVT_SOCKET(id, func) -- Process a socket event, supplying the member function. EVT_SPINCTRL(id, func) -- Generated whenever the numeric value of the spinctrl is updated EVT_SPIN(id, func) -- Generated whenever an arrow is pressed. EVT_SPIN_UP(id, func) -- Generated when left/up arrow is pressed. EVT_SPIN_DOWN(id, func) -- Generated when right/down arrow is pressed. EVT_SPLITTER_SASH_POS_CHANGING(id, func) -- The sash position is in the process of being changed. You may prevent this change from happening by calling Veto or you may also modify the position of the tracking bar to properly reflect the position that would be set if the drag were to be completed at this point. Processes a wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING event. EVT_SPLITTER_SASH_POS_CHANGED(id, func) -- The sash position was changed. This event is generated after the user releases the mouse after dragging the splitter. Processes a wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED event. EVT_SPLITTER_UNSPLIT(id, func) -- The splitter has been just unsplit. Processes a wxEVT_COMMAND_SPLITTER_UNSPLIT event. This event can't be vetoed. EVT_SPLITTER_DCLICK(id, func) -- The sash was double clicked. The default behaviour is to unsplit the window when this happens (unless the minimum pane size has been set to a value greater than zero). This won't happen if you veto this event. Processes a wxEVT_COMMAND_SPLITTER_DOUBLECLICKED event. EVT_SPLITTER_SASH_POS_CHANGING(id, func) -- The sash position is in the process of being changed. May be used to modify the position of the tracking bar to properly reflect the position that would be set if the drag were to be completed at this point. Processes a wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING event. EVT_SPLITTER_SASH_POS_CHANGED(id, func) -- The sash position was changed. May be used to modify the sash position before it is set, or to prevent the change from taking place. Processes a wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED event. EVT_SPLITTER_UNSPLIT(id, func) -- The splitter has been just unsplit. Processes a wxEVT_COMMAND_SPLITTER_UNSPLIT event. EVT_SPLITTER_DCLICK(id, func) -- The sash was double clicked. The default behaviour is to unsplit the window when this happens (unless the minimum pane size has been set to a value greater than zero). Processes a wxEVT_COMMAND_SPLITTER_DOUBLECLICKED event. EVT_SYS_COLOUR_CHANGED(func) -- Process a wxEVT_SYS_COLOUR_CHANGED event. EVT_TASKBAR_MOVE(func) -- Process a wxEVT_TASKBAR_MOVE event. EVT_TASKBAR_LEFT_DOWN(func) -- Process a wxEVT_TASKBAR_LEFT_DOWN event. EVT_TASKBAR_LEFT_UP(func) -- Process a wxEVT_TASKBAR_LEFT_UP event. EVT_TASKBAR_RIGHT_DOWN(func) -- Process a wxEVT_TASKBAR_RIGHT_DOWN event. EVT_TASKBAR_RIGHT_UP(func) -- Process a wxEVT_TASKBAR_RIGHT_UP event. EVT_TASKBAR_LEFT_DCLICK(func) -- Process a wxEVT_TASKBAR_LEFT_DCLICK event. EVT_TASKBAR_RIGHT_DCLICK(func) -- Process a wxEVT_TASKBAR_RIGHT_DCLICK event. EVT_TOGGLEBUTTON(id, func) -- Handles button click event. EVT_TOOL(id, func) -- Process a wxEVT_COMMAND_TOOL_CLICKED event (a synonym for wxEVT_COMMAND_MENU_SELECTED). Pass the id of the tool. EVT_MENU(id, func) -- The same as EVT_TOOL. EVT_TOOL_RANGE(id1, id2, func) -- Process a wxEVT_COMMAND_TOOL_CLICKED event for a range of identifiers. Pass the ids of the tools. EVT_MENU_RANGE(id1, id2, func) -- The same as EVT_TOOL_RANGE. EVT_TOOL_RCLICKED(id, func) -- Process a wxEVT_COMMAND_TOOL_RCLICKED event. Pass the id of the tool. EVT_TOOL_RCLICKED_RANGE(id1, id2, func) -- Process a wxEVT_COMMAND_TOOL_RCLICKED event for a range of ids. Pass the ids of the tools. EVT_TOOL_ENTER(id, func) -- Process a wxEVT_COMMAND_TOOL_ENTER event. Pass the id of the toolbar itself. The value of wxCommandEvent::GetSelection is the tool id, or -1 if the mouse cursor has moved off a tool. EVT_TREE_BEGIN_DRAG(id, func) -- The user has started dragging an item with the left mouse button. The event handler must call wxTreeEvent::Allow() for the drag operation to continue. EVT_TREE_BEGIN_RDRAG(id, func) -- The user has started dragging an item with the right mouse button. The event handler must call wxTreeEvent::Allow() for the drag operation to continue. EVT_TREE_BEGIN_LABEL_EDIT(id, func) -- Begin editing a label. This can be prevented by calling Veto(). EVT_TREE_END_DRAG(id, func) -- The user has released the mouse after dragging an item. EVT_TREE_END_LABEL_EDIT(id, func) -- The user has finished editing a label. This can be prevented by calling Veto(). EVT_TREE_DELETE_ITEM(id, func) -- A tree item has been deleted. EVT_TREE_ITEM_ACTIVATED(id, func) -- An item has been activated (e.g. double clicked). EVT_TREE_ITEM_COLLAPSED(id, func) -- The item has been collapsed. EVT_TREE_ITEM_COLLAPSING(id, func) -- The item is being collapsed. This can be prevented by calling Veto(). EVT_TREE_ITEM_EXPANDED(id, func) -- The item has been expanded. EVT_TREE_ITEM_EXPANDING(id, func) -- The item is being expanded. This can be prevented by calling Veto(). EVT_TREE_ITEM_RIGHT_CLICK(id, func) -- The user has clicked the item with the right mouse button. EVT_TREE_ITEM_MIDDLE_CLICK(id, func) -- The user has clicked the item with the middle mouse button. EVT_TREE_KEY_DOWN(id, func) -- A key has been pressed. EVT_TREE_SEL_CHANGED(id, func) -- Selection has changed. EVT_TREE_SEL_CHANGING(id, func) -- Selection is changing. This can be prevented by calling Veto(). EVT_TREE_KEY_DOWN(id, func) -- A key has been pressed. EVT_TREE_ITEM_GETTOOLTIP(id, func) -- The opportunity to set the item tooltip is being given to the application (call wxTreeEvent::SetToolTip). Windows only. EVT_TREE_ITEM_MENU(id, func) -- The context menu for the selected item has been requested, either by a right click or by using the menu key. EVT_TREE_STATE_IMAGE_CLICK(id, func) -- The state image has been clicked. Windows only. EVT_UPDATE_UI(id, func) -- Process a wxEVT_UPDATE_UI event for the command with the given id. EVT_UPDATE_UI_RANGE(id1, id2, func) -- Process a wxEVT_UPDATE_UI event for any command with id included in the given range. EVT_WINDOW_CREATE(func) -- Process a wxEVT_CREATE event. EVT_WINDOW_DESTROY(func) -- Process a wxEVT_DESTROY event. EVT_WIZARD_PAGE_CHANGED(id, func) -- The page has just been changed (this event cannot be vetoed). EVT_WIZARD_PAGE_CHANGING(id, func) -- The page is being changed (this event can be vetoed). EVT_WIZARD_CANCEL(id, func) -- The user attempted to cancel the wizard (this event may also be vetoed). EVT_WIZARD_HELP(id, func) -- The wizard help button was pressed. EVT_WIZARD_FINISHED(id, func) -- The wizard finished button was pressed. EVT_WIZARD_PAGE_CHANGED(id, func) -- The page has been just changed (this event can not be vetoed). EVT_WIZARD_PAGE_CHANGING(id, func) -- The page is being changed (this event can be vetoed). EVT_WIZARD_CANCEL(id, func) -- The user attempted to cancel the wizard (this event may also be vetoed). EVT_WIZARD_HELP(id, func) -- The wizard help button was pressed. EVT_WIZARD_FINISHED(id, func) -- The wizard finished button was pressed. escaping string: wxActivateEvent escaped string: wxActivateEvent escaping string: EVT_ACTIVATE(func) escaped string: EVT_ACTIVATE(func) escaping string: Process a wxEVT_ACTIVATE event. escaped string: Process a wxEVT_ACTIVATE event. escaping string: EVT_ACTIVATE_APP(func) escaped string: EVT_ACTIVATE_APP(func) escaping string: Process a wxEVT_ACTIVATE_APP event. escaped string: Process a wxEVT_ACTIVATE_APP event. escaping string: EVT_HIBERNATE(func) escaped string: EVT_HIBERNATE(func) escaping string: Process a hibernate event, supplying the member function. This event applies to wxApp only, and only on Windows SmartPhone and PocketPC. It is generated when the system is low on memory; the application should free up as much memory as possible, and restore full working when it receives a wxEVT_ACTIVATE or wxEVT_ACTIVATE_APP event. escaped string: Process a hibernate event, supplying the member function. This event applies to wxApp only, and only on Windows SmartPhone and PocketPC. It is generated when the system is low on memory; the application should free up as much memory as possible, and restore full working when it receives a wxEVT_ACTIVATE or wxEVT_ACTIVATE_APP event. escaping string: wxBitmapButton escaped string: wxBitmapButton escaping string: EVT_BUTTON(id, func) escaped string: EVT_BUTTON(id, func) escaping string: Process a wxEVT_COMMAND_BUTTON_CLICKED event, when the button is clicked. escaped string: Process a wxEVT_COMMAND_BUTTON_CLICKED event, when the button is clicked. escaping string: wxButton escaped string: wxButton escaping string: EVT_BUTTON(id, func) escaped string: EVT_BUTTON(id, func) escaping string: Process a wxEVT_COMMAND_BUTTON_CLICKED event, when the button is clicked. escaped string: Process a wxEVT_COMMAND_BUTTON_CLICKED event, when the button is clicked. escaping string: wxCalculateLayoutEvent escaped string: wxCalculateLayoutEvent escaping string: EVT_CALCULATE_LAYOUT(func) escaped string: EVT_CALCULATE_LAYOUT(func) escaping string: Process a wxEVT_CALCULATE_LAYOUT event, which asks the window to take a 'bite' out of a rectangle provided by the algorithm. escaped string: Process a wxEVT_CALCULATE_LAYOUT event, which asks the window to take a 'bite' out of a rectangle provided by the algorithm. escaping string: wxCalendarCtrl escaped string: wxCalendarCtrl escaping string: EVT_CALENDAR(id, func) escaped string: EVT_CALENDAR(id, func) escaping string: A day was double clicked in the calendar. escaped string: A day was double clicked in the calendar. escaping string: EVT_CALENDAR_SEL_CHANGED(id, func) escaped string: EVT_CALENDAR_SEL_CHANGED(id, func) escaping string: The selected date changed. escaped string: The selected date changed. escaping string: EVT_CALENDAR_DAY(id, func) escaped string: EVT_CALENDAR_DAY(id, func) escaping string: The selected day changed. escaped string: The selected day changed. escaping string: EVT_CALENDAR_MONTH(id, func) escaped string: EVT_CALENDAR_MONTH(id, func) escaping string: The selected month changed. escaped string: The selected month changed. escaping string: EVT_CALENDAR_YEAR(id, func) escaped string: EVT_CALENDAR_YEAR(id, func) escaping string: The selected year changed. escaped string: The selected year changed. escaping string: EVT_CALENDAR_WEEKDAY_CLICKED(id, func) escaped string: EVT_CALENDAR_WEEKDAY_CLICKED(id, func) escaping string: User clicked on the week day header escaped string: User clicked on the week day header escaping string: wxCheckBox escaped string: wxCheckBox escaping string: EVT_CHECKBOX(id, func) escaped string: EVT_CHECKBOX(id, func) escaping string: Process a wxEVT_COMMAND_CHECKBOX_CLICKED event, when the checkbox is clicked. escaped string: Process a wxEVT_COMMAND_CHECKBOX_CLICKED event, when the checkbox is clicked. escaping string: wxCheckListBox escaped string: wxCheckListBox escaping string: EVT_CHECKLISTBOX(id, func) escaped string: EVT_CHECKLISTBOX(id, func) escaping string: Process a wxEVT_COMMAND_CHECKLISTBOX_TOGGLED event, when an item in the check list box is checked or unchecked. escaped string: Process a wxEVT_COMMAND_CHECKLISTBOX_TOGGLED event, when an item in the check list box is checked or unchecked. escaping string: wxChoice escaped string: wxChoice escaping string: EVT_CHOICE(id, func) escaped string: EVT_CHOICE(id, func) escaping string: Process a wxEVT_COMMAND_CHOICE_SELECTED event, when an item on the list is selected. escaped string: Process a wxEVT_COMMAND_CHOICE_SELECTED event, when an item on the list is selected. escaping string: wxCloseEvent escaped string: wxCloseEvent escaping string: EVT_CLOSE(func) escaped string: EVT_CLOSE(func) escaping string: Process a close event, supplying the member function. This event applies to wxFrame and wxDialog classes. escaped string: Process a close event, supplying the member function. This event applies to wxFrame and wxDialog classes. escaping string: EVT_QUERY_END_SESSION(func) escaped string: EVT_QUERY_END_SESSION(func) escaping string: Process a query end session event, supplying the member function. This event applies to wxApp only. escaped string: Process a query end session event, supplying the member function. This event applies to wxApp only. escaping string: EVT_END_SESSION(func) escaped string: EVT_END_SESSION(func) escaping string: Process an end session event, supplying the member function. This event applies to wxApp only. escaped string: Process an end session event, supplying the member function. This event applies to wxApp only. escaping string: wxComboBox escaped string: wxComboBox escaping string: EVT_COMBOBOX(id, func) escaped string: EVT_COMBOBOX(id, func) escaping string: Process a wxEVT_COMMAND_COMBOBOX_SELECTED event, when an item on the list is selected. Note that calling GetValue returns the new value of selection. escaped string: Process a wxEVT_COMMAND_COMBOBOX_SELECTED event, when an item on the list is selected. Note that calling GetValue returns the new value of selection. escaping string: EVT_TEXT(id, func) escaped string: EVT_TEXT(id, func) escaping string: Process a wxEVT_COMMAND_TEXT_UPDATED event, when the combobox text changes. escaped string: Process a wxEVT_COMMAND_TEXT_UPDATED event, when the combobox text changes. escaping string: EVT_TEXT_ENTER(id, func) escaped string: EVT_TEXT_ENTER(id, func) escaping string: Process a wxEVT_COMMAND_TEXT_ENTER event, when <RETURN> is pressed in the combobox. escaped string: Process a wxEVT_COMMAND_TEXT_ENTER event, when <RETURN> is pressed in the combobox. escaping string: wxCommandEvent escaped string: wxCommandEvent escaping string: EVT_COMMAND(id, event, func) escaped string: EVT_COMMAND(id, event, func) escaping string: Process a command, supplying the window identifier, command event identifier, and member function. escaped string: Process a command, supplying the window identifier, command event identifier, and member function. escaping string: EVT_COMMAND_RANGE(id1, id2, event, func) escaped string: EVT_COMMAND_RANGE(id1, id2, event, func) escaping string: Process a command for a range of window identifiers, supplying the minimum and maximum window identifiers, command event identifier, and member function. escaped string: Process a command for a range of window identifiers, supplying the minimum and maximum window identifiers, command event identifier, and member function. escaping string: EVT_BUTTON(id, func) escaped string: EVT_BUTTON(id, func) escaping string: Process a wxEVT_COMMAND_BUTTON_CLICKED command, which is generated by a wxButton control. escaped string: Process a wxEVT_COMMAND_BUTTON_CLICKED command, which is generated by a wxButton control. escaping string: EVT_CHECKBOX(id, func) escaped string: EVT_CHECKBOX(id, func) escaping string: Process a wxEVT_COMMAND_CHECKBOX_CLICKED command, which is generated by a wxCheckBox control. escaped string: Process a wxEVT_COMMAND_CHECKBOX_CLICKED command, which is generated by a wxCheckBox control. escaping string: EVT_CHOICE(id, func) escaped string: EVT_CHOICE(id, func) escaping string: Process a wxEVT_COMMAND_CHOICE_SELECTED command, which is generated by a wxChoice control. escaped string: Process a wxEVT_COMMAND_CHOICE_SELECTED command, which is generated by a wxChoice control. escaping string: EVT_COMBOBOX(id, func) escaped string: EVT_COMBOBOX(id, func) escaping string: Process a wxEVT_COMMAND_COMBOBOX_SELECTED command, which is generated by a wxComboBox control. escaped string: Process a wxEVT_COMMAND_COMBOBOX_SELECTED command, which is generated by a wxComboBox control. escaping string: EVT_LISTBOX(id, func) escaped string: EVT_LISTBOX(id, func) escaping string: Process a wxEVT_COMMAND_LISTBOX_SELECTED command, which is generated by a wxListBox control. escaped string: Process a wxEVT_COMMAND_LISTBOX_SELECTED command, which is generated by a wxListBox control. escaping string: EVT_LISTBOX_DCLICK(id, func) escaped string: EVT_LISTBOX_DCLICK(id, func) escaping string: Process a wxEVT_COMMAND_LISTBOX_DOUBLECLICKED command, which is generated by a wxListBox control. escaped string: Process a wxEVT_COMMAND_LISTBOX_DOUBLECLICKED command, which is generated by a wxListBox control. escaping string: EVT_MENU(id, func) escaped string: EVT_MENU(id, func) escaping string: Process a wxEVT_COMMAND_MENU_SELECTED command, which is generated by a menu item. escaped string: Process a wxEVT_COMMAND_MENU_SELECTED command, which is generated by a menu item. escaping string: EVT_MENU_RANGE(id1, id2, func) escaped string: EVT_MENU_RANGE(id1, id2, func) escaping string: Process a wxEVT_COMMAND_MENU_RANGE command, which is generated by a range of menu items. escaped string: Process a wxEVT_COMMAND_MENU_RANGE command, which is generated by a range of menu items. escaping string: EVT_CONTEXT_MENU(func) escaped string: EVT_CONTEXT_MENU(func) escaping string: Process the event generated when the user has requested a popup menu to appear by pressing a special keyboard key (under Windows) or by right clicking the mouse. escaped string: Process the event generated when the user has requested a popup menu to appear by pressing a special keyboard key (under Windows) or by right clicking the mouse. escaping string: EVT_RADIOBOX(id, func) escaped string: EVT_RADIOBOX(id, func) escaping string: Process a wxEVT_COMMAND_RADIOBOX_SELECTED command, which is generated by a wxRadioBox control. escaped string: Process a wxEVT_COMMAND_RADIOBOX_SELECTED command, which is generated by a wxRadioBox control. escaping string: EVT_RADIOBUTTON(id, func) escaped string: EVT_RADIOBUTTON(id, func) escaping string: Process a wxEVT_COMMAND_RADIOBUTTON_SELECTED command, which is generated by a wxRadioButton control. escaped string: Process a wxEVT_COMMAND_RADIOBUTTON_SELECTED command, which is generated by a wxRadioButton control. escaping string: EVT_SCROLLBAR(id, func) escaped string: EVT_SCROLLBAR(id, func) escaping string: Process a wxEVT_COMMAND_SCROLLBAR_UPDATED command, which is generated by a wxScrollBar control. This is provided for compatibility only; more specific scrollbar event macros should be used instead (see wxScrollEvent). escaped string: Process a wxEVT_COMMAND_SCROLLBAR_UPDATED command, which is generated by a wxScrollBar control. This is provided for compatibility only; more specific scrollbar event macros should be used instead (see wxScrollEvent). escaping string: EVT_SLIDER(id, func) escaped string: EVT_SLIDER(id, func) escaping string: Process a wxEVT_COMMAND_SLIDER_UPDATED command, which is generated by a wxSlider control. escaped string: Process a wxEVT_COMMAND_SLIDER_UPDATED command, which is generated by a wxSlider control. escaping string: EVT_TEXT(id, func) escaped string: EVT_TEXT(id, func) escaping string: Process a wxEVT_COMMAND_TEXT_UPDATED command, which is generated by a wxTextCtrl control. escaped string: Process a wxEVT_COMMAND_TEXT_UPDATED command, which is generated by a wxTextCtrl control. escaping string: EVT_TEXT_ENTER(id, func) escaped string: EVT_TEXT_ENTER(id, func) escaping string: Process a wxEVT_COMMAND_TEXT_ENTER command, which is generated by a wxTextCtrl control. Note that you must use wxTE_PROCESS_ENTER flag when creating the control if you want it to generate such events. escaped string: Process a wxEVT_COMMAND_TEXT_ENTER command, which is generated by a wxTextCtrl control. Note that you must use wxTE_PROCESS_ENTER flag when creating the control if you want it to generate such events. escaping string: EVT_TEXT_MAXLEN(id, func) escaped string: EVT_TEXT_MAXLEN(id, func) escaping string: Process a wxEVT_COMMAND_TEXT_MAXLEN command, which is generated by a wxTextCtrl control when the user tries to enter more characters into it than the limit previously set with SetMaxLength. escaped string: Process a wxEVT_COMMAND_TEXT_MAXLEN command, which is generated by a wxTextCtrl control when the user tries to enter more characters into it than the limit previously set with SetMaxLength. escaping string: EVT_TOOL(id, func) escaped string: EVT_TOOL(id, func) escaping string: Process a wxEVT_COMMAND_TOOL_CLICKED event (a synonym for wxEVT_COMMAND_MENU_SELECTED). Pass the id of the tool. escaped string: Process a wxEVT_COMMAND_TOOL_CLICKED event (a synonym for wxEVT_COMMAND_MENU_SELECTED). Pass the id of the tool. escaping string: EVT_TOOL_RANGE(id1, id2, func) escaped string: EVT_TOOL_RANGE(id1, id2, func) escaping string: Process a wxEVT_COMMAND_TOOL_CLICKED event for a range of identifiers. Pass the ids of the tools. escaped string: Process a wxEVT_COMMAND_TOOL_CLICKED event for a range of identifiers. Pass the ids of the tools. escaping string: EVT_TOOL_RCLICKED(id, func) escaped string: EVT_TOOL_RCLICKED(id, func) escaping string: Process a wxEVT_COMMAND_TOOL_RCLICKED event. Pass the id of the tool. escaped string: Process a wxEVT_COMMAND_TOOL_RCLICKED event. Pass the id of the tool. escaping string: EVT_TOOL_RCLICKED_RANGE(id1, id2, func) escaped string: EVT_TOOL_RCLICKED_RANGE(id1, id2, func) escaping string: Process a wxEVT_COMMAND_TOOL_RCLICKED event for a range of ids. Pass the ids of the tools. escaped string: Process a wxEVT_COMMAND_TOOL_RCLICKED event for a range of ids. Pass the ids of the tools. escaping string: EVT_TOOL_ENTER(id, func) escaped string: EVT_TOOL_ENTER(id, func) escaping string: Process a wxEVT_COMMAND_TOOL_ENTER event. Pass the id of the toolbar itself. The value of wxCommandEvent::GetSelection is the tool id, or -1 if the mouse cursor has moved off a tool. escaped string: Process a wxEVT_COMMAND_TOOL_ENTER event. Pass the id of the toolbar itself. The value of wxCommandEvent::GetSelection is the tool id, or -1 if the mouse cursor has moved off a tool. escaping string: EVT_COMMAND_LEFT_CLICK(id, func) escaped string: EVT_COMMAND_LEFT_CLICK(id, func) escaping string: Process a wxEVT_COMMAND_LEFT_CLICK command, which is generated by a control (Windows 95 and NT only). escaped string: Process a wxEVT_COMMAND_LEFT_CLICK command, which is generated by a control (Windows 95 and NT only). escaping string: EVT_COMMAND_LEFT_DCLICK(id, func) escaped string: EVT_COMMAND_LEFT_DCLICK(id, func) escaping string: Process a wxEVT_COMMAND_LEFT_DCLICK command, which is generated by a control (Windows 95 and NT only). escaped string: Process a wxEVT_COMMAND_LEFT_DCLICK command, which is generated by a control (Windows 95 and NT only). escaping string: EVT_COMMAND_RIGHT_CLICK(id, func) escaped string: EVT_COMMAND_RIGHT_CLICK(id, func) escaping string: Process a wxEVT_COMMAND_RIGHT_CLICK command, which is generated by a control (Windows 95 and NT only). escaped string: Process a wxEVT_COMMAND_RIGHT_CLICK command, which is generated by a control (Windows 95 and NT only). escaping string: EVT_COMMAND_SET_FOCUS(id, func) escaped string: EVT_COMMAND_SET_FOCUS(id, func) escaping string: Process a wxEVT_COMMAND_SET_FOCUS command, which is generated by a control (Windows 95 and NT only). escaped string: Process a wxEVT_COMMAND_SET_FOCUS command, which is generated by a control (Windows 95 and NT only). escaping string: EVT_COMMAND_KILL_FOCUS(id, func) escaped string: EVT_COMMAND_KILL_FOCUS(id, func) escaping string: Process a wxEVT_COMMAND_KILL_FOCUS command, which is generated by a control (Windows 95 and NT only). escaped string: Process a wxEVT_COMMAND_KILL_FOCUS command, which is generated by a control (Windows 95 and NT only). escaping string: EVT_COMMAND_ENTER(id, func) escaped string: EVT_COMMAND_ENTER(id, func) escaping string: Process a wxEVT_COMMAND_ENTER command, which is generated by a control. escaped string: Process a wxEVT_COMMAND_ENTER command, which is generated by a control. escaping string: wxContextMenuEvent escaped string: wxContextMenuEvent escaping string: EVT_CONTEXT_MENU(func) escaped string: EVT_CONTEXT_MENU(func) escaping string: A right click (or other context menu command depending on platform) has been detected. escaped string: A right click (or other context menu command depending on platform) has been detected. escaping string: wxDatePickerCtrl escaped string: wxDatePickerCtrl escaping string: EVT_DATE_CHANGED(id, func) escaped string: EVT_DATE_CHANGED(id, func) escaping string: This event fires when the user changes the current selection in the control. escaped string: This event fires when the user changes the current selection in the control. escaping string: wxDialUpManager escaped string: wxDialUpManager escaping string: EVT_DIALUP_CONNECTED(func) escaped string: EVT_DIALUP_CONNECTED(func) escaping string: A connection with the network was established. escaped string: A connection with the network was established. escaping string: EVT_DIALUP_DISCONNECTED(func) escaped string: EVT_DIALUP_DISCONNECTED(func) escaping string: The connection with the network was lost. escaped string: The connection with the network was lost. escaping string: wxDropFilesEvent escaped string: wxDropFilesEvent escaping string: EVT_DROP_FILES(func) escaped string: EVT_DROP_FILES(func) escaping string: Process a wxEVT_DROP_FILES event. escaped string: Process a wxEVT_DROP_FILES event. escaping string: wxEraseEvent escaped string: wxEraseEvent escaping string: EVT_ERASE_BACKGROUND(func) escaped string: EVT_ERASE_BACKGROUND(func) escaping string: Process a wxEVT_ERASE_BACKGROUND event. escaped string: Process a wxEVT_ERASE_BACKGROUND event. escaping string: wxFindDialogEvent escaped string: wxFindDialogEvent escaping string: EVT_FIND(id, func) escaped string: EVT_FIND(id, func) escaping string: Find button was pressed in the dialog. escaped string: Find button was pressed in the dialog. escaping string: EVT_FIND_NEXT(id, func) escaped string: EVT_FIND_NEXT(id, func) escaping string: Find next button was pressed in the dialog. escaped string: Find next button was pressed in the dialog. escaping string: EVT_FIND_REPLACE(id, func) escaped string: EVT_FIND_REPLACE(id, func) escaping string: Replace button was pressed in the dialog. escaped string: Replace button was pressed in the dialog. escaping string: EVT_FIND_REPLACE_ALL(id, func) escaped string: EVT_FIND_REPLACE_ALL(id, func) escaping string: Replace all button was pressed in the dialog. escaped string: Replace all button was pressed in the dialog. escaping string: EVT_FIND_CLOSE(id, func) escaped string: EVT_FIND_CLOSE(id, func) escaping string: The dialog is being destroyed, any pointers to it cannot be used any longer. escaped string: The dialog is being destroyed, any pointers to it cannot be used any longer. escaping string: wxFocusEvent escaped string: wxFocusEvent escaping string: EVT_SET_FOCUS(func) escaped string: EVT_SET_FOCUS(func) escaping string: Process a wxEVT_SET_FOCUS event. escaped string: Process a wxEVT_SET_FOCUS event. escaping string: EVT_KILL_FOCUS(func) escaped string: EVT_KILL_FOCUS(func) escaping string: Process a wxEVT_KILL_FOCUS event. escaped string: Process a wxEVT_KILL_FOCUS event. escaping string: wxGridEditorCreatedEvent escaped string: wxGridEditorCreatedEvent escaping string: EVT_GRID_EDITOR_CREATED(func) escaped string: EVT_GRID_EDITOR_CREATED(func) escaping string: The editor for a cell was created. Processes a wxEVT_GRID_EDITOR_CREATED. escaped string: The editor for a cell was created. Processes a wxEVT_GRID_EDITOR_CREATED. escaping string: EVT_GRID_CMD_EDITOR_CREATED(id, func) escaped string: EVT_GRID_CMD_EDITOR_CREATED(id, func) escaping string: The editor for a cell was created; variant taking a window identifier. Processes a wxEVT_GRID_EDITOR_CREATED. escaped string: The editor for a cell was created; variant taking a window identifier. Processes a wxEVT_GRID_EDITOR_CREATED. escaping string: wxGridEvent escaped string: wxGridEvent escaping string: EVT_GRID_CELL_LEFT_CLICK(func) escaped string: EVT_GRID_CELL_LEFT_CLICK(func) escaping string: The user clicked a cell with the left mouse button. Processes a wxEVT_GRID_CELL_LEFT_CLICK. escaped string: The user clicked a cell with the left mouse button. Processes a wxEVT_GRID_CELL_LEFT_CLICK. escaping string: EVT_GRID_CELL_RIGHT_CLICK(func) escaped string: EVT_GRID_CELL_RIGHT_CLICK(func) escaping string: The user clicked a cell with the right mouse button. Processes a wxEVT_GRID_CELL_RIGHT_CLICK. escaped string: The user clicked a cell with the right mouse button. Processes a wxEVT_GRID_CELL_RIGHT_CLICK. escaping string: EVT_GRID_CELL_LEFT_DCLICK(func) escaped string: EVT_GRID_CELL_LEFT_DCLICK(func) escaping string: The user double-clicked a cell with the left mouse button. Processes a wxEVT_GRID_CELL_LEFT_DCLICK. escaped string: The user double-clicked a cell with the left mouse button. Processes a wxEVT_GRID_CELL_LEFT_DCLICK. escaping string: EVT_GRID_CELL_RIGHT_DCLICK(func) escaped string: EVT_GRID_CELL_RIGHT_DCLICK(func) escaping string: The user double-clicked a cell with the right mouse button. Processes a wxEVT_GRID_CELL_RIGHT_DCLICK. escaped string: The user double-clicked a cell with the right mouse button. Processes a wxEVT_GRID_CELL_RIGHT_DCLICK. escaping string: EVT_GRID_LABEL_LEFT_CLICK(func) escaped string: EVT_GRID_LABEL_LEFT_CLICK(func) escaping string: The user clicked a label with the left mouse button. Processes a wxEVT_GRID_LABEL_LEFT_CLICK. escaped string: The user clicked a label with the left mouse button. Processes a wxEVT_GRID_LABEL_LEFT_CLICK. escaping string: EVT_GRID_LABEL_RIGHT_CLICK(func) escaped string: EVT_GRID_LABEL_RIGHT_CLICK(func) escaping string: The user clicked a label with the right mouse button. Processes a wxEVT_GRID_LABEL_RIGHT_CLICK. escaped string: The user clicked a label with the right mouse button. Processes a wxEVT_GRID_LABEL_RIGHT_CLICK. escaping string: EVT_GRID_LABEL_LEFT_DCLICK(func) escaped string: EVT_GRID_LABEL_LEFT_DCLICK(func) escaping string: The user double-clicked a label with the left mouse button. Processes a wxEVT_GRID_LABEL_LEFT_DCLICK. escaped string: The user double-clicked a label with the left mouse button. Processes a wxEVT_GRID_LABEL_LEFT_DCLICK. escaping string: EVT_GRID_LABEL_RIGHT_DCLICK(func) escaped string: EVT_GRID_LABEL_RIGHT_DCLICK(func) escaping string: The user double-clicked a label with the right mouse button. Processes a wxEVT_GRID_LABEL_RIGHT_DCLICK. escaped string: The user double-clicked a label with the right mouse button. Processes a wxEVT_GRID_LABEL_RIGHT_DCLICK. escaping string: EVT_GRID_CELL_CHANGE(func) escaped string: EVT_GRID_CELL_CHANGE(func) escaping string: The user changed the data in a cell. Processes a wxEVT_GRID_CELL_CHANGE. escaped string: The user changed the data in a cell. Processes a wxEVT_GRID_CELL_CHANGE. escaping string: EVT_GRID_SELECT_CELL(func) escaped string: EVT_GRID_SELECT_CELL(func) escaping string: The user moved to, and selected a cell. Processes a wxEVT_GRID_SELECT_CELL. escaped string: The user moved to, and selected a cell. Processes a wxEVT_GRID_SELECT_CELL. escaping string: EVT_GRID_EDITOR_HIDDEN(func) escaped string: EVT_GRID_EDITOR_HIDDEN(func) escaping string: The editor for a cell was hidden. Processes a wxEVT_GRID_EDITOR_HIDDEN. escaped string: The editor for a cell was hidden. Processes a wxEVT_GRID_EDITOR_HIDDEN. escaping string: EVT_GRID_EDITOR_SHOWN(func) escaped string: EVT_GRID_EDITOR_SHOWN(func) escaping string: The editor for a cell was shown. Processes a wxEVT_GRID_EDITOR_SHOWN. escaped string: The editor for a cell was shown. Processes a wxEVT_GRID_EDITOR_SHOWN. escaping string: EVT_GRID_CMD_CELL_LEFT_CLICK(id, func) escaped string: EVT_GRID_CMD_CELL_LEFT_CLICK(id, func) escaping string: The user clicked a cell with the left mouse button; variant taking a window identifier. Processes a wxEVT_GRID_CELL_LEFT_CLICK. escaped string: The user clicked a cell with the left mouse button; variant taking a window identifier. Processes a wxEVT_GRID_CELL_LEFT_CLICK. escaping string: EVT_GRID_CMD_CELL_RIGHT_CLICK(id, func) escaped string: EVT_GRID_CMD_CELL_RIGHT_CLICK(id, func) escaping string: The user clicked a cell with the right mouse button; variant taking a window identifier. Processes a wxEVT_GRID_CELL_RIGHT_CLICK. escaped string: The user clicked a cell with the right mouse button; variant taking a window identifier. Processes a wxEVT_GRID_CELL_RIGHT_CLICK. escaping string: EVT_GRID_CMD_CELL_LEFT_DCLICK(id, func) escaped string: EVT_GRID_CMD_CELL_LEFT_DCLICK(id, func) escaping string: The user double-clicked a cell with the left mouse button; variant taking a window identifier. Processes a wxEVT_GRID_CELL_LEFT_DCLICK. escaped string: The user double-clicked a cell with the left mouse button; variant taking a window identifier. Processes a wxEVT_GRID_CELL_LEFT_DCLICK. escaping string: EVT_GRID_CMD_CELL_RIGHT_DCLICK(id, func) escaped string: EVT_GRID_CMD_CELL_RIGHT_DCLICK(id, func) escaping string: The user double-clicked a cell with the right mouse button; variant taking a window identifier. Processes a wxEVT_GRID_CELL_RIGHT_DCLICK. escaped string: The user double-clicked a cell with the right mouse button; variant taking a window identifier. Processes a wxEVT_GRID_CELL_RIGHT_DCLICK. escaping string: EVT_GRID_CMD_LABEL_LEFT_CLICK(id, func) escaped string: EVT_GRID_CMD_LABEL_LEFT_CLICK(id, func) escaping string: The user clicked a label with the left mouse button; variant taking a window identifier. Processes a wxEVT_GRID_LABEL_LEFT_CLICK. escaped string: The user clicked a label with the left mouse button; variant taking a window identifier. Processes a wxEVT_GRID_LABEL_LEFT_CLICK. escaping string: EVT_GRID_CMD_LABEL_RIGHT_CLICK(id, func) escaped string: EVT_GRID_CMD_LABEL_RIGHT_CLICK(id, func) escaping string: The user clicked a label with the right mouse button; variant taking a window identifier. Processes a wxEVT_GRID_LABEL_RIGHT_CLICK. escaped string: The user clicked a label with the right mouse button; variant taking a window identifier. Processes a wxEVT_GRID_LABEL_RIGHT_CLICK. escaping string: EVT_GRID_CMD_LABEL_LEFT_DCLICK(id, func) escaped string: EVT_GRID_CMD_LABEL_LEFT_DCLICK(id, func) escaping string: The user double-clicked a label with the left mouse button; variant taking a window identifier. Processes a wxEVT_GRID_LABEL_LEFT_DCLICK. escaped string: The user double-clicked a label with the left mouse button; variant taking a window identifier. Processes a wxEVT_GRID_LABEL_LEFT_DCLICK. escaping string: EVT_GRID_CMD_LABEL_RIGHT_DCLICK(id, func) escaped string: EVT_GRID_CMD_LABEL_RIGHT_DCLICK(id, func) escaping string: The user double-clicked a label with the right mouse button; variant taking a window identifier. Processes a wxEVT_GRID_LABEL_RIGHT_DCLICK. escaped string: The user double-clicked a label with the right mouse button; variant taking a window identifier. Processes a wxEVT_GRID_LABEL_RIGHT_DCLICK. escaping string: EVT_GRID_CMD_CELL_CHANGE(id, func) escaped string: EVT_GRID_CMD_CELL_CHANGE(id, func) escaping string: The user changed the data in a cell; variant taking a window identifier. Processes a wxEVT_GRID_CELL_CHANGE. escaped string: The user changed the data in a cell; variant taking a window identifier. Processes a wxEVT_GRID_CELL_CHANGE. escaping string: EVT_GRID_CMD_SELECT_CELL(id, func) escaped string: EVT_GRID_CMD_SELECT_CELL(id, func) escaping string: The user moved to, and selected a cell; variant taking a window identifier. Processes a wxEVT_GRID_SELECT_CELL. escaped string: The user moved to, and selected a cell; variant taking a window identifier. Processes a wxEVT_GRID_SELECT_CELL. escaping string: EVT_GRID_CMD_EDITOR_HIDDEN(id, func) escaped string: EVT_GRID_CMD_EDITOR_HIDDEN(id, func) escaping string: The editor for a cell was hidden; variant taking a window identifier. Processes a wxEVT_GRID_EDITOR_HIDDEN. escaped string: The editor for a cell was hidden; variant taking a window identifier. Processes a wxEVT_GRID_EDITOR_HIDDEN. escaping string: EVT_GRID_CMD_EDITOR_SHOWN(id, func) escaped string: EVT_GRID_CMD_EDITOR_SHOWN(id, func) escaping string: The editor for a cell was shown; variant taking a window identifier. Processes a wxEVT_GRID_EDITOR_SHOWN. escaped string: The editor for a cell was shown; variant taking a window identifier. Processes a wxEVT_GRID_EDITOR_SHOWN. escaping string: wxGridRangeSelectEvent escaped string: wxGridRangeSelectEvent escaping string: EVT_GRID_RANGE_SELECT(func) escaped string: EVT_GRID_RANGE_SELECT(func) escaping string: The user selected a group of contiguous cells. Processes a wxEVT_GRID_RANGE_SELECT. escaped string: The user selected a group of contiguous cells. Processes a wxEVT_GRID_RANGE_SELECT. escaping string: EVT_GRID_CMD_RANGE_SELECT(func) escaped string: EVT_GRID_CMD_RANGE_SELECT(func) escaping string: The user selected a group of contiguous cells; variant taking a window identifier. Processes a wxEVT_GRID_RANGE_SELECT. escaped string: The user selected a group of contiguous cells; variant taking a window identifier. Processes a wxEVT_GRID_RANGE_SELECT. escaping string: wxGridSizeEvent escaped string: wxGridSizeEvent escaping string: EVT_GRID_COL_SIZE(func) escaped string: EVT_GRID_COL_SIZE(func) escaping string: The user resized a column by dragging it. Processes a wxEVT_GRID_COL_SIZE. escaped string: The user resized a column by dragging it. Processes a wxEVT_GRID_COL_SIZE. escaping string: EVT_GRID_ROW_SIZE(func) escaped string: EVT_GRID_ROW_SIZE(func) escaping string: The user resized a row by dragging it. Processes a wxEVT_GRID_ROW_SIZE. escaped string: The user resized a row by dragging it. Processes a wxEVT_GRID_ROW_SIZE. escaping string: EVT_GRID_CMD_COL_SIZE(func) escaped string: EVT_GRID_CMD_COL_SIZE(func) escaping string: The user resized a column by dragging it; variant taking a window identifier. Processes a wxEVT_GRID_COL_SIZE. escaped string: The user resized a column by dragging it; variant taking a window identifier. Processes a wxEVT_GRID_COL_SIZE. escaping string: EVT_GRID_CMD_ROW_SIZE(func) escaped string: EVT_GRID_CMD_ROW_SIZE(func) escaping string: The user resized a row by dragging it; variant taking a window identifier. Processes a wxEVT_GRID_ROW_SIZE. escaped string: The user resized a row by dragging it; variant taking a window identifier. Processes a wxEVT_GRID_ROW_SIZE. escaping string: wxHelpEvent escaped string: wxHelpEvent escaping string: EVT_HELP(id, func) escaped string: EVT_HELP(id, func) escaping string: Process a wxEVT_HELP event. escaped string: Process a wxEVT_HELP event. escaping string: EVT_HELP_RANGE(id1, id2, func) escaped string: EVT_HELP_RANGE(id1, id2, func) escaping string: Process a wxEVT_HELP event for a range of ids. escaped string: Process a wxEVT_HELP event for a range of ids. escaping string: wxIconizeEvent escaped string: wxIconizeEvent escaping string: EVT_ICONIZE(func) escaped string: EVT_ICONIZE(func) escaping string: Process a wxEVT_ICONIZE event. escaped string: Process a wxEVT_ICONIZE event. escaping string: wxIdleEvent escaped string: wxIdleEvent escaping string: EVT_IDLE(func) escaped string: EVT_IDLE(func) escaping string: Process a wxEVT_IDLE event. escaped string: Process a wxEVT_IDLE event. escaping string: wxInitDialogEvent escaped string: wxInitDialogEvent escaping string: EVT_INIT_DIALOG(func) escaped string: EVT_INIT_DIALOG(func) escaping string: Process a wxEVT_INIT_DIALOG event. escaped string: Process a wxEVT_INIT_DIALOG event. escaping string: wxJoystickEvent escaped string: wxJoystickEvent escaping string: EVT_JOY_BUTTON_DOWN(func) escaped string: EVT_JOY_BUTTON_DOWN(func) escaping string: Process a wxEVT_JOY_BUTTON_DOWN event. escaped string: Process a wxEVT_JOY_BUTTON_DOWN event. escaping string: EVT_JOY_BUTTON_UP(func) escaped string: EVT_JOY_BUTTON_UP(func) escaping string: Process a wxEVT_JOY_BUTTON_UP event. escaped string: Process a wxEVT_JOY_BUTTON_UP event. escaping string: EVT_JOY_MOVE(func) escaped string: EVT_JOY_MOVE(func) escaping string: Process a wxEVT_JOY_MOVE event. escaped string: Process a wxEVT_JOY_MOVE event. escaping string: EVT_JOY_ZMOVE(func) escaped string: EVT_JOY_ZMOVE(func) escaping string: Process a wxEVT_JOY_ZMOVE event. escaped string: Process a wxEVT_JOY_ZMOVE event. escaping string: EVT_JOYSTICK_EVENTS(func) escaped string: EVT_JOYSTICK_EVENTS(func) escaping string: Processes all joystick events. escaped string: Processes all joystick events. escaping string: wxKeyEvent escaped string: wxKeyEvent escaping string: EVT_KEY_DOWN(func) escaped string: EVT_KEY_DOWN(func) escaping string: Process a wxEVT_KEY_DOWN event (any key has been pressed). escaped string: Process a wxEVT_KEY_DOWN event (any key has been pressed). escaping string: EVT_KEY_UP(func) escaped string: EVT_KEY_UP(func) escaping string: Process a wxEVT_KEY_UP event (any key has been released). escaped string: Process a wxEVT_KEY_UP event (any key has been released). escaping string: EVT_CHAR(func) escaped string: EVT_CHAR(func) escaping string: Process a wxEVT_CHAR event. escaped string: Process a wxEVT_CHAR event. escaping string: wxLayoutAlgorithm escaped string: wxLayoutAlgorithm escaping string: EVT_QUERY_LAYOUT_INFO(func) escaped string: EVT_QUERY_LAYOUT_INFO(func) escaping string: Process a wxEVT_QUERY_LAYOUT_INFO event, to get size, orientation and alignment from a window. See wxQueryLayoutInfoEvent. escaped string: Process a wxEVT_QUERY_LAYOUT_INFO event, to get size, orientation and alignment from a window. See wxQueryLayoutInfoEvent. escaping string: EVT_CALCULATE_LAYOUT(func) escaped string: EVT_CALCULATE_LAYOUT(func) escaping string: Process a wxEVT_CALCULATE_LAYOUT event, which asks the window to take a 'bite' out of a rectangle provided by the algorithm. See wxCalculateLayoutEvent. escaped string: Process a wxEVT_CALCULATE_LAYOUT event, which asks the window to take a 'bite' out of a rectangle provided by the algorithm. See wxCalculateLayoutEvent. escaping string: wxListBox escaped string: wxListBox escaping string: EVT_LISTBOX(id, func) escaped string: EVT_LISTBOX(id, func) escaping string: Process a wxEVT_COMMAND_LISTBOX_SELECTED event, when an item on the list is selected. escaped string: Process a wxEVT_COMMAND_LISTBOX_SELECTED event, when an item on the list is selected. escaping string: EVT_LISTBOX_DCLICK(id, func) escaped string: EVT_LISTBOX_DCLICK(id, func) escaping string: Process a wxEVT_COMMAND_LISTBOX_DOUBLECLICKED event, when the listbox is double-clicked. escaped string: Process a wxEVT_COMMAND_LISTBOX_DOUBLECLICKED event, when the listbox is double-clicked. escaping string: wxListCtrl escaped string: wxListCtrl escaping string: EVT_LIST_BEGIN_DRAG(id, func) escaped string: EVT_LIST_BEGIN_DRAG(id, func) escaping string: Begin dragging with the left mouse button. escaped string: Begin dragging with the left mouse button. escaping string: EVT_LIST_BEGIN_RDRAG(id, func) escaped string: EVT_LIST_BEGIN_RDRAG(id, func) escaping string: Begin dragging with the right mouse button. escaped string: Begin dragging with the right mouse button. escaping string: EVT_LIST_BEGIN_LABEL_EDIT(id, func) escaped string: EVT_LIST_BEGIN_LABEL_EDIT(id, func) escaping string: Begin editing a label. This can be prevented by calling Veto(). escaped string: Begin editing a label. This can be prevented by calling Veto(). escaping string: EVT_LIST_END_LABEL_EDIT(id, func) escaped string: EVT_LIST_END_LABEL_EDIT(id, func) escaping string: Finish editing a label. This can be prevented by calling Veto(). escaped string: Finish editing a label. This can be prevented by calling Veto(). escaping string: EVT_LIST_DELETE_ITEM(id, func) escaped string: EVT_LIST_DELETE_ITEM(id, func) escaping string: Delete an item. escaped string: Delete an item. escaping string: EVT_LIST_DELETE_ALL_ITEMS(id, func) escaped string: EVT_LIST_DELETE_ALL_ITEMS(id, func) escaping string: Delete all items. escaped string: Delete all items. escaping string: EVT_LIST_ITEM_SELECTED(id, func) escaped string: EVT_LIST_ITEM_SELECTED(id, func) escaping string: The item has been selected. escaped string: The item has been selected. escaping string: EVT_LIST_ITEM_DESELECTED(id, func) escaped string: EVT_LIST_ITEM_DESELECTED(id, func) escaping string: The item has been deselected. escaped string: The item has been deselected. escaping string: EVT_LIST_ITEM_ACTIVATED(id, func) escaped string: EVT_LIST_ITEM_ACTIVATED(id, func) escaping string: The item has been activated (ENTER or double click). escaped string: The item has been activated (ENTER or double click). escaping string: EVT_LIST_ITEM_FOCUSED(id, func) escaped string: EVT_LIST_ITEM_FOCUSED(id, func) escaping string: The currently focused item has changed. escaped string: The currently focused item has changed. escaping string: EVT_LIST_ITEM_MIDDLE_CLICK(id, func) escaped string: EVT_LIST_ITEM_MIDDLE_CLICK(id, func) escaping string: The middle mouse button has been clicked on an item. escaped string: The middle mouse button has been clicked on an item. escaping string: EVT_LIST_ITEM_RIGHT_CLICK(id, func) escaped string: EVT_LIST_ITEM_RIGHT_CLICK(id, func) escaping string: The right mouse button has been clicked on an item. escaped string: The right mouse button has been clicked on an item. escaping string: EVT_LIST_KEY_DOWN(id, func) escaped string: EVT_LIST_KEY_DOWN(id, func) escaping string: A key has been pressed. escaped string: A key has been pressed. escaping string: EVT_LIST_INSERT_ITEM(id, func) escaped string: EVT_LIST_INSERT_ITEM(id, func) escaping string: An item has been inserted. escaped string: An item has been inserted. escaping string: EVT_LIST_COL_CLICK(id, func) escaped string: EVT_LIST_COL_CLICK(id, func) escaping string: A column ( m_col) has been left-clicked. escaped string: A column ( m_col) has been left-clicked. escaping string: EVT_LIST_COL_RIGHT_CLICK(id, func) escaped string: EVT_LIST_COL_RIGHT_CLICK(id, func) escaping string: A column ( m_col) has been right-clicked. escaped string: A column ( m_col) has been right-clicked. escaping string: EVT_LIST_COL_BEGIN_DRAG(id, func) escaped string: EVT_LIST_COL_BEGIN_DRAG(id, func) escaping string: The user started resizing a column - can be vetoed. escaped string: The user started resizing a column - can be vetoed. escaping string: EVT_LIST_COL_DRAGGING(id, func) escaped string: EVT_LIST_COL_DRAGGING(id, func) escaping string: The divider between columns is being dragged. escaped string: The divider between columns is being dragged. escaping string: EVT_LIST_COL_END_DRAG(id, func) escaped string: EVT_LIST_COL_END_DRAG(id, func) escaping string: A column has been resized by the user. escaped string: A column has been resized by the user. escaping string: EVT_LIST_CACHE_HINT(id, func) escaped string: EVT_LIST_CACHE_HINT(id, func) escaping string: Prepare cache for a virtual list control escaped string: Prepare cache for a virtual list control escaping string: wxListEvent escaped string: wxListEvent escaping string: EVT_LIST_BEGIN_DRAG(id, func) escaped string: EVT_LIST_BEGIN_DRAG(id, func) escaping string: Begin dragging with the left mouse button. escaped string: Begin dragging with the left mouse button. escaping string: EVT_LIST_BEGIN_RDRAG(id, func) escaped string: EVT_LIST_BEGIN_RDRAG(id, func) escaping string: Begin dragging with the right mouse button. escaped string: Begin dragging with the right mouse button. escaping string: EVT_LIST_BEGIN_LABEL_EDIT(id, func) escaped string: EVT_LIST_BEGIN_LABEL_EDIT(id, func) escaping string: Begin editing a label. This can be prevented by calling Veto(). escaped string: Begin editing a label. This can be prevented by calling Veto(). escaping string: EVT_LIST_END_LABEL_EDIT(id, func) escaped string: EVT_LIST_END_LABEL_EDIT(id, func) escaping string: Finish editing a label. This can be prevented by calling Veto(). escaped string: Finish editing a label. This can be prevented by calling Veto(). escaping string: EVT_LIST_DELETE_ITEM(id, func) escaped string: EVT_LIST_DELETE_ITEM(id, func) escaping string: Delete an item. escaped string: Delete an item. escaping string: EVT_LIST_DELETE_ALL_ITEMS(id, func) escaped string: EVT_LIST_DELETE_ALL_ITEMS(id, func) escaping string: Delete all items. escaped string: Delete all items. escaping string: EVT_LIST_ITEM_SELECTED(id, func) escaped string: EVT_LIST_ITEM_SELECTED(id, func) escaping string: The item has been selected. escaped string: The item has been selected. escaping string: EVT_LIST_ITEM_DESELECTED(id, func) escaped string: EVT_LIST_ITEM_DESELECTED(id, func) escaping string: The item has been deselected. escaped string: The item has been deselected. escaping string: EVT_LIST_ITEM_ACTIVATED(id, func) escaped string: EVT_LIST_ITEM_ACTIVATED(id, func) escaping string: The item has been activated (ENTER or double click). escaped string: The item has been activated (ENTER or double click). escaping string: EVT_LIST_ITEM_FOCUSED(id, func) escaped string: EVT_LIST_ITEM_FOCUSED(id, func) escaping string: The currently focused item has changed. escaped string: The currently focused item has changed. escaping string: EVT_LIST_ITEM_MIDDLE_CLICK(id, func) escaped string: EVT_LIST_ITEM_MIDDLE_CLICK(id, func) escaping string: The middle mouse button has been clicked on an item. escaped string: The middle mouse button has been clicked on an item. escaping string: EVT_LIST_ITEM_RIGHT_CLICK(id, func) escaped string: EVT_LIST_ITEM_RIGHT_CLICK(id, func) escaping string: The right mouse button has been clicked on an item. escaped string: The right mouse button has been clicked on an item. escaping string: EVT_LIST_KEY_DOWN(id, func) escaped string: EVT_LIST_KEY_DOWN(id, func) escaping string: A key has been pressed. escaped string: A key has been pressed. escaping string: EVT_LIST_INSERT_ITEM(id, func) escaped string: EVT_LIST_INSERT_ITEM(id, func) escaping string: An item has been inserted. escaped string: An item has been inserted. escaping string: EVT_LIST_COL_CLICK(id, func) escaped string: EVT_LIST_COL_CLICK(id, func) escaping string: A column ( m_col) has been left-clicked. escaped string: A column ( m_col) has been left-clicked. escaping string: EVT_LIST_COL_RIGHT_CLICK(id, func) escaped string: EVT_LIST_COL_RIGHT_CLICK(id, func) escaping string: A column ( m_col) (which can be $-1$ if the click occurred outside any column) has been right-clicked. escaped string: A column ( m_col) (which can be $-1$ if the click occurred outside any column) has been right-clicked. escaping string: EVT_LIST_COL_BEGIN_DRAG(id, func) escaped string: EVT_LIST_COL_BEGIN_DRAG(id, func) escaping string: The user started resizing a column - can be vetoed. escaped string: The user started resizing a column - can be vetoed. escaping string: EVT_LIST_COL_DRAGGING(id, func) escaped string: EVT_LIST_COL_DRAGGING(id, func) escaping string: The divider between columns is being dragged. escaped string: The divider between columns is being dragged. escaping string: EVT_LIST_COL_END_DRAG(id, func) escaped string: EVT_LIST_COL_END_DRAG(id, func) escaping string: A column has been resized by the user. escaped string: A column has been resized by the user. escaping string: EVT_LIST_CACHE_HINT(id, func) escaped string: EVT_LIST_CACHE_HINT(id, func) escaping string: Prepare cache for a virtual list control escaped string: Prepare cache for a virtual list control escaping string: wxMaximizeEvent escaped string: wxMaximizeEvent escaping string: EVT_MAXIMIZE(func) escaped string: EVT_MAXIMIZE(func) escaping string: Process a wxEVT_MAXIMIZE event. escaped string: Process a wxEVT_MAXIMIZE event. escaping string: wxMediaEvent escaped string: wxMediaEvent escaping string: EVT_MEDIA_STOP(func) escaped string: EVT_MEDIA_STOP(func) escaping string: Triggerred right before the media stops. You can Veto this event to prevent it from stopping, causing it to continue playing - even if it has reached that end of the media. escaped string: Triggerred right before the media stops. You can Veto this event to prevent it from stopping, causing it to continue playing - even if it has reached that end of the media. escaping string: EVT_MEDIA_FINISHED(func) escaped string: EVT_MEDIA_FINISHED(func) escaping string: Sent when a media has finished playing in a wxMediaCtrl. Note that if you connect to this event and don't skip it, it will override the looping behaviour of the media control. escaped string: Sent when a media has finished playing in a wxMediaCtrl. Note that if you connect to this event and don't skip it, it will override the looping behaviour of the media control. escaping string: wxMenuEvent escaped string: wxMenuEvent escaping string: EVT_MENU_OPEN(func) escaped string: EVT_MENU_OPEN(func) escaping string: A menu is about to be opened. On Windows, this is only sent once for each navigation of the menubar (up until all menus have closed). escaped string: A menu is about to be opened. On Windows, this is only sent once for each navigation of the menubar (up until all menus have closed). escaping string: EVT_MENU_CLOSE(func) escaped string: EVT_MENU_CLOSE(func) escaping string: A menu has been just closed. escaped string: A menu has been just closed. escaping string: EVT_MENU_HIGHLIGHT(id, func) escaped string: EVT_MENU_HIGHLIGHT(id, func) escaping string: The menu item with the specified id has been highlighted: used to show help prompts in the status bar by wxFrame escaped string: The menu item with the specified id has been highlighted: used to show help prompts in the status bar by wxFrame escaping string: EVT_MENU_HIGHLIGHT_ALL(func) escaped string: EVT_MENU_HIGHLIGHT_ALL(func) escaping string: A menu item has been highlighted, i.e. the currently selected menu item has changed. escaped string: A menu item has been highlighted, i.e. the currently selected menu item has changed. escaping string: wxMouseCaptureChangedEvent escaped string: wxMouseCaptureChangedEvent escaping string: EVT_MOUSE_CAPTURE_CHANGED(func) escaped string: EVT_MOUSE_CAPTURE_CHANGED(func) escaping string: Process a wxEVT_MOUSE_CAPTURE_CHANGED event. escaped string: Process a wxEVT_MOUSE_CAPTURE_CHANGED event. escaping string: wxMouseEvent escaped string: wxMouseEvent escaping string: EVT_LEFT_DOWN(func) escaped string: EVT_LEFT_DOWN(func) escaping string: Process a wxEVT_LEFT_DOWN event. The handler of this event should normally call event.Skip() to allow the default processing to take place as otherwise the window under mouse wouldn't get the focus. escaped string: Process a wxEVT_LEFT_DOWN event. The handler of this event should normally call event.Skip() to allow the default processing to take place as otherwise the window under mouse wouldn't get the focus. escaping string: EVT_LEFT_UP(func) escaped string: EVT_LEFT_UP(func) escaping string: Process a wxEVT_LEFT_UP event. escaped string: Process a wxEVT_LEFT_UP event. escaping string: EVT_LEFT_DCLICK(func) escaped string: EVT_LEFT_DCLICK(func) escaping string: Process a wxEVT_LEFT_DCLICK event. escaped string: Process a wxEVT_LEFT_DCLICK event. escaping string: EVT_MIDDLE_DOWN(func) escaped string: EVT_MIDDLE_DOWN(func) escaping string: Process a wxEVT_MIDDLE_DOWN event. escaped string: Process a wxEVT_MIDDLE_DOWN event. escaping string: EVT_MIDDLE_UP(func) escaped string: EVT_MIDDLE_UP(func) escaping string: Process a wxEVT_MIDDLE_UP event. escaped string: Process a wxEVT_MIDDLE_UP event. escaping string: EVT_MIDDLE_DCLICK(func) escaped string: EVT_MIDDLE_DCLICK(func) escaping string: Process a wxEVT_MIDDLE_DCLICK event. escaped string: Process a wxEVT_MIDDLE_DCLICK event. escaping string: EVT_RIGHT_DOWN(func) escaped string: EVT_RIGHT_DOWN(func) escaping string: Process a wxEVT_RIGHT_DOWN event. escaped string: Process a wxEVT_RIGHT_DOWN event. escaping string: EVT_RIGHT_UP(func) escaped string: EVT_RIGHT_UP(func) escaping string: Process a wxEVT_RIGHT_UP event. escaped string: Process a wxEVT_RIGHT_UP event. escaping string: EVT_RIGHT_DCLICK(func) escaped string: EVT_RIGHT_DCLICK(func) escaping string: Process a wxEVT_RIGHT_DCLICK event. escaped string: Process a wxEVT_RIGHT_DCLICK event. escaping string: EVT_MOTION(func) escaped string: EVT_MOTION(func) escaping string: Process a wxEVT_MOTION event. escaped string: Process a wxEVT_MOTION event. escaping string: EVT_ENTER_WINDOW(func) escaped string: EVT_ENTER_WINDOW(func) escaping string: Process a wxEVT_ENTER_WINDOW event. escaped string: Process a wxEVT_ENTER_WINDOW event. escaping string: EVT_LEAVE_WINDOW(func) escaped string: EVT_LEAVE_WINDOW(func) escaping string: Process a wxEVT_LEAVE_WINDOW event. escaped string: Process a wxEVT_LEAVE_WINDOW event. escaping string: EVT_MOUSEWHEEL(func) escaped string: EVT_MOUSEWHEEL(func) escaping string: Process a wxEVT_MOUSEWHEEL event. escaped string: Process a wxEVT_MOUSEWHEEL event. escaping string: EVT_MOUSE_EVENTS(func) escaped string: EVT_MOUSE_EVENTS(func) escaping string: Process all mouse events. escaped string: Process all mouse events. escaping string: wxMoveEvent escaped string: wxMoveEvent escaping string: EVT_MOVE(func) escaped string: EVT_MOVE(func) escaping string: Process a wxEVT_MOVE event, which is generated when a window is moved. escaped string: Process a wxEVT_MOVE event, which is generated when a window is moved. escaping string: wxNotebookEvent escaped string: wxNotebookEvent escaping string: EVT_NOTEBOOK_PAGE_CHANGED(id, func) escaped string: EVT_NOTEBOOK_PAGE_CHANGED(id, func) escaping string: The page selection was changed. Processes a wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED event. escaped string: The page selection was changed. Processes a wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED event. escaping string: EVT_NOTEBOOK_PAGE_CHANGING(id, func) escaped string: EVT_NOTEBOOK_PAGE_CHANGING(id, func) escaping string: The page selection is about to be changed. Processes a wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING event. This event can be vetoed. escaped string: The page selection is about to be changed. Processes a wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING event. This event can be vetoed. escaping string: wxPaintEvent escaped string: wxPaintEvent escaping string: EVT_PAINT(func) escaped string: EVT_PAINT(func) escaping string: Process a wxEVT_PAINT event. escaped string: Process a wxEVT_PAINT event. escaping string: wxProcessEvent escaped string: wxProcessEvent escaping string: EVT_END_PROCESS(id, func) escaped string: EVT_END_PROCESS(id, func) escaping string: Process a wxEVT_END_PROCESS event. id is the identifier of the process object (the id passed to the wxProcess constructor) or a window to receive the event. escaped string: Process a wxEVT_END_PROCESS event. id is the identifier of the process object (the id passed to the wxProcess constructor) or a window to receive the event. escaping string: wxQueryLayoutInfoEvent escaped string: wxQueryLayoutInfoEvent escaping string: EVT_QUERY_LAYOUT_INFO(func) escaped string: EVT_QUERY_LAYOUT_INFO(func) escaping string: Process a wxEVT_QUERY_LAYOUT_INFO event, to get size, orientation and alignment from a window. escaped string: Process a wxEVT_QUERY_LAYOUT_INFO event, to get size, orientation and alignment from a window. escaping string: wxRadioBox escaped string: wxRadioBox escaping string: EVT_RADIOBOX(id, func) escaped string: EVT_RADIOBOX(id, func) escaping string: Process a wxEVT_COMMAND_RADIOBOX_SELECTED event, when a radiobutton is clicked. escaped string: Process a wxEVT_COMMAND_RADIOBOX_SELECTED event, when a radiobutton is clicked. escaping string: wxRadioButton escaped string: wxRadioButton escaping string: EVT_RADIOBUTTON(id, func) escaped string: EVT_RADIOBUTTON(id, func) escaping string: Process a wxEVT_COMMAND_RADIOBUTTON_SELECTED event, when the radiobutton is clicked. escaped string: Process a wxEVT_COMMAND_RADIOBUTTON_SELECTED event, when the radiobutton is clicked. escaping string: wxSashEvent escaped string: wxSashEvent escaping string: EVT_SASH_DRAGGED(id, func) escaped string: EVT_SASH_DRAGGED(id, func) escaping string: Process a wxEVT_SASH_DRAGGED event, when the user has finished dragging a sash. escaped string: Process a wxEVT_SASH_DRAGGED event, when the user has finished dragging a sash. escaping string: EVT_SASH_DRAGGED_RANGE(id1, id2, func) escaped string: EVT_SASH_DRAGGED_RANGE(id1, id2, func) escaping string: Process a wxEVT_SASH_DRAGGED_RANGE event, when the user has finished dragging a sash. The event handler is called when windows with ids in the given range have their sashes dragged. escaped string: Process a wxEVT_SASH_DRAGGED_RANGE event, when the user has finished dragging a sash. The event handler is called when windows with ids in the given range have their sashes dragged. escaping string: wxSashWindow escaped string: wxSashWindow escaping string: EVT_SASH_DRAGGED(id, func) escaped string: EVT_SASH_DRAGGED(id, func) escaping string: Process a wxEVT_SASH_DRAGGED event, when the user has finished dragging a sash. escaped string: Process a wxEVT_SASH_DRAGGED event, when the user has finished dragging a sash. escaping string: EVT_SASH_DRAGGED_RANGE(id1, id2, func) escaped string: EVT_SASH_DRAGGED_RANGE(id1, id2, func) escaping string: Process a wxEVT_SASH_DRAGGED_RANGE event, when the user has finished dragging a sash. The event handler is called when windows with ids in the given range have their sashes dragged. escaped string: Process a wxEVT_SASH_DRAGGED_RANGE event, when the user has finished dragging a sash. The event handler is called when windows with ids in the given range have their sashes dragged. escaping string: wxScrollEvent escaped string: wxScrollEvent escaping string: EVT_SCROLL(func) escaped string: EVT_SCROLL(func) escaping string: Process all scroll events. escaped string: Process all scroll events. escaping string: EVT_SCROLL_TOP(func) escaped string: EVT_SCROLL_TOP(func) escaping string: Process wxEVT_SCROLL_TOP scroll-to-top events (minimum position). escaped string: Process wxEVT_SCROLL_TOP scroll-to-top events (minimum position). escaping string: EVT_SCROLL_BOTTOM(func) escaped string: EVT_SCROLL_BOTTOM(func) escaping string: Process wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position). escaped string: Process wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position). escaping string: EVT_SCROLL_LINEUP(func) escaped string: EVT_SCROLL_LINEUP(func) escaping string: Process wxEVT_SCROLL_LINEUP line up events. escaped string: Process wxEVT_SCROLL_LINEUP line up events. escaping string: EVT_SCROLL_LINEDOWN(func) escaped string: EVT_SCROLL_LINEDOWN(func) escaping string: Process wxEVT_SCROLL_LINEDOWN line down events. escaped string: Process wxEVT_SCROLL_LINEDOWN line down events. escaping string: EVT_SCROLL_PAGEUP(func) escaped string: EVT_SCROLL_PAGEUP(func) escaping string: Process wxEVT_SCROLL_PAGEUP page up events. escaped string: Process wxEVT_SCROLL_PAGEUP page up events. escaping string: EVT_SCROLL_PAGEDOWN(func) escaped string: EVT_SCROLL_PAGEDOWN(func) escaping string: Process wxEVT_SCROLL_PAGEDOWN page down events. escaped string: Process wxEVT_SCROLL_PAGEDOWN page down events. escaping string: EVT_SCROLL_THUMBTRACK(func) escaped string: EVT_SCROLL_THUMBTRACK(func) escaping string: Process wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). escaped string: Process wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). escaping string: EVT_SCROLL_THUMBRELEASE(func) escaped string: EVT_SCROLL_THUMBRELEASE(func) escaping string: Process wxEVT_SCROLL_THUMBRELEASE thumb release events. escaped string: Process wxEVT_SCROLL_THUMBRELEASE thumb release events. escaping string: EVT_SCROLL_CHANGED(func) escaped string: EVT_SCROLL_CHANGED(func) escaping string: Process wxEVT_SCROLL_CHANGED end of scrolling events (MSW only). escaped string: Process wxEVT_SCROLL_CHANGED end of scrolling events (MSW only). escaping string: EVT_COMMAND_SCROLL(id, func) escaped string: EVT_COMMAND_SCROLL(id, func) escaping string: Process all scroll events. escaped string: Process all scroll events. escaping string: EVT_COMMAND_SCROLL_TOP(id, func) escaped string: EVT_COMMAND_SCROLL_TOP(id, func) escaping string: Process wxEVT_SCROLL_TOP scroll-to-top events (minimum position). escaped string: Process wxEVT_SCROLL_TOP scroll-to-top events (minimum position). escaping string: EVT_COMMAND_SCROLL_BOTTOM(id, func) escaped string: EVT_COMMAND_SCROLL_BOTTOM(id, func) escaping string: Process wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position). escaped string: Process wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position). escaping string: EVT_COMMAND_SCROLL_LINEUP(id, func) escaped string: EVT_COMMAND_SCROLL_LINEUP(id, func) escaping string: Process wxEVT_SCROLL_LINEUP line up events. escaped string: Process wxEVT_SCROLL_LINEUP line up events. escaping string: EVT_COMMAND_SCROLL_LINEDOWN(id, func) escaped string: EVT_COMMAND_SCROLL_LINEDOWN(id, func) escaping string: Process wxEVT_SCROLL_LINEDOWN line down events. escaped string: Process wxEVT_SCROLL_LINEDOWN line down events. escaping string: EVT_COMMAND_SCROLL_PAGEUP(id, func) escaped string: EVT_COMMAND_SCROLL_PAGEUP(id, func) escaping string: Process wxEVT_SCROLL_PAGEUP page up events. escaped string: Process wxEVT_SCROLL_PAGEUP page up events. escaping string: EVT_COMMAND_SCROLL_PAGEDOWN(id, func) escaped string: EVT_COMMAND_SCROLL_PAGEDOWN(id, func) escaping string: Process wxEVT_SCROLL_PAGEDOWN page down events. escaped string: Process wxEVT_SCROLL_PAGEDOWN page down events. escaping string: EVT_COMMAND_SCROLL_THUMBTRACK(id, func) escaped string: EVT_COMMAND_SCROLL_THUMBTRACK(id, func) escaping string: Process wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). escaped string: Process wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). escaping string: EVT_COMMAND_SCROLL_THUMBRELEASE(func) escaped string: EVT_COMMAND_SCROLL_THUMBRELEASE(func) escaping string: Process wxEVT_SCROLL_THUMBRELEASE thumb release events. escaped string: Process wxEVT_SCROLL_THUMBRELEASE thumb release events. escaping string: EVT_COMMAND_SCROLL_CHANGED(func) escaped string: EVT_COMMAND_SCROLL_CHANGED(func) escaping string: Process wxEVT_SCROLL_CHANGED end of scrolling events (MSW only). escaped string: Process wxEVT_SCROLL_CHANGED end of scrolling events (MSW only). escaping string: wxScrollWinEvent escaped string: wxScrollWinEvent escaping string: EVT_SCROLLWIN(func) escaped string: EVT_SCROLLWIN(func) escaping string: Process all scroll events. escaped string: Process all scroll events. escaping string: EVT_SCROLLWIN_TOP(func) escaped string: EVT_SCROLLWIN_TOP(func) escaping string: Process wxEVT_SCROLLWIN_TOP scroll-to-top events. escaped string: Process wxEVT_SCROLLWIN_TOP scroll-to-top events. escaping string: EVT_SCROLLWIN_BOTTOM(func) escaped string: EVT_SCROLLWIN_BOTTOM(func) escaping string: Process wxEVT_SCROLLWIN_TOP scroll-to-bottom events. escaped string: Process wxEVT_SCROLLWIN_TOP scroll-to-bottom events. escaping string: EVT_SCROLLWIN_LINEUP(func) escaped string: EVT_SCROLLWIN_LINEUP(func) escaping string: Process wxEVT_SCROLLWIN_LINEUP line up events. escaped string: Process wxEVT_SCROLLWIN_LINEUP line up events. escaping string: EVT_SCROLLWIN_LINEDOWN(func) escaped string: EVT_SCROLLWIN_LINEDOWN(func) escaping string: Process wxEVT_SCROLLWIN_LINEDOWN line down events. escaped string: Process wxEVT_SCROLLWIN_LINEDOWN line down events. escaping string: EVT_SCROLLWIN_PAGEUP(func) escaped string: EVT_SCROLLWIN_PAGEUP(func) escaping string: Process wxEVT_SCROLLWIN_PAGEUP page up events. escaped string: Process wxEVT_SCROLLWIN_PAGEUP page up events. escaping string: EVT_SCROLLWIN_PAGEDOWN(func) escaped string: EVT_SCROLLWIN_PAGEDOWN(func) escaping string: Process wxEVT_SCROLLWIN_PAGEDOWN page down events. escaped string: Process wxEVT_SCROLLWIN_PAGEDOWN page down events. escaping string: EVT_SCROLLWIN_THUMBTRACK(func) escaped string: EVT_SCROLLWIN_THUMBTRACK(func) escaping string: Process wxEVT_SCROLLWIN_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). escaped string: Process wxEVT_SCROLLWIN_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). escaping string: EVT_SCROLLWIN_THUMBRELEASE(func) escaped string: EVT_SCROLLWIN_THUMBRELEASE(func) escaping string: Process wxEVT_SCROLLWIN_THUMBRELEASE thumb release events. escaped string: Process wxEVT_SCROLLWIN_THUMBRELEASE thumb release events. escaping string: wxSetCursorEvent escaped string: wxSetCursorEvent escaping string: EVT_SET_CURSOR(func) escaped string: EVT_SET_CURSOR(func) escaping string: Process a wxEVT_SET_CURSOR event. escaped string: Process a wxEVT_SET_CURSOR event. escaping string: wxSizeEvent escaped string: wxSizeEvent escaping string: EVT_SIZE(func) escaped string: EVT_SIZE(func) escaping string: Process a wxEVT_SIZE event. escaped string: Process a wxEVT_SIZE event. escaping string: wxSlider escaped string: wxSlider escaping string: EVT_SCROLL(func) escaped string: EVT_SCROLL(func) escaping string: Process all scroll events. escaped string: Process all scroll events. escaping string: EVT_SCROLL_TOP(func) escaped string: EVT_SCROLL_TOP(func) escaping string: Process wxEVT_SCROLL_TOP scroll-to-top events (minimum position). escaped string: Process wxEVT_SCROLL_TOP scroll-to-top events (minimum position). escaping string: EVT_SCROLL_BOTTOM(func) escaped string: EVT_SCROLL_BOTTOM(func) escaping string: Process wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position). escaped string: Process wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position). escaping string: EVT_SCROLL_LINEUP(func) escaped string: EVT_SCROLL_LINEUP(func) escaping string: Process wxEVT_SCROLL_LINEUP line up events. escaped string: Process wxEVT_SCROLL_LINEUP line up events. escaping string: EVT_SCROLL_LINEDOWN(func) escaped string: EVT_SCROLL_LINEDOWN(func) escaping string: Process wxEVT_SCROLL_LINEDOWN line down events. escaped string: Process wxEVT_SCROLL_LINEDOWN line down events. escaping string: EVT_SCROLL_PAGEUP(func) escaped string: EVT_SCROLL_PAGEUP(func) escaping string: Process wxEVT_SCROLL_PAGEUP page up events. escaped string: Process wxEVT_SCROLL_PAGEUP page up events. escaping string: EVT_SCROLL_PAGEDOWN(func) escaped string: EVT_SCROLL_PAGEDOWN(func) escaping string: Process wxEVT_SCROLL_PAGEDOWN page down events. escaped string: Process wxEVT_SCROLL_PAGEDOWN page down events. escaping string: EVT_SCROLL_THUMBTRACK(func) escaped string: EVT_SCROLL_THUMBTRACK(func) escaping string: Process wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). escaped string: Process wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). escaping string: EVT_SCROLL_THUMBRELEASE(func) escaped string: EVT_SCROLL_THUMBRELEASE(func) escaping string: Process wxEVT_SCROLL_THUMBRELEASE thumb release events. escaped string: Process wxEVT_SCROLL_THUMBRELEASE thumb release events. escaping string: EVT_SCROLL_CHANGED(func) escaped string: EVT_SCROLL_CHANGED(func) escaping string: Process wxEVT_SCROLL_CHANGED end of scrolling events (MSW only). escaped string: Process wxEVT_SCROLL_CHANGED end of scrolling events (MSW only). escaping string: EVT_COMMAND_SCROLL(id, func) escaped string: EVT_COMMAND_SCROLL(id, func) escaping string: Process all scroll events. escaped string: Process all scroll events. escaping string: EVT_COMMAND_SCROLL_TOP(id, func) escaped string: EVT_COMMAND_SCROLL_TOP(id, func) escaping string: Process wxEVT_SCROLL_TOP scroll-to-top events (minimum position). escaped string: Process wxEVT_SCROLL_TOP scroll-to-top events (minimum position). escaping string: EVT_COMMAND_SCROLL_BOTTOM(id, func) escaped string: EVT_COMMAND_SCROLL_BOTTOM(id, func) escaping string: Process wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position). escaped string: Process wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position). escaping string: EVT_COMMAND_SCROLL_LINEUP(id, func) escaped string: EVT_COMMAND_SCROLL_LINEUP(id, func) escaping string: Process wxEVT_SCROLL_LINEUP line up events. escaped string: Process wxEVT_SCROLL_LINEUP line up events. escaping string: EVT_COMMAND_SCROLL_LINEDOWN(id, func) escaped string: EVT_COMMAND_SCROLL_LINEDOWN(id, func) escaping string: Process wxEVT_SCROLL_LINEDOWN line down events. escaped string: Process wxEVT_SCROLL_LINEDOWN line down events. escaping string: EVT_COMMAND_SCROLL_PAGEUP(id, func) escaped string: EVT_COMMAND_SCROLL_PAGEUP(id, func) escaping string: Process wxEVT_SCROLL_PAGEUP page up events. escaped string: Process wxEVT_SCROLL_PAGEUP page up events. escaping string: EVT_COMMAND_SCROLL_PAGEDOWN(id, func) escaped string: EVT_COMMAND_SCROLL_PAGEDOWN(id, func) escaping string: Process wxEVT_SCROLL_PAGEDOWN page down events. escaped string: Process wxEVT_SCROLL_PAGEDOWN page down events. escaping string: EVT_COMMAND_SCROLL_THUMBTRACK(id, func) escaped string: EVT_COMMAND_SCROLL_THUMBTRACK(id, func) escaping string: Process wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). escaped string: Process wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the user drags the thumbtrack). escaping string: EVT_COMMAND_SCROLL_THUMBRELEASE(func) escaped string: EVT_COMMAND_SCROLL_THUMBRELEASE(func) escaping string: Process wxEVT_SCROLL_THUMBRELEASE thumb release events. escaped string: Process wxEVT_SCROLL_THUMBRELEASE thumb release events. escaping string: EVT_COMMAND_SCROLL_CHANGED(func) escaped string: EVT_COMMAND_SCROLL_CHANGED(func) escaping string: Process wxEVT_SCROLL_CHANGED end of scrolling events (MSW only). escaped string: Process wxEVT_SCROLL_CHANGED end of scrolling events (MSW only). escaping string: wxSocketBase escaped string: wxSocketBase escaping string: EVT_SOCKET(id, func) escaped string: EVT_SOCKET(id, func) escaping string: Process a wxEVT_SOCKET event. escaped string: Process a wxEVT_SOCKET event. escaping string: wxSocketEvent escaped string: wxSocketEvent escaping string: EVT_SOCKET(id, func) escaped string: EVT_SOCKET(id, func) escaping string: Process a socket event, supplying the member function. escaped string: Process a socket event, supplying the member function. escaping string: wxSpinCtrl escaped string: wxSpinCtrl escaping string: EVT_SPINCTRL(id, func) escaped string: EVT_SPINCTRL(id, func) escaping string: Generated whenever the numeric value of the spinctrl is updated escaped string: Generated whenever the numeric value of the spinctrl is updated escaping string: wxSpinEvent escaped string: wxSpinEvent escaping string: EVT_SPIN(id, func) escaped string: EVT_SPIN(id, func) escaping string: Generated whenever an arrow is pressed. escaped string: Generated whenever an arrow is pressed. escaping string: EVT_SPIN_UP(id, func) escaped string: EVT_SPIN_UP(id, func) escaping string: Generated when left/up arrow is pressed. escaped string: Generated when left/up arrow is pressed. escaping string: EVT_SPIN_DOWN(id, func) escaped string: EVT_SPIN_DOWN(id, func) escaping string: Generated when right/down arrow is pressed. escaped string: Generated when right/down arrow is pressed. escaping string: wxSplitterEvent escaped string: wxSplitterEvent escaping string: EVT_SPLITTER_SASH_POS_CHANGING(id, func) escaped string: EVT_SPLITTER_SASH_POS_CHANGING(id, func) escaping string: The sash position is in the process of being changed. You may prevent this change from happening by calling Veto or you may also modify the position of the tracking bar to properly reflect the position that would be set if the drag were to be completed at this point. Processes a wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING event. escaped string: The sash position is in the process of being changed. You may prevent this change from happening by calling Veto or you may also modify the position of the tracking bar to properly reflect the position that would be set if the drag were to be completed at this point. Processes a wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING event. escaping string: EVT_SPLITTER_SASH_POS_CHANGED(id, func) escaped string: EVT_SPLITTER_SASH_POS_CHANGED(id, func) escaping string: The sash position was changed. This event is generated after the user releases the mouse after dragging the splitter. Processes a wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED event. escaped string: The sash position was changed. This event is generated after the user releases the mouse after dragging the splitter. Processes a wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED event. escaping string: EVT_SPLITTER_UNSPLIT(id, func) escaped string: EVT_SPLITTER_UNSPLIT(id, func) escaping string: The splitter has been just unsplit. Processes a wxEVT_COMMAND_SPLITTER_UNSPLIT event. This event can't be vetoed. escaped string: The splitter has been just unsplit. Processes a wxEVT_COMMAND_SPLITTER_UNSPLIT event. This event can't be vetoed. escaping string: EVT_SPLITTER_DCLICK(id, func) escaped string: EVT_SPLITTER_DCLICK(id, func) escaping string: The sash was double clicked. The default behaviour is to unsplit the window when this happens (unless the minimum pane size has been set to a value greater than zero). This won't happen if you veto this event. Processes a wxEVT_COMMAND_SPLITTER_DOUBLECLICKED event. escaped string: The sash was double clicked. The default behaviour is to unsplit the window when this happens (unless the minimum pane size has been set to a value greater than zero). This won't happen if you veto this event. Processes a wxEVT_COMMAND_SPLITTER_DOUBLECLICKED event. escaping string: wxSplitterWindow escaped string: wxSplitterWindow escaping string: EVT_SPLITTER_SASH_POS_CHANGING(id, func) escaped string: EVT_SPLITTER_SASH_POS_CHANGING(id, func) escaping string: The sash position is in the process of being changed. May be used to modify the position of the tracking bar to properly reflect the position that would be set if the drag were to be completed at this point. Processes a wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING event. escaped string: The sash position is in the process of being changed. May be used to modify the position of the tracking bar to properly reflect the position that would be set if the drag were to be completed at this point. Processes a wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING event. escaping string: EVT_SPLITTER_SASH_POS_CHANGED(id, func) escaped string: EVT_SPLITTER_SASH_POS_CHANGED(id, func) escaping string: The sash position was changed. May be used to modify the sash position before it is set, or to prevent the change from taking place. Processes a wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED event. escaped string: The sash position was changed. May be used to modify the sash position before it is set, or to prevent the change from taking place. Processes a wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED event. escaping string: EVT_SPLITTER_UNSPLIT(id, func) escaped string: EVT_SPLITTER_UNSPLIT(id, func) escaping string: The splitter has been just unsplit. Processes a wxEVT_COMMAND_SPLITTER_UNSPLIT event. escaped string: The splitter has been just unsplit. Processes a wxEVT_COMMAND_SPLITTER_UNSPLIT event. escaping string: EVT_SPLITTER_DCLICK(id, func) escaped string: EVT_SPLITTER_DCLICK(id, func) escaping string: The sash was double clicked. The default behaviour is to unsplit the window when this happens (unless the minimum pane size has been set to a value greater than zero). Processes a wxEVT_COMMAND_SPLITTER_DOUBLECLICKED event. escaped string: The sash was double clicked. The default behaviour is to unsplit the window when this happens (unless the minimum pane size has been set to a value greater than zero). Processes a wxEVT_COMMAND_SPLITTER_DOUBLECLICKED event. escaping string: wxSysColourChangedEvent escaped string: wxSysColourChangedEvent escaping string: EVT_SYS_COLOUR_CHANGED(func) escaped string: EVT_SYS_COLOUR_CHANGED(func) escaping string: Process a wxEVT_SYS_COLOUR_CHANGED event. escaped string: Process a wxEVT_SYS_COLOUR_CHANGED event. escaping string: wxTaskBarIcon escaped string: wxTaskBarIcon escaping string: EVT_TASKBAR_MOVE(func) escaped string: EVT_TASKBAR_MOVE(func) escaping string: Process a wxEVT_TASKBAR_MOVE event. escaped string: Process a wxEVT_TASKBAR_MOVE event. escaping string: EVT_TASKBAR_LEFT_DOWN(func) escaped string: EVT_TASKBAR_LEFT_DOWN(func) escaping string: Process a wxEVT_TASKBAR_LEFT_DOWN event. escaped string: Process a wxEVT_TASKBAR_LEFT_DOWN event. escaping string: EVT_TASKBAR_LEFT_UP(func) escaped string: EVT_TASKBAR_LEFT_UP(func) escaping string: Process a wxEVT_TASKBAR_LEFT_UP event. escaped string: Process a wxEVT_TASKBAR_LEFT_UP event. escaping string: EVT_TASKBAR_RIGHT_DOWN(func) escaped string: EVT_TASKBAR_RIGHT_DOWN(func) escaping string: Process a wxEVT_TASKBAR_RIGHT_DOWN event. escaped string: Process a wxEVT_TASKBAR_RIGHT_DOWN event. escaping string: EVT_TASKBAR_RIGHT_UP(func) escaped string: EVT_TASKBAR_RIGHT_UP(func) escaping string: Process a wxEVT_TASKBAR_RIGHT_UP event. escaped string: Process a wxEVT_TASKBAR_RIGHT_UP event. escaping string: EVT_TASKBAR_LEFT_DCLICK(func) escaped string: EVT_TASKBAR_LEFT_DCLICK(func) escaping string: Process a wxEVT_TASKBAR_LEFT_DCLICK event. escaped string: Process a wxEVT_TASKBAR_LEFT_DCLICK event. escaping string: EVT_TASKBAR_RIGHT_DCLICK(func) escaped string: EVT_TASKBAR_RIGHT_DCLICK(func) escaping string: Process a wxEVT_TASKBAR_RIGHT_DCLICK event. escaped string: Process a wxEVT_TASKBAR_RIGHT_DCLICK event. escaping string: wxToggleButton escaped string: wxToggleButton escaping string: EVT_TOGGLEBUTTON(id, func) escaped string: EVT_TOGGLEBUTTON(id, func) escaping string: Handles button click event. escaped string: Handles button click event. escaping string: wxToolBar escaped string: wxToolBar escaping string: EVT_TOOL(id, func) escaped string: EVT_TOOL(id, func) escaping string: Process a wxEVT_COMMAND_TOOL_CLICKED event (a synonym for wxEVT_COMMAND_MENU_SELECTED). Pass the id of the tool. escaped string: Process a wxEVT_COMMAND_TOOL_CLICKED event (a synonym for wxEVT_COMMAND_MENU_SELECTED). Pass the id of the tool. escaping string: EVT_MENU(id, func) escaped string: EVT_MENU(id, func) escaping string: The same as EVT_TOOL. escaped string: The same as EVT_TOOL. escaping string: EVT_TOOL_RANGE(id1, id2, func) escaped string: EVT_TOOL_RANGE(id1, id2, func) escaping string: Process a wxEVT_COMMAND_TOOL_CLICKED event for a range of identifiers. Pass the ids of the tools. escaped string: Process a wxEVT_COMMAND_TOOL_CLICKED event for a range of identifiers. Pass the ids of the tools. escaping string: EVT_MENU_RANGE(id1, id2, func) escaped string: EVT_MENU_RANGE(id1, id2, func) escaping string: The same as EVT_TOOL_RANGE. escaped string: The same as EVT_TOOL_RANGE. escaping string: EVT_TOOL_RCLICKED(id, func) escaped string: EVT_TOOL_RCLICKED(id, func) escaping string: Process a wxEVT_COMMAND_TOOL_RCLICKED event. Pass the id of the tool. escaped string: Process a wxEVT_COMMAND_TOOL_RCLICKED event. Pass the id of the tool. escaping string: EVT_TOOL_RCLICKED_RANGE(id1, id2, func) escaped string: EVT_TOOL_RCLICKED_RANGE(id1, id2, func) escaping string: Process a wxEVT_COMMAND_TOOL_RCLICKED event for a range of ids. Pass the ids of the tools. escaped string: Process a wxEVT_COMMAND_TOOL_RCLICKED event for a range of ids. Pass the ids of the tools. escaping string: EVT_TOOL_ENTER(id, func) escaped string: EVT_TOOL_ENTER(id, func) escaping string: Process a wxEVT_COMMAND_TOOL_ENTER event. Pass the id of the toolbar itself. The value of wxCommandEvent::GetSelection is the tool id, or -1 if the mouse cursor has moved off a tool. escaped string: Process a wxEVT_COMMAND_TOOL_ENTER event. Pass the id of the toolbar itself. The value of wxCommandEvent::GetSelection is the tool id, or -1 if the mouse cursor has moved off a tool. escaping string: wxTreeEvent escaped string: wxTreeEvent escaping string: EVT_TREE_BEGIN_DRAG(id, func) escaped string: EVT_TREE_BEGIN_DRAG(id, func) escaping string: The user has started dragging an item with the left mouse button. The event handler must call wxTreeEvent::Allow() for the drag operation to continue. escaped string: The user has started dragging an item with the left mouse button. The event handler must call wxTreeEvent::Allow() for the drag operation to continue. escaping string: EVT_TREE_BEGIN_RDRAG(id, func) escaped string: EVT_TREE_BEGIN_RDRAG(id, func) escaping string: The user has started dragging an item with the right mouse button. The event handler must call wxTreeEvent::Allow() for the drag operation to continue. escaped string: The user has started dragging an item with the right mouse button. The event handler must call wxTreeEvent::Allow() for the drag operation to continue. escaping string: EVT_TREE_BEGIN_LABEL_EDIT(id, func) escaped string: EVT_TREE_BEGIN_LABEL_EDIT(id, func) escaping string: Begin editing a label. This can be prevented by calling Veto(). escaped string: Begin editing a label. This can be prevented by calling Veto(). escaping string: EVT_TREE_END_DRAG(id, func) escaped string: EVT_TREE_END_DRAG(id, func) escaping string: The user has released the mouse after dragging an item. escaped string: The user has released the mouse after dragging an item. escaping string: EVT_TREE_END_LABEL_EDIT(id, func) escaped string: EVT_TREE_END_LABEL_EDIT(id, func) escaping string: The user has finished editing a label. This can be prevented by calling Veto(). escaped string: The user has finished editing a label. This can be prevented by calling Veto(). escaping string: EVT_TREE_DELETE_ITEM(id, func) escaped string: EVT_TREE_DELETE_ITEM(id, func) escaping string: A tree item has been deleted. escaped string: A tree item has been deleted. escaping string: EVT_TREE_ITEM_ACTIVATED(id, func) escaped string: EVT_TREE_ITEM_ACTIVATED(id, func) escaping string: An item has been activated (e.g. double clicked). escaped string: An item has been activated (e.g. double clicked). escaping string: EVT_TREE_ITEM_COLLAPSED(id, func) escaped string: EVT_TREE_ITEM_COLLAPSED(id, func) escaping string: The item has been collapsed. escaped string: The item has been collapsed. escaping string: EVT_TREE_ITEM_COLLAPSING(id, func) escaped string: EVT_TREE_ITEM_COLLAPSING(id, func) escaping string: The item is being collapsed. This can be prevented by calling Veto(). escaped string: The item is being collapsed. This can be prevented by calling Veto(). escaping string: EVT_TREE_ITEM_EXPANDED(id, func) escaped string: EVT_TREE_ITEM_EXPANDED(id, func) escaping string: The item has been expanded. escaped string: The item has been expanded. escaping string: EVT_TREE_ITEM_EXPANDING(id, func) escaped string: EVT_TREE_ITEM_EXPANDING(id, func) escaping string: The item is being expanded. This can be prevented by calling Veto(). escaped string: The item is being expanded. This can be prevented by calling Veto(). escaping string: EVT_TREE_ITEM_RIGHT_CLICK(id, func) escaped string: EVT_TREE_ITEM_RIGHT_CLICK(id, func) escaping string: The user has clicked the item with the right mouse button. escaped string: The user has clicked the item with the right mouse button. escaping string: EVT_TREE_ITEM_MIDDLE_CLICK(id, func) escaped string: EVT_TREE_ITEM_MIDDLE_CLICK(id, func) escaping string: The user has clicked the item with the middle mouse button. escaped string: The user has clicked the item with the middle mouse button. escaping string: EVT_TREE_KEY_DOWN(id, func) escaped string: EVT_TREE_KEY_DOWN(id, func) escaping string: A key has been pressed. escaped string: A key has been pressed. escaping string: EVT_TREE_SEL_CHANGED(id, func) escaped string: EVT_TREE_SEL_CHANGED(id, func) escaping string: Selection has changed. escaped string: Selection has changed. escaping string: EVT_TREE_SEL_CHANGING(id, func) escaped string: EVT_TREE_SEL_CHANGING(id, func) escaping string: Selection is changing. This can be prevented by calling Veto(). escaped string: Selection is changing. This can be prevented by calling Veto(). escaping string: EVT_TREE_KEY_DOWN(id, func) escaped string: EVT_TREE_KEY_DOWN(id, func) escaping string: A key has been pressed. escaped string: A key has been pressed. escaping string: EVT_TREE_ITEM_GETTOOLTIP(id, func) escaped string: EVT_TREE_ITEM_GETTOOLTIP(id, func) escaping string: The opportunity to set the item tooltip is being given to the application (call wxTreeEvent::SetToolTip). Windows only. escaped string: The opportunity to set the item tooltip is being given to the application (call wxTreeEvent::SetToolTip). Windows only. escaping string: EVT_TREE_ITEM_MENU(id, func) escaped string: EVT_TREE_ITEM_MENU(id, func) escaping string: The context menu for the selected item has been requested, either by a right click or by using the menu key. escaped string: The context menu for the selected item has been requested, either by a right click or by using the menu key. escaping string: EVT_TREE_STATE_IMAGE_CLICK(id, func) escaped string: EVT_TREE_STATE_IMAGE_CLICK(id, func) escaping string: The state image has been clicked. Windows only. escaped string: The state image has been clicked. Windows only. escaping string: wxUpdateUIEvent escaped string: wxUpdateUIEvent escaping string: EVT_UPDATE_UI(id, func) escaped string: EVT_UPDATE_UI(id, func) escaping string: Process a wxEVT_UPDATE_UI event for the command with the given id. escaped string: Process a wxEVT_UPDATE_UI event for the command with the given id. escaping string: EVT_UPDATE_UI_RANGE(id1, id2, func) escaped string: EVT_UPDATE_UI_RANGE(id1, id2, func) escaping string: Process a wxEVT_UPDATE_UI event for any command with id included in the given range. escaped string: Process a wxEVT_UPDATE_UI event for any command with id included in the given range. escaping string: wxWindowCreateEvent escaped string: wxWindowCreateEvent escaping string: EVT_WINDOW_CREATE(func) escaped string: EVT_WINDOW_CREATE(func) escaping string: Process a wxEVT_CREATE event. escaped string: Process a wxEVT_CREATE event. escaping string: wxWindowDestroyEvent escaped string: wxWindowDestroyEvent escaping string: EVT_WINDOW_DESTROY(func) escaped string: EVT_WINDOW_DESTROY(func) escaping string: Process a wxEVT_DESTROY event. escaped string: Process a wxEVT_DESTROY event. escaping string: wxWizard escaped string: wxWizard escaping string: EVT_WIZARD_PAGE_CHANGED(id, func) escaped string: EVT_WIZARD_PAGE_CHANGED(id, func) escaping string: The page has just been changed (this event cannot be vetoed). escaped string: The page has just been changed (this event cannot be vetoed). escaping string: EVT_WIZARD_PAGE_CHANGING(id, func) escaped string: EVT_WIZARD_PAGE_CHANGING(id, func) escaping string: The page is being changed (this event can be vetoed). escaped string: The page is being changed (this event can be vetoed). escaping string: EVT_WIZARD_CANCEL(id, func) escaped string: EVT_WIZARD_CANCEL(id, func) escaping string: The user attempted to cancel the wizard (this event may also be vetoed). escaped string: The user attempted to cancel the wizard (this event may also be vetoed). escaping string: EVT_WIZARD_HELP(id, func) escaped string: EVT_WIZARD_HELP(id, func) escaping string: The wizard help button was pressed. escaped string: The wizard help button was pressed. escaping string: EVT_WIZARD_FINISHED(id, func) escaped string: EVT_WIZARD_FINISHED(id, func) escaping string: The wizard finished button was pressed. escaped string: The wizard finished button was pressed. escaping string: wxWizardEvent escaped string: wxWizardEvent escaping string: EVT_WIZARD_PAGE_CHANGED(id, func) escaped string: EVT_WIZARD_PAGE_CHANGED(id, func) escaping string: The page has been just changed (this event can not be vetoed). escaped string: The page has been just changed (this event can not be vetoed). escaping string: EVT_WIZARD_PAGE_CHANGING(id, func) escaped string: EVT_WIZARD_PAGE_CHANGING(id, func) escaping string: The page is being changed (this event can be vetoed). escaped string: The page is being changed (this event can be vetoed). escaping string: EVT_WIZARD_CANCEL(id, func) escaped string: EVT_WIZARD_CANCEL(id, func) escaping string: The user attempted to cancel the wizard (this event may also be vetoed). escaped string: The user attempted to cancel the wizard (this event may also be vetoed). escaping string: EVT_WIZARD_HELP(id, func) escaped string: EVT_WIZARD_HELP(id, func) escaping string: The wizard help button was pressed. escaped string: The wizard help button was pressed. escaping string: EVT_WIZARD_FINISHED(id, func) escaped string: EVT_WIZARD_FINISHED(id, func) escaping string: The wizard finished button was pressed. escaped string: The wizard finished button was pressed. Okay