2004-03-23 12:35:05 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: stattext.h
|
|
|
|
// Purpose: wxStaticText class
|
|
|
|
// Author: Stefan Csomor
|
|
|
|
// Modified by:
|
|
|
|
// Created: 1998-01-01
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Stefan Csomor
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2004-03-23 12:35:05 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_STATTEXT_H_
|
|
|
|
#define _WX_STATTEXT_H_
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxStaticText: public wxStaticTextBase
|
|
|
|
{
|
2004-03-27 02:15:02 -05:00
|
|
|
public:
|
|
|
|
wxStaticText() { }
|
2004-03-23 12:35:05 -05:00
|
|
|
|
2004-03-27 02:15:02 -05:00
|
|
|
wxStaticText(wxWindow *parent, wxWindowID id,
|
2004-03-23 12:35:05 -05:00
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxStaticTextNameStr)
|
|
|
|
{
|
|
|
|
Create(parent, id, label, pos, size, style, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxStaticTextNameStr);
|
|
|
|
|
|
|
|
// accessors
|
|
|
|
void SetLabel( const wxString &str ) ;
|
2004-06-21 18:58:13 -04:00
|
|
|
bool SetFont( const wxFont &font );
|
2004-03-23 12:35:05 -05:00
|
|
|
|
2006-02-08 16:47:09 -05:00
|
|
|
virtual bool AcceptsFocus() const { return FALSE; }
|
|
|
|
|
2004-03-27 02:15:02 -05:00
|
|
|
protected :
|
|
|
|
|
2007-04-01 10:13:15 -04:00
|
|
|
virtual wxString DoGetLabel() const;
|
|
|
|
virtual void DoSetLabel(const wxString& str);
|
|
|
|
|
2004-03-23 12:35:05 -05:00
|
|
|
virtual wxSize DoGetBestSize() const ;
|
|
|
|
|
2004-03-27 02:15:02 -05:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxStaticText)
|
2004-03-23 12:35:05 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_STATTEXT_H_
|