mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
d14efe561b
long become wxWidgets 2.9.2, which in turn is expected to be the last 2.9 release before the 3.0 stable release. Since the full wxWidgets distribution is rather large, I have imported only the parts that we use, on a subdirectory basis: art include/wx/*.* include/wx/aui include/wx/cocoa include/wx/generic include/wx/gtk include/wx/meta include/wx/msw include/wx/osx include/wx/persist include/wx/private include/wx/protocol include/wx/unix src/aui src/common src/generic src/gtk src/msw src/osx src/unix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7380 8ced0084-cf51-0410-be5f-012b33b47a6e
48 lines
1.8 KiB
C++
48 lines
1.8 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/splitter.h
|
|
// Purpose: Base header for wxSplitterWindow
|
|
// Author: Julian Smart
|
|
// Modified by:
|
|
// Created:
|
|
// RCS-ID: $Id: splitter.h 58718 2009-02-07 18:59:25Z VZ $
|
|
// Copyright: (c) Julian Smart
|
|
// Licence: wxWindows Licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_SPLITTER_H_BASE_
|
|
#define _WX_SPLITTER_H_BASE_
|
|
|
|
#include "wx/event.h"
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxSplitterWindow flags
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#define wxSP_NOBORDER 0x0000
|
|
#define wxSP_THIN_SASH 0x0000 // NB: the default is 3D sash
|
|
#define wxSP_NOSASH 0x0010
|
|
#define wxSP_PERMIT_UNSPLIT 0x0040
|
|
#define wxSP_LIVE_UPDATE 0x0080
|
|
#define wxSP_3DSASH 0x0100
|
|
#define wxSP_3DBORDER 0x0200
|
|
#define wxSP_NO_XP_THEME 0x0400
|
|
#define wxSP_BORDER wxSP_3DBORDER
|
|
#define wxSP_3D (wxSP_3DBORDER | wxSP_3DSASH)
|
|
|
|
#if WXWIN_COMPATIBILITY_2_6
|
|
// obsolete styles, don't do anything
|
|
#define wxSP_SASH_AQUA 0
|
|
#define wxSP_FULLSASH 0
|
|
#endif // WXWIN_COMPATIBILITY_2_6
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxSplitterEvent;
|
|
|
|
wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, wxSplitterEvent );
|
|
wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, wxSplitterEvent );
|
|
wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, wxSplitterEvent );
|
|
wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_SPLITTER_UNSPLIT, wxSplitterEvent );
|
|
|
|
#include "wx/generic/splitter.h"
|
|
|
|
#endif // _WX_SPLITTER_H_BASE_
|