X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e273151278d28cceefe6eee8c49bc6915306805d..1d63de4a455bde7bad81cb34724cb1df3219cd26:/src/palmos/stattext.cpp diff --git a/src/palmos/stattext.cpp b/src/palmos/stattext.cpp index 38626a5762..61ec4eb58c 100644 --- a/src/palmos/stattext.cpp +++ b/src/palmos/stattext.cpp @@ -2,10 +2,10 @@ // Name: src/palmos/stattext.cpp // Purpose: wxStaticText // Author: William Osborne - minimal working wxPalmOS port -// Modified by: +// Modified by: Wlodzimierz ABX Skiba - native wxStaticText implementation // Created: 10/13/04 // RCS-ID: $Id$ -// Copyright: (c) William Osborne +// Copyright: (c) William Osborne, Wlodzimierz Skiba // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -29,7 +29,6 @@ #endif #include "wx/stattext.h" -#include "wx/palmos/private.h" #if wxUSE_EXTENDED_RTTI WX_DEFINE_FLAGS( wxStaticTextStyle ) @@ -92,7 +91,20 @@ bool wxStaticText::Create(wxWindow *parent, long style, const wxString& name) { - return false; + if(!wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name)) + return false; + + // note that wxALIGN_LEFT is equal to 0 so we shouldn't + // test for it using & operator + + JustificationType align = leftAlign; + + if ( style & wxALIGN_CENTRE ) + align = centerAlign ; + else if ( style & wxALIGN_RIGHT ) + align = rightAlign; + + return wxControl::PalmCreateField(label, pos, size, false, false, align); } wxBorder wxStaticText::GetDefaultBorder() const @@ -100,25 +112,11 @@ wxBorder wxStaticText::GetDefaultBorder() const return wxBORDER_NONE; } -WXDWORD wxStaticText::MSWGetStyle(long style, WXDWORD *exstyle) const -{ - return 0; -} - wxSize wxStaticText::DoGetBestSize() const { return wxSize(0,0); } -void wxStaticText::DoSetSize(int x, int y, int w, int h, int sizeFlags) -{ -} - -void wxStaticText::SetLabel(const wxString& label) -{ -} - - bool wxStaticText::SetFont(const wxFont& font) { return false;