mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 11:48:36 +12:00
This commit is contained in:
parent
de070bf485
commit
a90b5cf37a
1998 changed files with 1034301 additions and 0 deletions
51
wxWidgets/include/wx/tglbtn.h
Normal file
51
wxWidgets/include/wx/tglbtn.h
Normal file
|
@ -0,0 +1,51 @@
|
|||
/////////////////////////////////////////////////////////////////////////////
|
||||
// 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: tglbtn.h 39293 2006-05-23 17:53:50Z JS $
|
||||
// Copyright: (c) 2000 Johnny C. Norris II
|
||||
// License: wxWindows Licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#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()
|
||||
|
||||
#define EVT_TOGGLEBUTTON(id, fn) \
|
||||
wx__DECLARE_EVT1(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, id, wxCommandEventHandler(fn))
|
||||
|
||||
#if defined(__WXUNIVERSAL__)
|
||||
#include "wx/univ/tglbtn.h"
|
||||
#elif defined(__WXMSW__)
|
||||
#include "wx/msw/tglbtn.h"
|
||||
#elif defined(__WXGTK20__)
|
||||
#include "wx/gtk/tglbtn.h"
|
||||
#elif defined(__WXGTK__)
|
||||
#include "wx/gtk1/tglbtn.h"
|
||||
# elif defined(__WXMOTIF__)
|
||||
#include "wx/motif/tglbtn.h"
|
||||
#elif defined(__WXMAC__)
|
||||
#include "wx/mac/tglbtn.h"
|
||||
#elif defined(__WXPALMOS__)
|
||||
#include "wx/palmos/tglbtn.h"
|
||||
#elif defined(__WXPM__)
|
||||
#include "wx/os2/tglbtn.h"
|
||||
#endif
|
||||
|
||||
#endif // wxUSE_TOGGLEBTN
|
||||
|
||||
#endif // _WX_TOGGLEBUTTON_H_BASE_
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue