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:
Włodzimierz Skiba 2005-11-18 18:34:15 +00:00
parent f0f60c7c21
commit 0ab48d6405
4 changed files with 18 additions and 7 deletions

View File

@ -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_

View File

@ -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();

View File

@ -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)
{
}

View File

@ -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