Add missing interface items for Phoenix
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73817 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -4665,8 +4665,6 @@ wxEventType wxEVT_COMMAND_KILL_FOCUS;
|
|||||||
wxEventType wxEVT_COMMAND_ENTER;
|
wxEventType wxEVT_COMMAND_ENTER;
|
||||||
wxEventType wxEVT_HELP;
|
wxEventType wxEVT_HELP;
|
||||||
wxEventType wxEVT_DETAILED_HELP;
|
wxEventType wxEVT_DETAILED_HELP;
|
||||||
wxEventType wxEVT_COMMAND_TEXT_UPDATED;
|
|
||||||
wxEventType wxEVT_COMMAND_TEXT_ENTER;
|
|
||||||
wxEventType wxEVT_COMMAND_TOOL_CLICKED;
|
wxEventType wxEVT_COMMAND_TOOL_CLICKED;
|
||||||
wxEventType wxEVT_WINDOW_MODAL_DIALOG_CLOSED;
|
wxEventType wxEVT_WINDOW_MODAL_DIALOG_CLOSED;
|
||||||
|
|
||||||
|
@@ -1557,6 +1557,33 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
wxEventType wxEVT_COMMAND_TEXT_UPDATED;
|
||||||
|
wxEventType wxEVT_COMMAND_TEXT_ENTER;
|
||||||
|
wxEventType wxEVT_COMMAND_TEXT_URL;
|
||||||
|
wxEventType wxEVT_COMMAND_TEXT_MAXLEN;
|
||||||
|
|
||||||
|
|
||||||
|
class wxTextUrlEvent : public wxCommandEvent
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
wxTextUrlEvent(int winid, const wxMouseEvent& evtMouse,
|
||||||
|
long start, long end);
|
||||||
|
|
||||||
|
wxTextUrlEvent(const wxTextUrlEvent& event);
|
||||||
|
|
||||||
|
// get the mouse event which happened over the URL
|
||||||
|
const wxMouseEvent& GetMouseEvent() const;
|
||||||
|
|
||||||
|
// get the start of the URL
|
||||||
|
long GetURLStart() const;
|
||||||
|
|
||||||
|
// get the end of the URL
|
||||||
|
long GetURLEnd() const;
|
||||||
|
|
||||||
|
virtual wxEvent *Clone() const;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@class wxStreamToTextRedirector
|
@class wxStreamToTextRedirector
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user