2009-09-08 12:08:10 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-08-20 14:34:48 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
2009-08-20 14:34:48 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-08-20 14:34:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2010-06-04 19:50:31 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxGuiTools.h
|
|
|
|
//
|
|
|
|
// This file is meant to contain utility classes for users of the wxWidgets library.
|
|
|
|
// All classes in this file are dependent on wxBase and wxCore libraries! Meaning
|
|
|
|
// you will have to use wxCore header files and link against wxCore (GUI) to build
|
|
|
|
// them. For tools which require only wxBase, see wxBaseTools.h
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2009-11-01 09:27:16 +00:00
|
|
|
#if wxUSE_GUI
|
|
|
|
|
2009-08-20 14:34:48 +00:00
|
|
|
#include "Dependencies.h"
|
2009-11-01 09:27:16 +00:00
|
|
|
#include "ScopedPtr.h"
|
|
|
|
#include <stack>
|
2009-08-20 14:34:48 +00:00
|
|
|
|
2009-11-14 08:36:57 +00:00
|
|
|
#include <wx/wx.h>
|
|
|
|
|
2009-11-18 07:53:02 +00:00
|
|
|
class pxStaticText;
|
2009-11-20 03:26:10 +00:00
|
|
|
class pxStaticHeading;
|
2009-11-18 07:53:02 +00:00
|
|
|
class pxCheckBox;
|
2010-01-04 20:55:47 +00:00
|
|
|
class wxSpinCtrl;
|
2009-11-18 07:53:02 +00:00
|
|
|
|
2010-06-04 19:50:31 +00:00
|
|
|
namespace pxSizerFlags
|
|
|
|
{
|
|
|
|
static const int StdPadding = 4;
|
|
|
|
|
|
|
|
extern wxSizerFlags StdSpace();
|
|
|
|
extern wxSizerFlags StdCenter();
|
|
|
|
extern wxSizerFlags StdExpand();
|
|
|
|
extern wxSizerFlags TopLevelBox();
|
|
|
|
extern wxSizerFlags SubGroup();
|
|
|
|
extern wxSizerFlags StdButton();
|
|
|
|
extern wxSizerFlags Checkbox();
|
|
|
|
};
|
|
|
|
|
2009-11-19 05:08:24 +00:00
|
|
|
#define wxSF wxSizerFlags()
|
|
|
|
|
2009-11-20 03:26:10 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// pxAlignment / pxStretchType
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// These are full blown class types instead of enumerations because wxSizerFlags has an
|
|
|
|
// implicit conversion from integer (silly design flaw creating more work for me!)
|
|
|
|
//
|
|
|
|
struct pxAlignmentType
|
|
|
|
{
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Centre,
|
|
|
|
Center = Centre,
|
|
|
|
Middle,
|
|
|
|
Left,
|
|
|
|
Right,
|
|
|
|
Top,
|
|
|
|
Bottom
|
|
|
|
};
|
|
|
|
|
|
|
|
int intval;
|
|
|
|
|
|
|
|
wxSizerFlags Apply( wxSizerFlags flags=wxSizerFlags() ) const;
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-12-14 12:18:55 +00:00
|
|
|
wxSizerFlags operator& ( const wxSizerFlags& _flgs ) const
|
2009-11-20 03:26:10 +00:00
|
|
|
{
|
2009-12-14 12:18:55 +00:00
|
|
|
return Apply( _flgs );
|
2009-11-20 03:26:10 +00:00
|
|
|
}
|
|
|
|
|
2010-06-04 08:00:19 +00:00
|
|
|
wxSizerFlags Expand() const
|
|
|
|
{
|
|
|
|
return Apply().Expand();
|
|
|
|
}
|
|
|
|
|
2009-12-14 12:18:55 +00:00
|
|
|
wxSizerFlags Border( int dir, int padding ) const
|
2009-11-20 03:26:10 +00:00
|
|
|
{
|
2009-12-14 12:18:55 +00:00
|
|
|
return Apply().Border( dir, padding );
|
|
|
|
}
|
|
|
|
|
|
|
|
wxSizerFlags Proportion( int prop ) const
|
|
|
|
{
|
|
|
|
return Apply().Proportion( intval );
|
|
|
|
}
|
|
|
|
|
|
|
|
operator wxSizerFlags() const
|
|
|
|
{
|
|
|
|
return Apply();
|
2009-11-20 03:26:10 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pxStretchType
|
|
|
|
{
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
Shrink,
|
|
|
|
Expand,
|
|
|
|
Shaped,
|
|
|
|
ReserveHidden,
|
|
|
|
FixedMinimum
|
|
|
|
};
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-11-20 03:26:10 +00:00
|
|
|
int intval;
|
|
|
|
|
|
|
|
wxSizerFlags Apply( wxSizerFlags flags=wxSizerFlags() ) const;
|
|
|
|
|
2009-12-14 12:18:55 +00:00
|
|
|
wxSizerFlags operator& ( const wxSizerFlags& _flgs ) const
|
|
|
|
{
|
|
|
|
return Apply( _flgs );
|
|
|
|
}
|
|
|
|
|
|
|
|
wxSizerFlags Border( int dir, int padding ) const
|
|
|
|
{
|
|
|
|
return Apply().Border( dir, padding );
|
|
|
|
}
|
|
|
|
|
|
|
|
wxSizerFlags Proportion( int prop ) const
|
|
|
|
{
|
|
|
|
return Apply().Proportion( intval );
|
|
|
|
}
|
|
|
|
|
2009-11-20 03:26:10 +00:00
|
|
|
operator wxSizerFlags() const
|
|
|
|
{
|
|
|
|
return Apply();
|
|
|
|
}
|
2009-12-14 12:18:55 +00:00
|
|
|
};
|
|
|
|
|
2010-03-05 14:24:44 +00:00
|
|
|
static __forceinline wxSizerFlags pxProportion( int prop )
|
2009-12-14 12:18:55 +00:00
|
|
|
{
|
2010-03-05 14:24:44 +00:00
|
|
|
return wxSizerFlags( prop );
|
|
|
|
}
|
2010-01-31 02:21:58 +00:00
|
|
|
|
2010-06-04 19:50:31 +00:00
|
|
|
static __forceinline wxSizerFlags pxBorder( int dir=wxALL, int pad=pxSizerFlags::StdPadding )
|
2010-03-05 14:24:44 +00:00
|
|
|
{
|
|
|
|
return wxSizerFlags().Border( dir, pad );
|
|
|
|
}
|
2010-01-31 02:21:58 +00:00
|
|
|
|
2010-03-05 14:24:44 +00:00
|
|
|
class pxStretchSpacer
|
2010-01-31 02:21:58 +00:00
|
|
|
{
|
|
|
|
public:
|
2010-03-05 14:24:44 +00:00
|
|
|
int proportion;
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-03-05 14:24:44 +00:00
|
|
|
pxStretchSpacer( int prop=0 )
|
2009-12-14 12:18:55 +00:00
|
|
|
{
|
2010-03-05 14:24:44 +00:00
|
|
|
proportion = prop;
|
2009-12-14 12:18:55 +00:00
|
|
|
}
|
2009-11-20 03:26:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern const pxAlignmentType
|
|
|
|
pxCentre, // Horizontal centered alignment
|
|
|
|
pxCenter,
|
|
|
|
pxMiddle, // vertical centered alignment
|
|
|
|
|
|
|
|
pxAlignLeft,
|
|
|
|
pxAlignRight,
|
|
|
|
pxAlignTop,
|
|
|
|
pxAlignBottom;
|
|
|
|
|
|
|
|
extern const pxStretchType
|
|
|
|
pxShrink,
|
|
|
|
pxExpand,
|
|
|
|
pxShaped,
|
|
|
|
pxReserveHidden,
|
|
|
|
pxFixedMinimum;
|
|
|
|
|
2009-11-19 05:08:24 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// pxWindowAndFlags
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// This struct is a go-between for combining windows and sizer flags in "neat" fashion.
|
|
|
|
// To create the struct, use the | operator, like so:
|
|
|
|
//
|
|
|
|
// myPanel | wxSizerFlags().Expand()
|
|
|
|
//
|
|
|
|
// Implementation Note: This struct is a template as it allows us to use a special
|
|
|
|
// version of the += operator that retains the type information of the window, in case
|
|
|
|
// the window implements its own += overloads (one example is pxStaticText). Without the
|
|
|
|
// template, the type of the window would only be known as "wxWindow" when it's added to the
|
|
|
|
// sizer, and would thus fail to invoke the correct operator overload.
|
|
|
|
//
|
|
|
|
template< typename WinType >
|
|
|
|
struct pxWindowAndFlags
|
|
|
|
{
|
|
|
|
WinType* window;
|
|
|
|
wxSizerFlags flags;
|
|
|
|
};
|
|
|
|
|
2009-11-20 03:26:10 +00:00
|
|
|
|
2009-12-14 12:18:55 +00:00
|
|
|
extern wxSizerFlags operator& ( const wxSizerFlags& _flgs, const wxSizerFlags& _flgs2 );
|
2009-11-20 03:26:10 +00:00
|
|
|
|
2009-11-19 05:08:24 +00:00
|
|
|
template< typename WinType >
|
2009-11-20 03:26:10 +00:00
|
|
|
pxWindowAndFlags<WinType> operator | ( WinType* _win, const wxSizerFlags& _flgs )
|
2009-11-19 05:08:24 +00:00
|
|
|
{
|
|
|
|
pxWindowAndFlags<WinType> result = { _win, _flgs };
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
template< typename WinType >
|
2009-11-20 03:26:10 +00:00
|
|
|
pxWindowAndFlags<WinType> operator | ( WinType& _win, const wxSizerFlags& _flgs )
|
2009-11-19 05:08:24 +00:00
|
|
|
{
|
|
|
|
pxWindowAndFlags<WinType> result = { &_win, _flgs };
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// wxSizer Operator += .. a wxSizer.Add() Substitute
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// This set of operators is the *recommended* method for adding windows to sizers, not just
|
|
|
|
// because it's a lot prettier but also because it allows controls like pxStaticText to over-
|
|
|
|
// ride default sizerflags behavior.
|
|
|
|
//
|
|
|
|
// += operator works on either sizers, wxDialogs or wxPanels. In the latter case, the window
|
|
|
|
// is added to the dialog/panel's toplevel sizer (wxPanel.GetSizer() is used). If the panel
|
|
|
|
// has no sizer set via SetSizer(), an assertion is generated.
|
|
|
|
//
|
|
|
|
|
2009-11-19 13:44:44 +00:00
|
|
|
extern void operator+=( wxSizer& target, wxWindow* src );
|
|
|
|
extern void operator+=( wxSizer& target, wxSizer* src );
|
2009-11-25 03:54:57 +00:00
|
|
|
extern void operator+=( wxSizer& target, wxWindow& src );
|
|
|
|
extern void operator+=( wxSizer& target, wxSizer& src );
|
|
|
|
|
2009-12-14 12:18:55 +00:00
|
|
|
extern void operator+=( wxSizer* target, wxWindow& src );
|
|
|
|
extern void operator+=( wxSizer* target, wxSizer& src );
|
|
|
|
|
2009-11-19 13:44:44 +00:00
|
|
|
extern void operator+=( wxSizer& target, int spacer );
|
2009-11-20 03:26:10 +00:00
|
|
|
extern void operator+=( wxWindow& target, int spacer );
|
2010-03-05 14:24:44 +00:00
|
|
|
extern void operator+=( wxSizer& target, const pxStretchSpacer& spacer );
|
|
|
|
extern void operator+=( wxWindow& target, const pxStretchSpacer& spacer );
|
2009-11-19 05:08:24 +00:00
|
|
|
|
2009-12-14 12:18:55 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
2009-11-20 11:25:48 +00:00
|
|
|
// Important: This template is needed in order to retain window type information and
|
|
|
|
// invoke the proper overloaded version of += (which is used by pxStaticText and other
|
|
|
|
// classes to perform special actions when added to sizers).
|
|
|
|
template< typename WinType >
|
|
|
|
void operator+=( wxWindow& target, WinType* src )
|
|
|
|
{
|
|
|
|
if( !pxAssert( target.GetSizer() != NULL ) ) return;
|
|
|
|
*target.GetSizer() += src;
|
|
|
|
}
|
|
|
|
|
2009-11-25 03:54:57 +00:00
|
|
|
template< typename WinType >
|
|
|
|
void operator+=( wxWindow& target, WinType& src )
|
|
|
|
{
|
2009-12-14 12:18:55 +00:00
|
|
|
if( !pxAssert( target.GetSizer() != NULL ) ) return;
|
|
|
|
*target.GetSizer() += src;
|
|
|
|
}
|
|
|
|
|
|
|
|
template< typename WinType >
|
|
|
|
void operator+=( wxWindow& target, const pxWindowAndFlags<WinType>& src )
|
|
|
|
{
|
|
|
|
if( !pxAssert( target.GetSizer() != NULL ) ) return;
|
2009-11-25 03:54:57 +00:00
|
|
|
*target.GetSizer() += src;
|
|
|
|
}
|
|
|
|
|
2009-11-19 13:44:44 +00:00
|
|
|
template< typename WinType >
|
|
|
|
void operator+=( wxSizer& target, const pxWindowAndFlags<WinType>& src )
|
2009-11-19 05:08:24 +00:00
|
|
|
{
|
2009-11-19 13:44:44 +00:00
|
|
|
target.Add( src.window, src.flags );
|
2009-11-19 05:08:24 +00:00
|
|
|
}
|
|
|
|
|
2009-12-14 12:18:55 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Pointer Versions! (note that C++ requires one of the two operator params be a
|
|
|
|
// "poper" object type (non-pointer), so that's why some of these are missing.
|
|
|
|
|
2009-11-19 05:08:24 +00:00
|
|
|
template< typename WinType >
|
2009-12-14 12:18:55 +00:00
|
|
|
void operator+=( wxWindow* target, WinType& src )
|
2009-11-19 05:08:24 +00:00
|
|
|
{
|
2009-12-14 12:18:55 +00:00
|
|
|
if( !pxAssert( target != NULL ) ) return;
|
|
|
|
if( !pxAssert( target->GetSizer() != NULL ) ) return;
|
|
|
|
*target->GetSizer() += src;
|
|
|
|
}
|
|
|
|
|
|
|
|
template< typename WinType >
|
|
|
|
void operator+=( wxWindow* target, const pxWindowAndFlags<WinType>& src )
|
|
|
|
{
|
|
|
|
if( !pxAssert( target != NULL ) ) return;
|
|
|
|
if( !pxAssert( target->GetSizer() != NULL ) ) return;
|
|
|
|
*target->GetSizer() += src;
|
|
|
|
}
|
|
|
|
|
|
|
|
template< typename WinType >
|
|
|
|
void operator+=( wxSizer* target, const pxWindowAndFlags<WinType>& src )
|
|
|
|
{
|
|
|
|
if( !pxAssert( target != NULL ) ) return;
|
2009-12-14 13:31:50 +00:00
|
|
|
target->Add( src.window, src.flags );
|
2009-11-19 05:08:24 +00:00
|
|
|
}
|
|
|
|
|
2009-11-14 08:36:57 +00:00
|
|
|
|
2010-04-27 13:12:03 +00:00
|
|
|
BEGIN_DECLARE_EVENT_TYPES()
|
2010-05-20 22:29:30 +00:00
|
|
|
// Added to the event queue by pxDialogWithHelpers
|
|
|
|
DECLARE_EVENT_TYPE( pxEvt_OnDialogCreated, -1 )
|
2010-04-27 13:12:03 +00:00
|
|
|
END_DECLARE_EVENT_TYPES()
|
|
|
|
|
2010-06-04 19:50:31 +00:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// pxDialogCreationFlags
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
class pxDialogCreationFlags
|
|
|
|
{
|
|
|
|
public:
|
2010-06-06 23:26:07 +00:00
|
|
|
wxSize MinimumSize;
|
2010-06-04 19:50:31 +00:00
|
|
|
wxOrientation BoxSizerOrient;
|
|
|
|
|
|
|
|
bool isResizable;
|
|
|
|
bool hasContextHelp;
|
|
|
|
bool hasCaption;
|
|
|
|
bool hasMinimizeBox;
|
|
|
|
bool hasMaximizeBox;
|
|
|
|
bool hasSystemMenu;
|
|
|
|
bool hasCloseBox;
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual ~pxDialogCreationFlags() throw() {}
|
|
|
|
|
|
|
|
pxDialogCreationFlags()
|
|
|
|
{
|
2010-06-06 23:26:07 +00:00
|
|
|
MinimumSize = wxDefaultSize;
|
2010-06-04 19:50:31 +00:00
|
|
|
BoxSizerOrient = wxVERTICAL;
|
|
|
|
isResizable = false;
|
|
|
|
hasContextHelp = false;
|
|
|
|
|
|
|
|
hasCloseBox = true;
|
|
|
|
hasSystemMenu = true;
|
|
|
|
hasMinimizeBox = false;
|
|
|
|
hasMaximizeBox = false;
|
|
|
|
hasCaption = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags& SetSizerOrient( wxOrientation orient )
|
|
|
|
{
|
|
|
|
BoxSizerOrient = orient;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags& SetResize( bool enable=true )
|
|
|
|
{
|
|
|
|
isResizable = enable;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags& SetMinimize( bool enable=true )
|
|
|
|
{
|
|
|
|
hasMinimizeBox = enable;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags& SetMaximize( bool enable=true )
|
|
|
|
{
|
|
|
|
hasMaximizeBox = enable;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2010-06-06 23:26:07 +00:00
|
|
|
// NOTE: Enabling system menu on dialogs usually doesn't work, and might cause
|
|
|
|
// other unwanted behavior, such as a missing close button.
|
2010-06-04 19:50:31 +00:00
|
|
|
pxDialogCreationFlags& SetSystemMenu( bool enable=true )
|
|
|
|
{
|
|
|
|
hasSystemMenu = enable;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags& SetCaption( bool enable=true )
|
|
|
|
{
|
|
|
|
hasCaption = enable;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags& SetCloseBox( bool enable=true )
|
|
|
|
{
|
|
|
|
hasCloseBox = enable;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags SetContextHelp( bool enabled=true )
|
|
|
|
{
|
|
|
|
hasContextHelp = enabled;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags& SetMinWidth( int width )
|
|
|
|
{
|
2010-06-06 23:26:07 +00:00
|
|
|
if( width > MinimumSize.x ) MinimumSize.SetWidth( width );
|
2010-06-04 19:50:31 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2010-06-06 23:26:07 +00:00
|
|
|
pxDialogCreationFlags& SetMinHeight( int height )
|
|
|
|
{
|
|
|
|
if( height > MinimumSize.y ) MinimumSize.SetHeight( height );
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags& SetMinSize( const wxSize& size )
|
|
|
|
{
|
|
|
|
return SetMinWidth(size.x).SetMinHeight(size.y);
|
|
|
|
}
|
2010-06-04 19:50:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
pxDialogCreationFlags Horizontal() const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetSizerOrient( wxHORIZONTAL );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags Vertical() const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetSizerOrient( wxVERTICAL );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags NoSizer() const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetSizerOrient( (wxOrientation)0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags Resize( bool enable=true ) const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetResize( enable );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags Minimize( bool enable=true ) const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetMinimize( enable );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags Maximize( bool enable=true ) const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetMaximize( enable );
|
|
|
|
}
|
|
|
|
|
2010-06-06 23:26:07 +00:00
|
|
|
// NOTE: Enabling system menu on dialogs usually doesn't work, and might cause
|
|
|
|
// other unwanted behavior, such as a missing close button.
|
2010-06-04 19:50:31 +00:00
|
|
|
pxDialogCreationFlags SystemMenu( bool enable=true ) const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetSystemMenu( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags Caption( bool enable=true ) const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetCaption( enable );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags CloseBox( bool enable=true ) const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetCloseBox( enable );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags NoResize() const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetResize( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags NoMinimize() const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetMinimize( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags NoMaximize() const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetMaximize( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags NoSystemMenu() const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetSystemMenu( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags NoCaption() const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetCaption( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags NoCloseBox() const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetCloseBox( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags MinWidth( int width ) const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetMinWidth( width );
|
|
|
|
}
|
2010-06-06 23:26:07 +00:00
|
|
|
|
|
|
|
pxDialogCreationFlags MinHeight( int height ) const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetMinHeight( height );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags MinSize( const wxSize& size ) const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetMinSize( size );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxDialogCreationFlags MinSize( int width, int height ) const
|
|
|
|
{
|
|
|
|
return pxDialogCreationFlags(*this).SetMinWidth( width ).SetMinHeight( height );
|
|
|
|
}
|
2010-06-04 19:50:31 +00:00
|
|
|
|
|
|
|
int GetWxWindowFlags() const
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
if( isResizable ) retval |= wxRESIZE_BORDER;
|
|
|
|
if( hasCaption ) retval |= wxCAPTION;
|
|
|
|
if( hasMaximizeBox ) retval |= wxMAXIMIZE_BOX;
|
|
|
|
if( hasMinimizeBox ) retval |= wxMINIMIZE_BOX;
|
|
|
|
if( hasSystemMenu ) retval |= wxSYSTEM_MENU;
|
|
|
|
if( hasCloseBox ) retval |= wxCLOSE_BOX;
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-11-14 08:36:57 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// wxDialogWithHelpers
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
class wxDialogWithHelpers : public wxDialog
|
|
|
|
{
|
2009-11-18 07:53:02 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxDialogWithHelpers)
|
|
|
|
|
2009-11-14 08:36:57 +00:00
|
|
|
protected:
|
2010-01-04 11:51:09 +00:00
|
|
|
bool m_hasContextHelp;
|
|
|
|
wxBoxSizer* m_extraButtonSizer;
|
2010-06-06 23:26:07 +00:00
|
|
|
wxRect m_CreatedRect;
|
|
|
|
|
2009-11-14 08:36:57 +00:00
|
|
|
public:
|
2009-11-18 07:53:02 +00:00
|
|
|
wxDialogWithHelpers();
|
2010-06-04 19:50:31 +00:00
|
|
|
wxDialogWithHelpers(wxWindow* parent, const wxString& title, const pxDialogCreationFlags& cflags = pxDialogCreationFlags() );
|
2009-11-14 08:36:57 +00:00
|
|
|
virtual ~wxDialogWithHelpers() throw();
|
|
|
|
|
2010-06-06 23:26:07 +00:00
|
|
|
void Init( const pxDialogCreationFlags& cflags );
|
2009-12-14 12:18:55 +00:00
|
|
|
void AddOkCancel( wxSizer& sizer, bool hasApply=false );
|
2010-05-03 13:51:46 +00:00
|
|
|
void AddOkCancel( wxSizer* sizer=NULL, bool hasApply=false );
|
2009-12-14 12:18:55 +00:00
|
|
|
|
|
|
|
virtual void SmartCenterFit();
|
|
|
|
virtual int ShowModal();
|
|
|
|
virtual bool Show( bool show=true );
|
|
|
|
|
2010-05-20 22:29:30 +00:00
|
|
|
// Must return the same thing as GetNameStatic; a name ideal for use in uniquely
|
|
|
|
// identifying dialogs. (this version is the 'instance' version, which is called
|
|
|
|
// by BaseConfigurationDialog to assign the wxWidgets dialog name, and for saving
|
|
|
|
// screenshots to disk)
|
|
|
|
virtual wxString GetDialogName() const;
|
|
|
|
|
2010-06-04 08:00:19 +00:00
|
|
|
virtual wxStaticText& Label( const wxString& label );
|
|
|
|
virtual pxStaticText& Text( const wxString& label );
|
|
|
|
virtual pxStaticText& Heading( const wxString& label );
|
2009-11-14 08:36:57 +00:00
|
|
|
|
2010-06-06 23:26:07 +00:00
|
|
|
wxDialogWithHelpers& SetMinWidth( int newWidth );
|
|
|
|
wxDialogWithHelpers& SetMinHeight( int newHeight );
|
2010-06-08 12:09:28 +00:00
|
|
|
|
|
|
|
int GetCharHeight() const;
|
2009-11-14 08:36:57 +00:00
|
|
|
|
|
|
|
protected:
|
2010-05-20 22:29:30 +00:00
|
|
|
void OnDialogCreated( wxCommandEvent& evt );
|
2009-12-14 12:18:55 +00:00
|
|
|
void OnOkCancel(wxCommandEvent& evt);
|
|
|
|
void OnCloseWindow(wxCloseEvent& event);
|
2010-06-15 14:13:23 +00:00
|
|
|
|
|
|
|
bool ShouldPreventAppExit() const { return false; }
|
|
|
|
|
2010-06-06 23:26:07 +00:00
|
|
|
void DoAutoCenter();
|
2009-11-14 08:36:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// wxPanelWithHelpers
|
|
|
|
// --------------------------------------------------------------------------------------
|
2009-11-19 05:08:24 +00:00
|
|
|
// Overview of Helpers provided by this class:
|
|
|
|
// * Simpler constructors that have wxID, position, and size parameters removed (We never
|
|
|
|
// use them in pcsx2)
|
|
|
|
//
|
|
|
|
// * Automatic 'primary box sizer' creation, assigned via SetSizer() -- use GetSizer()
|
|
|
|
// to retrieve it, or use the "*this += window;" syntax to add windows directly to it.
|
|
|
|
//
|
|
|
|
// * Built-in support for StaticBoxes (aka groupboxes). Create one at construction with
|
2009-11-21 07:44:11 +00:00
|
|
|
// a wxString label, or add one "after the fact" using AddFrame.
|
2009-11-19 05:08:24 +00:00
|
|
|
//
|
|
|
|
// * Propagates IdealWidth settings from parenting wxPanelWithHelpers classes, and auto-
|
|
|
|
// matically adjusts the width based on the sizer type (groupsizers get truncated to
|
|
|
|
// account for borders).
|
|
|
|
//
|
2009-11-14 08:36:57 +00:00
|
|
|
class wxPanelWithHelpers : public wxPanel
|
|
|
|
{
|
2009-11-18 07:53:02 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxPanelWithHelpers)
|
|
|
|
|
2009-11-14 08:36:57 +00:00
|
|
|
public:
|
2009-11-18 07:53:02 +00:00
|
|
|
wxPanelWithHelpers( wxWindow* parent, wxOrientation orient, const wxString& staticBoxLabel );
|
|
|
|
wxPanelWithHelpers( wxWindow* parent, wxOrientation orient );
|
2009-11-14 08:36:57 +00:00
|
|
|
wxPanelWithHelpers( wxWindow* parent, const wxPoint& pos, const wxSize& size=wxDefaultSize );
|
2009-11-18 07:53:02 +00:00
|
|
|
explicit wxPanelWithHelpers( wxWindow* parent=NULL );
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-11-21 07:44:11 +00:00
|
|
|
wxPanelWithHelpers* AddFrame( const wxString& label, wxOrientation orient=wxVERTICAL );
|
2009-11-14 08:36:57 +00:00
|
|
|
|
2010-06-04 08:00:19 +00:00
|
|
|
wxStaticText& Label( const wxString& label );
|
|
|
|
pxStaticText& Text( const wxString& label );
|
|
|
|
pxStaticText& Heading( const wxString& label );
|
2009-11-20 03:26:10 +00:00
|
|
|
|
2010-06-04 08:00:19 +00:00
|
|
|
virtual wxPanelWithHelpers& SetMinWidth( int newWidth );
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-11-14 08:36:57 +00:00
|
|
|
protected:
|
2009-11-18 07:53:02 +00:00
|
|
|
void Init();
|
2009-11-14 08:36:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-09-20 20:54:45 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// pxTextWrapperBase
|
|
|
|
// --------------------------------------------------------------------------------------
|
2009-08-20 14:34:48 +00:00
|
|
|
// this class is used to wrap the text on word boundary: wrapping is done by calling
|
|
|
|
// OnStartLine() and OnOutputLine() functions. This class by itself can be used as a
|
|
|
|
// line counting tool, but produces no formatted text output.
|
|
|
|
//
|
|
|
|
// [class "borrowed" from wxWidgets private code, made public, and renamed to avoid possible
|
|
|
|
// conflicts with future editions of wxWidgets which might make it public. Why this isn't
|
|
|
|
// publicly available already in wxBase I'll never know-- air]
|
|
|
|
//
|
|
|
|
class pxTextWrapperBase
|
|
|
|
{
|
|
|
|
protected:
|
2010-06-21 04:04:32 +00:00
|
|
|
bool m_eol;
|
|
|
|
int m_linecount;
|
|
|
|
wxString m_indent;
|
2009-08-20 14:34:48 +00:00
|
|
|
|
|
|
|
public:
|
2009-11-08 01:56:24 +00:00
|
|
|
virtual ~pxTextWrapperBase() throw() { }
|
2009-08-20 14:34:48 +00:00
|
|
|
|
2010-06-21 04:04:32 +00:00
|
|
|
pxTextWrapperBase( const wxString& indent=wxEmptyString )
|
|
|
|
: m_indent( indent )
|
2009-08-20 14:34:48 +00:00
|
|
|
{
|
2009-11-08 01:56:24 +00:00
|
|
|
m_eol = false;
|
|
|
|
m_linecount = 0;
|
2009-08-20 14:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// win is used for getting the font, text is the text to wrap, width is the
|
|
|
|
// max line width or -1 to disable wrapping
|
2009-11-08 01:56:24 +00:00
|
|
|
pxTextWrapperBase& Wrap( const wxWindow& win, const wxString& text, int widthMax );
|
2009-08-20 14:34:48 +00:00
|
|
|
|
|
|
|
int GetLineCount() const
|
|
|
|
{
|
|
|
|
return m_linecount;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// line may be empty
|
|
|
|
virtual void OnOutputLine(const wxString& line) { }
|
|
|
|
|
|
|
|
// called at the start of every new line (except the very first one)
|
|
|
|
virtual void OnNewLine() { }
|
|
|
|
|
2009-11-08 01:56:24 +00:00
|
|
|
void DoOutputLine(const wxString& line);
|
|
|
|
bool IsStartOfNewLine();
|
2009-08-20 14:34:48 +00:00
|
|
|
};
|
|
|
|
|
2009-09-20 20:54:45 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// pxTextWrapper
|
|
|
|
// --------------------------------------------------------------------------------------
|
2009-08-20 14:34:48 +00:00
|
|
|
// This class extends pxTextWrapperBase and adds the ability to retrieve the formatted
|
|
|
|
// result of word wrapping.
|
|
|
|
//
|
|
|
|
class pxTextWrapper : public pxTextWrapperBase
|
|
|
|
{
|
2009-11-08 01:56:24 +00:00
|
|
|
typedef pxTextWrapperBase _parent;
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-08-20 14:34:48 +00:00
|
|
|
protected:
|
2010-06-21 04:04:32 +00:00
|
|
|
wxString m_text;
|
2009-08-20 14:34:48 +00:00
|
|
|
|
|
|
|
public:
|
2010-06-21 04:04:32 +00:00
|
|
|
pxTextWrapper( const wxString& wrapPrefix=wxEmptyString )
|
|
|
|
: pxTextWrapperBase( wrapPrefix )
|
|
|
|
{ }
|
|
|
|
|
2009-11-08 01:56:24 +00:00
|
|
|
virtual ~pxTextWrapper() throw() { }
|
2009-08-20 14:34:48 +00:00
|
|
|
|
|
|
|
const wxString& GetResult() const
|
|
|
|
{
|
|
|
|
return m_text;
|
|
|
|
}
|
|
|
|
|
2009-11-08 01:56:24 +00:00
|
|
|
pxTextWrapper& Wrap( const wxWindow& win, const wxString& text, int widthMax );
|
2010-06-02 15:58:34 +00:00
|
|
|
pxTextWrapper& Wrap( const wxWindow* win, const wxString& text, int widthMax );
|
2009-08-20 14:34:48 +00:00
|
|
|
|
2009-11-08 01:56:24 +00:00
|
|
|
protected:
|
2010-06-21 04:04:32 +00:00
|
|
|
void OnOutputLine(const wxString& line);
|
|
|
|
void OnNewLine();
|
2009-08-20 14:34:48 +00:00
|
|
|
};
|
2009-09-20 20:54:45 +00:00
|
|
|
|
2010-05-20 12:23:13 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// pxWindowTextWriter
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
class pxWindowTextWriter
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
wxDC& m_dc;
|
|
|
|
|
|
|
|
wxAlignment m_align;
|
|
|
|
wxPoint m_curpos;
|
|
|
|
int m_leading;
|
|
|
|
|
|
|
|
virtual void _DoWriteLn( const wxChar* msg );
|
|
|
|
void _DoWrite( const wxChar* msg );
|
|
|
|
|
|
|
|
public:
|
2010-06-04 08:00:19 +00:00
|
|
|
pxWindowTextWriter( wxDC& dc );
|
|
|
|
virtual ~pxWindowTextWriter() throw() { }
|
2010-05-20 12:23:13 +00:00
|
|
|
|
|
|
|
virtual void OnFontChanged();
|
|
|
|
|
|
|
|
pxWindowTextWriter& WriteLn();
|
2010-06-04 08:00:19 +00:00
|
|
|
pxWindowTextWriter& FormatLn( const wxChar* fmt, ... );
|
|
|
|
pxWindowTextWriter& WriteLn( const wxChar* fmt );
|
2010-05-20 12:23:13 +00:00
|
|
|
pxWindowTextWriter& SetFont( const wxFont& font );
|
|
|
|
pxWindowTextWriter& Align( const wxAlignment& align );
|
|
|
|
|
|
|
|
pxWindowTextWriter& SetLeading( int lead )
|
|
|
|
{
|
|
|
|
m_leading = lead;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
pxWindowTextWriter& SetWeight( int weight );
|
|
|
|
pxWindowTextWriter& SetStyle( int style );
|
|
|
|
pxWindowTextWriter& Normal();
|
|
|
|
|
|
|
|
pxWindowTextWriter& Bold()
|
|
|
|
{
|
|
|
|
return SetWeight(wxBOLD);
|
|
|
|
}
|
|
|
|
|
|
|
|
pxWindowTextWriter& Italic()
|
|
|
|
{
|
|
|
|
return SetStyle(wxITALIC);
|
|
|
|
}
|
|
|
|
|
|
|
|
pxWindowTextWriter& SetPos( const wxPoint& pos );
|
|
|
|
pxWindowTextWriter& MovePos( const wxSize& delta );
|
|
|
|
|
|
|
|
pxWindowTextWriter& SetPos( int xpos, int ypos )
|
|
|
|
{
|
|
|
|
return SetPos( wxPoint(xpos,ypos) );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxWindowTextWriter& MovePos( int xdelta, int ydelta )
|
|
|
|
{
|
|
|
|
return MovePos( wxSize(xdelta, ydelta) );
|
|
|
|
}
|
|
|
|
|
|
|
|
pxWindowTextWriter& SetY( int ypos );
|
|
|
|
pxWindowTextWriter& MoveY( int ydelta );
|
|
|
|
};
|
|
|
|
|
2009-11-01 09:27:16 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// MoreStockCursors
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// Because (inexplicably) the ArrowWait cursor isn't in wxWidgets stock list.
|
|
|
|
//
|
|
|
|
class MoreStockCursors
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
ScopedPtr<wxCursor> m_arrowWait;
|
|
|
|
|
|
|
|
public:
|
|
|
|
MoreStockCursors() { }
|
|
|
|
virtual ~MoreStockCursors() throw() { }
|
|
|
|
const wxCursor& GetArrowWait();
|
|
|
|
};
|
|
|
|
|
|
|
|
enum BusyCursorType
|
|
|
|
{
|
|
|
|
Cursor_NotBusy,
|
|
|
|
Cursor_KindaBusy,
|
|
|
|
Cursor_ReallyBusy,
|
|
|
|
};
|
|
|
|
|
|
|
|
extern MoreStockCursors StockCursors;
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// ScopedBusyCursor
|
|
|
|
// --------------------------------------------------------------------------------------
|
2010-04-25 00:31:27 +00:00
|
|
|
// ... because wxWidgets wxBusyCursor doesn't really do proper nesting (doesn't let me
|
2009-11-01 09:27:16 +00:00
|
|
|
// override a partially-busy cursor with a really busy one)
|
|
|
|
|
|
|
|
class ScopedBusyCursor
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
static std::stack<BusyCursorType> m_cursorStack;
|
|
|
|
static BusyCursorType m_defBusyType;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ScopedBusyCursor( BusyCursorType busytype );
|
|
|
|
virtual ~ScopedBusyCursor() throw();
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-11-01 09:27:16 +00:00
|
|
|
static void SetDefault( BusyCursorType busytype );
|
|
|
|
static void SetManualBusyCursor( BusyCursorType busytype );
|
|
|
|
};
|
|
|
|
|
2010-01-04 11:51:09 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// pxFitToDigits
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// Fits a given text or spinner control to the number of digits requested, since by default
|
|
|
|
// they're usually way over-sized.
|
|
|
|
|
|
|
|
extern void pxFitToDigits( wxWindow* win, int digits );
|
|
|
|
extern void pxFitToDigits( wxSpinCtrl* win, int digits );
|
2010-06-04 16:41:51 +00:00
|
|
|
extern wxTextCtrl* CreateNumericalTextCtrl( wxWindow* parent, int digits, long flags = wxTE_RIGHT );
|
2010-01-04 11:51:09 +00:00
|
|
|
|
|
|
|
|
2009-11-10 17:53:22 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////
|
2009-09-20 20:54:45 +00:00
|
|
|
|
2009-12-14 12:18:55 +00:00
|
|
|
extern bool pxDialogExists( const wxString& name );
|
2009-09-20 20:54:45 +00:00
|
|
|
extern bool pxIsValidWindowPosition( const wxWindow& window, const wxPoint& windowPos );
|
|
|
|
extern wxRect wxGetDisplayArea();
|
2010-06-21 10:25:06 +00:00
|
|
|
extern wxString pxGetAppName();
|
2009-11-01 09:27:16 +00:00
|
|
|
|
2010-06-09 17:37:11 +00:00
|
|
|
extern int pxGetCharHeight( const wxWindow* wind, int rows=1 );
|
|
|
|
extern int pxGetCharHeight( const wxWindow& wind, int rows=1 );
|
|
|
|
|
2009-11-10 17:53:22 +00:00
|
|
|
extern wxString pxFormatToolTipText( wxWindow* wind, const wxString& src );
|
|
|
|
extern void pxSetToolTip( wxWindow* wind, const wxString& src );
|
|
|
|
extern void pxSetToolTip( wxWindow& wind, const wxString& src );
|
2009-12-14 12:18:55 +00:00
|
|
|
extern wxFont pxGetFixedFont( int ptsize=8, int weight=wxNORMAL );
|
|
|
|
|
2010-06-04 19:50:31 +00:00
|
|
|
extern pxDialogCreationFlags pxDialogFlags();
|
2009-11-10 17:53:22 +00:00
|
|
|
|
2009-11-01 09:27:16 +00:00
|
|
|
#endif
|