Interface tweaks and fixes for Phoenix
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70061 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -311,7 +311,6 @@ public:
|
||||
virtual int GetSelection() const;
|
||||
virtual void GetSelection(long *from, long *to) const;
|
||||
virtual void SetSelection(int n);
|
||||
virtual void SetSelection(long from, long to);
|
||||
virtual int FindString(const wxString& s, bool bCase = false) const;
|
||||
virtual wxString GetString(unsigned int n) const;
|
||||
virtual wxString GetStringSelection() const;
|
||||
|
@@ -22,6 +22,11 @@ class wxPopupWindow: public wxNonOwnedWindow
|
||||
{
|
||||
public:
|
||||
|
||||
/**
|
||||
Default constructor
|
||||
*/
|
||||
wxPopupWindow();
|
||||
|
||||
/**
|
||||
Constructor
|
||||
*/
|
||||
@@ -67,6 +72,11 @@ public:
|
||||
class wxPopupTransientWindow : public wxPopupWindow
|
||||
{
|
||||
public:
|
||||
/**
|
||||
Default constructor.
|
||||
*/
|
||||
wxPopupTransientWindow();
|
||||
|
||||
/**
|
||||
Constructor.
|
||||
*/
|
||||
@@ -96,4 +106,12 @@ public:
|
||||
(which consists in dismissing it if the mouse is clicked outside it).
|
||||
*/
|
||||
virtual bool ProcessLeftDown(wxMouseEvent& event);
|
||||
|
||||
protected:
|
||||
/**
|
||||
This is called when the popup is disappeared because of anything
|
||||
else but direct call to Dismiss().
|
||||
*/
|
||||
virtual void OnDismiss();
|
||||
|
||||
};
|
||||
|
@@ -40,9 +40,9 @@ public:
|
||||
default.
|
||||
@param copyright Copyright string, none by default.
|
||||
*/
|
||||
wxVersionInfo(const wxString& name,
|
||||
int major,
|
||||
int minor,
|
||||
wxVersionInfo(const wxString& name = wxString(),
|
||||
int major = 0,
|
||||
int minor = 0,
|
||||
int micro = 0,
|
||||
const wxString& description = wxString(),
|
||||
const wxString& copyright = wxString());
|
||||
|
Reference in New Issue
Block a user