]> git.saurik.com Git - wxWidgets.git/blame - include/wx/palmos/stattext.h
fixed bug in Set() on DST days (patch 1097811)
[wxWidgets.git] / include / wx / palmos / stattext.h
CommitLineData
ffecfa5a
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/palmos/stattext.h
3// Purpose: wxStaticText class
e1d63b79 4// Author: William Osborne - minimal working wxPalmOS port
ffecfa5a
JS
5// Modified by:
6// Created: 10/13/04
e1d63b79 7// RCS-ID: $Id$
ffecfa5a
JS
8// Copyright: (c) William Osborne
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_STATTEXT_H_
13#define _WX_STATTEXT_H_
14
15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "stattext.h"
17#endif
18
19class WXDLLEXPORT wxStaticText : public wxStaticTextBase
20{
21public:
22 wxStaticText() { }
23
24 wxStaticText(wxWindow *parent,
25 wxWindowID id,
26 const wxString& label,
27 const wxPoint& pos = wxDefaultPosition,
28 const wxSize& size = wxDefaultSize,
29 long style = 0,
30 const wxString& name = wxStaticTextNameStr)
31 {
32 Create(parent, id, label, pos, size, style, name);
33 }
34
35 bool Create(wxWindow *parent,
36 wxWindowID id,
37 const wxString& label,
38 const wxPoint& pos = wxDefaultPosition,
39 const wxSize& size = wxDefaultSize,
40 long style = 0,
41 const wxString& name = wxStaticTextNameStr);
42
43 // override some methods to resize the window properly
44 virtual void SetLabel(const wxString& label);
45 virtual bool SetFont( const wxFont &font );
46
47protected:
48 // implement/override some base class virtuals
49 virtual wxBorder GetDefaultBorder() const;
50 virtual void DoSetSize(int x, int y, int w, int h,
51 int sizeFlags = wxSIZE_AUTO);
52 virtual wxSize DoGetBestSize() const;
53 virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const;
54
55 DECLARE_DYNAMIC_CLASS_NO_COPY(wxStaticText)
56};
57
58#endif
59 // _WX_STATTEXT_H_