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:
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user