merge of RTL changes (with many modifications) from SOC2006_RTL branch
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40994 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -37,6 +37,11 @@ public:
|
||||
virtual void SetLabelTop( size_t pos, const wxString& label );
|
||||
virtual wxString GetLabelTop( size_t pos ) const;
|
||||
|
||||
void SetLayoutDirection(wxLayoutDirection dir);
|
||||
wxLayoutDirection GetLayoutDirection() const;
|
||||
|
||||
void Attach(wxFrame *frame);
|
||||
|
||||
// implementation only from now on
|
||||
void SetInvokingWindow( wxWindow *win );
|
||||
void UnsetInvokingWindow( wxWindow *win );
|
||||
@@ -69,6 +74,11 @@ public:
|
||||
|
||||
virtual ~wxMenu();
|
||||
|
||||
void Attach(wxMenuBarBase *menubar);
|
||||
|
||||
void SetLayoutDirection(const wxLayoutDirection dir);
|
||||
wxLayoutDirection GetLayoutDirection() const;
|
||||
|
||||
// TODO: virtual void SetTitle(const wxString& title);
|
||||
|
||||
// implementation
|
||||
|
@@ -113,6 +113,9 @@ public:
|
||||
virtual void AddChild( wxWindowBase *child );
|
||||
virtual void RemoveChild( wxWindowBase *child );
|
||||
|
||||
virtual void SetLayoutDirection(wxLayoutDirection dir);
|
||||
virtual wxLayoutDirection GetLayoutDirection() const;
|
||||
|
||||
// currently wxGTK2-only
|
||||
void SetDoubleBuffered(bool on);
|
||||
|
||||
@@ -172,6 +175,10 @@ public:
|
||||
// base version just does GetEventHandler()->ProcessEvent()
|
||||
virtual bool GTKProcessEvent(wxEvent& event) const;
|
||||
|
||||
// Map GTK widget direction of the given widget to/from wxLayoutDirection
|
||||
static wxLayoutDirection GTKGetLayout(GtkWidget *widget);
|
||||
static void GTKSetLayout(GtkWidget *widget, wxLayoutDirection dir);
|
||||
|
||||
protected:
|
||||
// Override GTKWidgetNeedsMnemonic and return true if your
|
||||
// needs to set its mnemonic widget, such as for a
|
||||
|
Reference in New Issue
Block a user