1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: control.h
|
|
|
|
// Purpose: wxControl class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
1999-03-30 11:09:48 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_CONTROL_H_
|
|
|
|
#define _WX_CONTROL_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "control.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/window.h"
|
|
|
|
#include "wx/list.h"
|
|
|
|
#include "wx/validate.h"
|
|
|
|
|
1999-12-29 19:34:38 +00:00
|
|
|
#define wxControlNameStr _T("control")
|
|
|
|
|
1998-09-18 10:19:10 +00:00
|
|
|
// General item class
|
2000-01-07 14:59:14 +00:00
|
|
|
class WXDLLEXPORT wxControl: public wxControlBase
|
1998-09-18 10:19:10 +00:00
|
|
|
{
|
1998-10-18 22:31:48 +00:00
|
|
|
DECLARE_ABSTRACT_CLASS(wxControl)
|
1999-03-30 11:09:48 +00:00
|
|
|
|
1998-09-18 10:19:10 +00:00
|
|
|
public:
|
1998-10-18 22:31:48 +00:00
|
|
|
wxControl();
|
1999-12-29 19:34:38 +00:00
|
|
|
wxControl( wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
|
|
const wxSize &size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2000-01-07 14:59:14 +00:00
|
|
|
const wxString &name = wxControlNameStr )
|
|
|
|
{
|
|
|
|
Create(parent, id, pos, size, style, validator, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxControlNameStr);
|
2000-01-06 16:47:48 +00:00
|
|
|
|
1998-10-18 22:31:48 +00:00
|
|
|
~wxControl();
|
1998-09-18 10:19:10 +00:00
|
|
|
|
1999-07-23 21:03:02 +00:00
|
|
|
// simulates the event, returns TRUE if the event was processed
|
|
|
|
virtual void Command(wxCommandEvent& WXUNUSED(event)) { }
|
|
|
|
|
|
|
|
// calls the callback and appropriate event handlers, returns TRUE if
|
|
|
|
// event was processed
|
|
|
|
virtual bool ProcessCommand(wxCommandEvent& event);
|
|
|
|
|
1998-10-18 22:31:48 +00:00
|
|
|
virtual void SetLabel(const wxString& label);
|
|
|
|
virtual wxString GetLabel() const ;
|
1998-09-18 10:19:10 +00:00
|
|
|
|
1999-07-23 21:03:02 +00:00
|
|
|
#if WXWIN_COMPATIBILITY
|
1999-03-30 11:09:48 +00:00
|
|
|
void Callback(const wxFunction function) { m_callback = function; }; // Adds callback
|
|
|
|
|
|
|
|
wxFunction GetCallback() { return m_callback; }
|
1999-07-23 21:03:02 +00:00
|
|
|
#endif // WXWIN_COMPATIBILITY
|
1998-09-18 10:19:10 +00:00
|
|
|
|
1999-03-30 11:09:48 +00:00
|
|
|
bool InSetValue() const { return m_inSetValue; }
|
1998-09-18 10:19:10 +00:00
|
|
|
|
|
|
|
protected:
|
1999-07-23 21:03:02 +00:00
|
|
|
#if WXWIN_COMPATIBILITY
|
1998-10-18 22:31:48 +00:00
|
|
|
wxFunction m_callback; // Callback associated with the window
|
1999-07-23 21:03:02 +00:00
|
|
|
#endif // WXWIN_COMPATIBILITY
|
1998-09-18 10:19:10 +00:00
|
|
|
|
1998-10-18 22:31:48 +00:00
|
|
|
bool m_inSetValue; // Motif: prevent callbacks being called while
|
|
|
|
// in SetValue
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
1998-09-18 10:19:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_CONTROL_H_
|