2001-02-08 18:57:23 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/tglbtn.h
|
|
|
|
// Purpose: This dummy header includes the proper header file for the
|
|
|
|
// system we're compiling under.
|
|
|
|
// Author: John Norris, minor changes by Axel Schlueter
|
|
|
|
// Modified by:
|
|
|
|
// Created: 08.02.01
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2000 Johnny C. Norris II
|
2005-05-04 18:57:50 +00:00
|
|
|
// License: wxWindows Licence
|
2001-02-08 18:57:23 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_TOGGLEBUTTON_H_BASE_
|
|
|
|
#define _WX_TOGGLEBUTTON_H_BASE_
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_TOGGLEBTN
|
|
|
|
|
|
|
|
#include "wx/event.h"
|
|
|
|
#include "wx/control.h" // base class
|
|
|
|
|
|
|
|
BEGIN_DECLARE_EVENT_TYPES()
|
|
|
|
DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, 19)
|
|
|
|
END_DECLARE_EVENT_TYPES()
|
|
|
|
|
2005-02-14 23:53:48 +00:00
|
|
|
#define EVT_TOGGLEBUTTON(id, fn) \
|
|
|
|
wx__DECLARE_EVT1(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, id, wxCommandEventHandler(fn))
|
2001-02-08 18:57:23 +00:00
|
|
|
|
2006-05-23 17:53:50 +00:00
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/univ/tglbtn.h"
|
|
|
|
#elif defined(__WXMSW__)
|
2001-02-08 18:57:23 +00:00
|
|
|
#include "wx/msw/tglbtn.h"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK20__)
|
2001-02-08 18:57:23 +00:00
|
|
|
#include "wx/gtk/tglbtn.h"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
#include "wx/gtk1/tglbtn.h"
|
2001-02-08 18:57:23 +00:00
|
|
|
# elif defined(__WXMOTIF__)
|
2003-02-12 18:20:23 +00:00
|
|
|
#include "wx/motif/tglbtn.h"
|
2004-02-21 16:38:23 +00:00
|
|
|
#elif defined(__WXMAC__)
|
|
|
|
#include "wx/mac/tglbtn.h"
|
2005-01-25 06:55:10 +00:00
|
|
|
#elif defined(__WXPALMOS__)
|
|
|
|
#include "wx/palmos/tglbtn.h"
|
2005-04-07 04:01:45 +00:00
|
|
|
#elif defined(__WXPM__)
|
|
|
|
#include "wx/os2/tglbtn.h"
|
2001-02-08 18:57:23 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // wxUSE_TOGGLEBTN
|
|
|
|
|
|
|
|
#endif // _WX_TOGGLEBUTTON_H_BASE_
|
|
|
|
|