home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
wxos2233.zip
/
wxOS2-2_3_3.zip
/
wxWindows-2.3.3
/
include
/
wx
/
os2
/
stattext.h
< prev
next >
Wrap
C/C++ Source or Header
|
2002-01-14
|
2KB
|
80 lines
/////////////////////////////////////////////////////////////////////////////
// Name: stattext.h
// Purpose: wxStaticText class
// Author: David Webster
// Modified by:
// Created: 10/17/99
// RCS-ID: $Id: STATTEXT.H,v 1.9 2002/01/09 23:16:22 DW Exp $
// Copyright: (c) David Webster
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_STATTEXT_H_
#define _WX_STATTEXT_H_
#ifdef __GNUG__
#pragma interface "stattext.h"
#endif
#include "wx/control.h"
class WXDLLEXPORT wxStaticText : public wxStaticTextBase
{
public:
inline wxStaticText() { }
inline wxStaticText( wxWindow* pParent
,wxWindowID vId
,const wxString& rsLabel
,const wxPoint& rPos = wxDefaultPosition
,const wxSize& rSize = wxDefaultSize
,long lStyle = 0L
,const wxString& rsName = wxStaticTextNameStr
)
{
Create(pParent, vId, rsLabel, rPos, rSize, lStyle, rsName);
}
bool Create( wxWindow* pParent
,wxWindowID vId
,const wxString& rsLabel
,const wxPoint& rPos = wxDefaultPosition
,const wxSize& rSize = wxDefaultSize
,long lStyle = 0L
,const wxString& rsName = wxStaticTextNameStr
);
//
// Accessors
//
virtual void SetLabel(const wxString& rsLabel);
virtual bool SetFont(const wxFont &rFont);
//
// Overriden base class virtuals
//
virtual bool AcceptsFocus() const { return FALSE; }
//
// Callbacks
//
virtual MRESULT OS2WindowProc( WXUINT uMsg
,WXWPARAM wParam
,WXLPARAM lParam
);
protected:
virtual void DoSetSize( int nX
,int nY
,int nWidth
,int nHeight
,int nSizeFlags = wxSIZE_AUTO
);
virtual wxSize DoGetBestSize(void) const;
private:
DECLARE_DYNAMIC_CLASS(wxStaticText)
}; // end of CLASS wxStaticText
#endif
// _WX_STATTEXT_H_