X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ffecfa5aeb540b54914739dbb8603edbbd4c00a0..99d21c0e1f8d87570702c52dccd3ad698f0a0931:/src/palmos/stattext.cpp diff --git a/src/palmos/stattext.cpp b/src/palmos/stattext.cpp index 1d2724b6a3..413c259f14 100644 --- a/src/palmos/stattext.cpp +++ b/src/palmos/stattext.cpp @@ -1,35 +1,32 @@ ///////////////////////////////////////////////////////////////////////////// // Name: src/palmos/stattext.cpp // Purpose: wxStaticText -// Author: William Osborne -// Modified by: +// Author: William Osborne - minimal working wxPalmOS port +// Modified by: Wlodzimierz ABX Skiba - native wxStaticText implementation // Created: 10/13/04 -// RCS-ID: $Id: -// Copyright: (c) William Osborne +// RCS-ID: $Id$ +// Copyright: (c) William Osborne, Wlodzimierz Skiba // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma implementation "stattext.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" #ifdef __BORLANDC__ -#pragma hdrstop + #pragma hdrstop #endif #if wxUSE_STATTEXT +#include "wx/stattext.h" + #ifndef WX_PRECOMP -#include "wx/event.h" -#include "wx/app.h" -#include "wx/brush.h" + #include "wx/event.h" + #include "wx/app.h" + #include "wx/brush.h" #endif -#include "wx/stattext.h" -#include "wx/palmos/private.h" +#include #if wxUSE_EXTENDED_RTTI WX_DEFINE_FLAGS( wxStaticTextStyle ) @@ -43,7 +40,7 @@ wxBEGIN_FLAGS( wxStaticTextStyle ) wxFLAGS_MEMBER(wxBORDER_RAISED) wxFLAGS_MEMBER(wxBORDER_STATIC) wxFLAGS_MEMBER(wxBORDER_NONE) - + // old style border flags wxFLAGS_MEMBER(wxSIMPLE_BORDER) wxFLAGS_MEMBER(wxSUNKEN_BORDER) @@ -79,7 +76,7 @@ wxEND_PROPERTIES_TABLE() wxBEGIN_HANDLERS_TABLE(wxStaticText) wxEND_HANDLERS_TABLE() -wxCONSTRUCTOR_6( wxStaticText , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle ) +wxCONSTRUCTOR_6( wxStaticText , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle ) #else IMPLEMENT_DYNAMIC_CLASS(wxStaticText, wxControl) #endif @@ -92,7 +89,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 +110,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;