1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2003-01-10 23:24:44 +00:00
|
|
|
// Name: wx/msw/stattext.h
|
1998-05-20 14:12:05 +00:00
|
|
|
// Purpose: wxStaticText class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
1999-07-02 22:02:05 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef _WX_STATTEXT_H_
|
|
|
|
#define _WX_STATTEXT_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-01-31 23:49:57 +00:00
|
|
|
#pragma interface "stattext.h"
|
1998-05-20 14:12:05 +00:00
|
|
|
#endif
|
|
|
|
|
2001-12-19 01:27:26 +00:00
|
|
|
class WXDLLEXPORT wxStaticText : public wxStaticTextBase
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
1999-01-31 23:49:57 +00:00
|
|
|
public:
|
|
|
|
wxStaticText() { }
|
1999-07-02 22:02:05 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
wxStaticText(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxStaticTextNameStr)
|
1999-01-31 23:49:57 +00:00
|
|
|
{
|
|
|
|
Create(parent, id, label, pos, size, style, name);
|
|
|
|
}
|
1999-07-02 22:02:05 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxStaticTextNameStr);
|
1999-07-02 22:02:05 +00:00
|
|
|
|
2001-12-19 01:27:26 +00:00
|
|
|
// override some methods to resize the window properly
|
|
|
|
virtual void SetLabel(const wxString& label);
|
|
|
|
virtual bool SetFont( const wxFont &font );
|
1999-02-22 11:01:13 +00:00
|
|
|
|
|
|
|
protected:
|
2003-01-10 23:24:44 +00:00
|
|
|
// implement/override some base class virtuals
|
2001-12-19 01:27:26 +00:00
|
|
|
virtual void DoSetSize(int x, int y, int w, int h,
|
|
|
|
int sizeFlags = wxSIZE_AUTO);
|
1999-11-19 21:01:20 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
2003-01-10 23:24:44 +00:00
|
|
|
virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const;
|
2001-12-19 01:27:26 +00:00
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxStaticText)
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 23:52:45 +00:00
|
|
|
// _WX_STATTEXT_H_
|