2001-02-08 13:57:23 -05: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 14:57:50 -04:00
|
|
|
// License: wxWindows Licence
|
2001-02-08 13:57:23 -05: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 18:53:48 -05:00
|
|
|
#define EVT_TOGGLEBUTTON(id, fn) \
|
|
|
|
wx__DECLARE_EVT1(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, id, wxCommandEventHandler(fn))
|
2001-02-08 13:57:23 -05:00
|
|
|
|
2006-05-23 13:53:50 -04:00
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/univ/tglbtn.h"
|
|
|
|
#elif defined(__WXMSW__)
|
2001-02-08 13:57:23 -05:00
|
|
|
#include "wx/msw/tglbtn.h"
|
2006-01-22 22:27:34 -05:00
|
|
|
#elif defined(__WXGTK20__)
|
2001-02-08 13:57:23 -05:00
|
|
|
#include "wx/gtk/tglbtn.h"
|
2006-01-22 22:27:34 -05:00
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
#include "wx/gtk1/tglbtn.h"
|
2001-02-08 13:57:23 -05:00
|
|
|
# elif defined(__WXMOTIF__)
|
2003-02-12 13:20:23 -05:00
|
|
|
#include "wx/motif/tglbtn.h"
|
2004-02-21 11:38:23 -05:00
|
|
|
#elif defined(__WXMAC__)
|
|
|
|
#include "wx/mac/tglbtn.h"
|
2005-01-25 01:55:10 -05:00
|
|
|
#elif defined(__WXPALMOS__)
|
|
|
|
#include "wx/palmos/tglbtn.h"
|
2005-04-07 00:01:45 -04:00
|
|
|
#elif defined(__WXPM__)
|
|
|
|
#include "wx/os2/tglbtn.h"
|
2001-02-08 13:57:23 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // wxUSE_TOGGLEBTN
|
|
|
|
|
|
|
|
#endif // _WX_TOGGLEBUTTON_H_BASE_
|
|
|
|
|