1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: control.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 10:56:58 +00:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling, Julian Smart
|
1999-07-26 23:02:32 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKCONTROLH__
|
|
|
|
#define __GTKCONTROLH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/list.h"
|
|
|
|
#include "wx/window.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxControl;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxControl
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1999-10-18 15:45:28 +00:00
|
|
|
class wxControl : public wxControlBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1998-07-23 16:05:14 +00:00
|
|
|
public:
|
1999-07-26 23:02:32 +00:00
|
|
|
wxControl();
|
|
|
|
wxControl( wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
|
|
const wxSize &size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString &name = wxPanelNameStr );
|
1998-07-23 16:05:14 +00:00
|
|
|
|
|
|
|
// this function will filter out '&' characters and will put the accelerator
|
1999-07-26 23:02:32 +00:00
|
|
|
// char (the one immediately after '&') into m_chAccel (TODO not yet)
|
|
|
|
virtual void SetLabel( const wxString &label );
|
|
|
|
virtual wxString GetLabel() const;
|
|
|
|
|
1998-07-23 16:05:14 +00:00
|
|
|
protected:
|
1999-07-26 23:02:32 +00:00
|
|
|
wxString m_label;
|
|
|
|
char m_chAccel; // enabled to avoid breaking binary compatibility later on
|
1999-10-11 10:05:36 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxControl)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKCONTROLH__
|