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
|
1998-05-20 14:01:55 +00:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#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
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxControl: public wxWindow
|
|
|
|
{
|
1998-07-23 16:05:14 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxControl)
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-07-23 16:05:14 +00:00
|
|
|
public:
|
|
|
|
wxControl();
|
|
|
|
wxControl( wxWindow *parent, wxWindowID id,
|
1998-05-20 14:01:55 +00:00
|
|
|
const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
|
1998-07-04 15:17:59 +00:00
|
|
|
long style = 0, const wxString &name = wxPanelNameStr );
|
1998-07-23 16:05:14 +00:00
|
|
|
|
|
|
|
virtual void Command( wxCommandEvent &event );
|
|
|
|
|
|
|
|
// this function will filter out '&' characters and will put the accelerator
|
|
|
|
// char (the one immediately after '&') into m_chAccel (@@ not yet)
|
|
|
|
virtual void SetLabel( const wxString &label );
|
|
|
|
virtual wxString GetLabel() const;
|
1998-12-17 08:40:34 +00:00
|
|
|
|
1998-07-23 16:05:14 +00:00
|
|
|
protected:
|
|
|
|
wxString m_label;
|
1998-09-06 20:27:21 +00:00
|
|
|
char m_chAccel; // enabled to avoid breaking binary compatibility later on
|
1998-12-17 08:40:34 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKCONTROLH__
|