2009-09-08 12:08:10 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
|
|
|
* Copyright (C) 2002-2009 PCSX2 Dev Team
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
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-08-20 14:34:48 +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-14 08:36:57 +00:00
|
|
|
namespace pxSizerFlags
|
|
|
|
{
|
|
|
|
extern wxSizerFlags StdSpace();
|
|
|
|
extern wxSizerFlags StdCenter();
|
|
|
|
extern wxSizerFlags StdExpand();
|
|
|
|
extern wxSizerFlags TopLevelBox();
|
|
|
|
extern wxSizerFlags SubGroup();
|
|
|
|
extern wxSizerFlags StdButton();
|
|
|
|
extern wxSizerFlags Checkbox();
|
|
|
|
};
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// wxDialogWithHelpers
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
class wxDialogWithHelpers : public wxDialog
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
bool m_hasContextHelp;
|
|
|
|
int m_idealWidth;
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxDialogWithHelpers(wxWindow* parent, int id, const wxString& title, bool hasContextHelp, const wxPoint& pos=wxDefaultPosition, const wxSize& size=wxDefaultSize );
|
|
|
|
virtual ~wxDialogWithHelpers() throw();
|
|
|
|
|
|
|
|
wxStaticText& AddStaticText(wxSizer& sizer, const wxString& label, int alignFlags=wxALIGN_CENTRE, int size=wxDefaultCoord );
|
|
|
|
void AddOkCancel( wxSizer& sizer, bool hasApply=false );
|
|
|
|
|
|
|
|
wxDialogWithHelpers& SetIdealWidth( int newWidth ) { m_idealWidth = newWidth; return *this; }
|
|
|
|
int GetIdealWidth() const { return m_idealWidth; }
|
|
|
|
bool HasIdealWidth() const { return m_idealWidth != wxDefaultCoord; }
|
|
|
|
|
|
|
|
protected:
|
2009-11-16 03:23:59 +00:00
|
|
|
void OnActivate(wxActivateEvent& evt);
|
2009-11-14 08:36:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// wxPanelWithHelpers
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
class wxPanelWithHelpers : public wxPanel
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
int m_idealWidth;
|
|
|
|
bool m_StartNewRadioGroup;
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxPanelWithHelpers( wxWindow* parent, int idealWidth=wxDefaultCoord );
|
|
|
|
wxPanelWithHelpers( wxWindow* parent, const wxPoint& pos, const wxSize& size=wxDefaultSize );
|
|
|
|
|
|
|
|
//wxRadioButton& NewSpinCtrl( const wxString& label, const wxString& subtext=wxEmptyString, const wxString& tooltip=wxEmptyString );
|
|
|
|
|
|
|
|
//wxRadioButton& AddRadioButton( wxSizer& sizer, const wxString& label, const wxString& subtext=wxEmptyString, const wxString& tooltip=wxEmptyString );
|
|
|
|
wxStaticText& AddStaticText(wxSizer& sizer, const wxString& label, int alignFlags=wxALIGN_CENTRE, int size=wxDefaultCoord );
|
|
|
|
|
|
|
|
wxPanelWithHelpers& SetIdealWidth( int newWidth ) { m_idealWidth = newWidth; return *this; }
|
|
|
|
int GetIdealWidth() const { return m_idealWidth; }
|
|
|
|
bool HasIdealWidth() const { return m_idealWidth != wxDefaultCoord; }
|
|
|
|
|
|
|
|
void StartRadioGroup() { m_StartNewRadioGroup = true; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
|
|
|
|
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:
|
2009-11-08 01:56:24 +00:00
|
|
|
bool m_eol;
|
|
|
|
int m_linecount;
|
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
|
|
|
|
2009-11-08 01:56:24 +00:00
|
|
|
pxTextWrapperBase()
|
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;
|
|
|
|
|
2009-08-20 14:34:48 +00:00
|
|
|
protected:
|
|
|
|
wxString m_text;
|
|
|
|
|
|
|
|
public:
|
2009-11-08 01:56:24 +00:00
|
|
|
pxTextWrapper() : pxTextWrapperBase() { }
|
|
|
|
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 );
|
2009-08-20 14:34:48 +00:00
|
|
|
|
2009-11-08 01:56:24 +00:00
|
|
|
protected:
|
|
|
|
virtual void OnOutputLine(const wxString& line);
|
|
|
|
virtual void OnNewLine();
|
2009-08-20 14:34:48 +00:00
|
|
|
};
|
2009-09-20 20:54:45 +00:00
|
|
|
|
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
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// ... because wxWidgets wxBusyCursor doesn't really do proper nesting (doesn't let me
|
|
|
|
// 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();
|
|
|
|
|
|
|
|
static void SetDefault( BusyCursorType busytype );
|
|
|
|
static void SetManualBusyCursor( BusyCursorType busytype );
|
|
|
|
};
|
|
|
|
|
2009-11-10 17:53:22 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////
|
2009-09-20 20:54:45 +00:00
|
|
|
|
|
|
|
extern bool pxIsValidWindowPosition( const wxWindow& window, const wxPoint& windowPos );
|
|
|
|
extern wxRect wxGetDisplayArea();
|
2009-11-01 09:27:16 +00:00
|
|
|
|
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-11-01 09:27:16 +00:00
|
|
|
#endif
|