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);
};
#endif // _WX_PALMOS_TOPLEVEL_H_
-
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();
// wxTopLevelWindowPalm misc
// ----------------------------------------------------------------------------
+void wxTopLevelWindowPalm::SetTitle( const wxString& WXUNUSED(title))
+{
+}
+
+wxString wxTopLevelWindowPalm::GetTitle() const
+{
+ return wxEmptyString;
+}
+
void wxTopLevelWindowPalm::SetIcon(const wxIcon& icon)
{
}
{
}
-void wxWindowPalm::SetTitle( const wxString& title)
+void wxWindowPalm::SetLabel( const wxString& WXUNUSED(label))
{
}
-wxString wxWindowPalm::GetTitle() const
+wxString wxWindowPalm::GetLabel() const
{
return wxEmptyString;
}
}
#endif // wxUSE_HOTKEY
-
-