Follow other ports with Title/Label split.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36196 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
f0f60c7c21
commit
0ab48d6405
@ -46,6 +46,10 @@ public:
|
||||
virtual ~wxTopLevelWindowPalm();
|
||||
|
||||
// implement base class pure virtuals
|
||||
|
||||
virtual void SetTitle( const wxString& title);
|
||||
virtual wxString GetTitle() const;
|
||||
|
||||
virtual void Maximize(bool maximize = true);
|
||||
virtual bool IsMaximized() const;
|
||||
virtual void Iconize(bool iconize = true);
|
||||
@ -122,4 +126,3 @@ protected:
|
||||
};
|
||||
|
||||
#endif // _WX_PALMOS_TOPLEVEL_H_
|
||||
|
||||
|
@ -53,8 +53,9 @@ public:
|
||||
const wxString& name = wxPanelNameStr);
|
||||
|
||||
// implement base class pure virtuals
|
||||
virtual void SetTitle( const wxString& title);
|
||||
virtual wxString GetTitle() const;
|
||||
|
||||
virtual void SetLabel( const wxString& label);
|
||||
virtual wxString GetLabel() const;
|
||||
|
||||
virtual void Raise();
|
||||
virtual void Lower();
|
||||
|
@ -224,6 +224,15 @@ bool wxTopLevelWindowPalm::ShowFullScreen(bool show, long style)
|
||||
// wxTopLevelWindowPalm misc
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
void wxTopLevelWindowPalm::SetTitle( const wxString& WXUNUSED(title))
|
||||
{
|
||||
}
|
||||
|
||||
wxString wxTopLevelWindowPalm::GetTitle() const
|
||||
{
|
||||
return wxEmptyString;
|
||||
}
|
||||
|
||||
void wxTopLevelWindowPalm::SetIcon(const wxIcon& icon)
|
||||
{
|
||||
}
|
||||
|
@ -317,11 +317,11 @@ void wxWindowPalm::Lower()
|
||||
{
|
||||
}
|
||||
|
||||
void wxWindowPalm::SetTitle( const wxString& title)
|
||||
void wxWindowPalm::SetLabel( const wxString& WXUNUSED(label))
|
||||
{
|
||||
}
|
||||
|
||||
wxString wxWindowPalm::GetTitle() const
|
||||
wxString wxWindowPalm::GetLabel() const
|
||||
{
|
||||
return wxEmptyString;
|
||||
}
|
||||
@ -751,5 +751,3 @@ bool wxWindowPalm::UnregisterHotKey(int hotkeyId)
|
||||
}
|
||||
|
||||
#endif // wxUSE_HOTKEY
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user