1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: statbox.h
|
|
|
|
// Purpose: wxStaticBox 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-11-15 01:19:46 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef _WX_STATBOX_H_
|
|
|
|
#define _WX_STATBOX_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-11-15 01:19:46 +00:00
|
|
|
#pragma interface "statbox.h"
|
1998-05-20 14:12:05 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
|
1999-06-10 18:12:13 +00:00
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxStaticBoxNameStr;
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
// Group box
|
1999-01-31 23:30:33 +00:00
|
|
|
class WXDLLEXPORT wxStaticBox : public wxControl
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
1999-01-31 23:30:33 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxStaticBox)
|
1999-07-02 22:02:05 +00:00
|
|
|
|
1999-01-31 23:30:33 +00:00
|
|
|
public:
|
1999-02-22 11:01:13 +00:00
|
|
|
wxStaticBox() { }
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1999-01-31 23:30:33 +00:00
|
|
|
wxStaticBox(wxWindow *parent, wxWindowID id,
|
1999-07-22 23:39:47 +00:00
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxStaticBoxNameStr)
|
1999-01-31 23:30:33 +00:00
|
|
|
{
|
|
|
|
Create(parent, id, label, pos, size, style, name);
|
|
|
|
}
|
1999-07-02 22:02:05 +00:00
|
|
|
|
1999-01-31 23:30:33 +00:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
1999-07-22 23:39:47 +00:00
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxStaticBoxNameStr);
|
1999-07-02 22:02:05 +00:00
|
|
|
|
|
|
|
// implementation from now on
|
|
|
|
// --------------------------
|
|
|
|
|
1999-01-31 23:30:33 +00:00
|
|
|
virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1999-01-31 23:30:33 +00:00
|
|
|
// overriden base class virtuals
|
|
|
|
virtual bool AcceptsFocus() const { return FALSE; }
|
1999-07-02 22:02:05 +00:00
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
protected:
|
1999-11-19 21:01:20 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 23:52:45 +00:00
|
|
|
// _WX_STATBOX_H_
|