2009-09-20 20:54:45 +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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "PrecompiledHeader.h"
|
|
|
|
#include "wxGuiTools.h"
|
2009-11-20 03:26:10 +00:00
|
|
|
#include "pxStaticText.h"
|
2009-09-20 20:54:45 +00:00
|
|
|
|
2009-11-01 09:27:16 +00:00
|
|
|
#include <wx/app.h>
|
2009-09-20 20:54:45 +00:00
|
|
|
#include <wx/window.h>
|
|
|
|
|
2009-11-20 03:26:10 +00:00
|
|
|
const pxAlignmentType
|
|
|
|
pxCentre = { pxAlignmentType::Center }, // Horizontal centered alignment
|
|
|
|
pxCenter = pxCentre,
|
|
|
|
pxMiddle = { pxAlignmentType::Middle }, // vertical centered alignment
|
|
|
|
|
|
|
|
pxAlignLeft = { pxAlignmentType::Left },
|
|
|
|
pxAlignRight = { pxAlignmentType::Right },
|
|
|
|
pxAlignTop = { pxAlignmentType::Top },
|
|
|
|
pxAlignBottom = { pxAlignmentType::Bottom };
|
|
|
|
|
|
|
|
const pxStretchType
|
|
|
|
pxShrink = { pxStretchType::Shrink },
|
|
|
|
pxExpand = { pxStretchType::Expand },
|
|
|
|
pxShaped = { pxStretchType::Shaped },
|
|
|
|
pxReserveHidden = { pxStretchType::ReserveHidden },
|
|
|
|
pxFixedMinimum = { pxStretchType::FixedMinimum };
|
|
|
|
|
|
|
|
wxSizerFlags pxAlignmentType::Apply( wxSizerFlags flags ) const
|
|
|
|
{
|
|
|
|
switch( intval )
|
|
|
|
{
|
|
|
|
case Centre:
|
|
|
|
flags.Align( flags.GetFlags() | wxALIGN_CENTRE_HORIZONTAL );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Middle:
|
|
|
|
flags.Align( flags.GetFlags() | wxALIGN_CENTRE_VERTICAL );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Left:
|
|
|
|
flags.Left();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Right:
|
|
|
|
flags.Right();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Top:
|
|
|
|
flags.Top();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Bottom:
|
|
|
|
flags.Bottom();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
wxSizerFlags pxStretchType::Apply( wxSizerFlags flags ) const
|
|
|
|
{
|
|
|
|
switch( intval )
|
|
|
|
{
|
|
|
|
case Shrink:
|
|
|
|
//pxFail( "wxSHRINK is an ignored stretch flag." );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Expand:
|
|
|
|
flags.Expand();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Shaped:
|
|
|
|
flags.Shaped();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ReserveHidden:
|
|
|
|
flags.ReserveSpaceEvenIfHidden();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FixedMinimum:
|
|
|
|
flags.FixedMinSize();
|
|
|
|
break;
|
|
|
|
|
|
|
|
//case Tile:
|
|
|
|
// pxAssert( "pxTile is an unsupported stretch tag (ignored)." );
|
|
|
|
//break;
|
|
|
|
}
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void operator+=( wxSizer& target, wxWindow* src )
|
|
|
|
{
|
|
|
|
target.Add( src );
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator+=( wxSizer& target, wxSizer* src )
|
|
|
|
{
|
|
|
|
target.Add( src );
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator+=( wxSizer& target, int spacer )
|
|
|
|
{
|
|
|
|
target.AddSpacer( spacer );
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator+=( wxWindow& target, int spacer )
|
|
|
|
{
|
|
|
|
if( !pxAssert( target.GetSizer() != NULL ) ) return;
|
|
|
|
target.GetSizer()->AddSpacer( spacer );
|
|
|
|
}
|
|
|
|
|
2009-09-20 20:54:45 +00:00
|
|
|
// Returns FALSE if the window position is considered invalid, which means that it's title
|
|
|
|
// bar is most likely not easily grabble. Such a window should be moved to a valid or
|
|
|
|
// default position.
|
|
|
|
bool pxIsValidWindowPosition( const wxWindow& window, const wxPoint& windowPos )
|
|
|
|
{
|
|
|
|
// The height of the window is only revlevant to the height of a title bar, which is
|
|
|
|
// all we need visible for the user to be able to drag the window into view. But
|
|
|
|
// there's no way to get that info from wx, so we'll just have to guesstimate...
|
|
|
|
|
|
|
|
wxSize sizeMatters( window.GetSize().GetWidth(), 32 ); // if some gui has 32 pixels of undraggable title bar, the user deserves to suffer.
|
|
|
|
return wxGetDisplayArea().Contains( wxRect( windowPos, sizeMatters ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieves the area of the screen, which can be used to enforce a valid zone for
|
|
|
|
// window positioning. (top/left coords are almost always (0,0) and bottom/right
|
|
|
|
// is the resolution of the desktop).
|
|
|
|
wxRect wxGetDisplayArea()
|
|
|
|
{
|
|
|
|
return wxRect( wxPoint(), wxGetDisplaySize() );
|
|
|
|
}
|
|
|
|
|
2009-11-14 08:36:57 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// pxSizerFlags
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// FlagsAccessors - Provides read-write copies of standard sizer flags for our interface.
|
|
|
|
// These standard definitions provide a consistent and pretty interface for our GUI.
|
|
|
|
// Without them things look compacted, misaligned, and yucky!
|
|
|
|
//
|
|
|
|
// Implementation Note: Accessors are all provisioned as dynamic (realtime) sizer calculations.
|
|
|
|
// I've preferred this over cstatic const variables on the premise that spacing logic could
|
|
|
|
// in the future become a dynamic value (currently it is affixed to 6 for most items).
|
|
|
|
//
|
|
|
|
wxSizerFlags pxSizerFlags::StdSpace()
|
|
|
|
{
|
2009-11-18 07:53:02 +00:00
|
|
|
return wxSizerFlags().Border( wxALL, StdPadding );
|
2009-11-14 08:36:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxSizerFlags pxSizerFlags::StdCenter()
|
|
|
|
{
|
|
|
|
return wxSizerFlags().Align( wxALIGN_CENTER ).DoubleBorder();
|
|
|
|
}
|
|
|
|
|
|
|
|
wxSizerFlags pxSizerFlags::StdExpand()
|
|
|
|
{
|
|
|
|
return StdSpace().Expand();
|
|
|
|
}
|
|
|
|
|
|
|
|
// A good sizer flags setting for top-level static boxes or top-level picture boxes.
|
|
|
|
// Gives a generous border to the left, right, and bottom. Top border can be configured
|
|
|
|
// manually by using a spacer.
|
|
|
|
wxSizerFlags pxSizerFlags::TopLevelBox()
|
|
|
|
{
|
2009-11-18 07:53:02 +00:00
|
|
|
return wxSizerFlags().Border( wxLEFT | wxBOTTOM | wxRIGHT, StdPadding ).Expand();
|
2009-11-14 08:36:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Flags intended for use on grouped StaticBox controls. These flags are ideal for
|
|
|
|
// StaticBoxes that are part of sub-panels or children of other static boxes, but may
|
|
|
|
// not be best for parent StaticBoxes on dialogs (left and right borders feel a bit
|
|
|
|
// "tight").
|
|
|
|
wxSizerFlags pxSizerFlags::SubGroup()
|
|
|
|
{
|
|
|
|
// Groups look better with a slightly smaller margin than standard.
|
|
|
|
// (basically this accounts for the group's frame)
|
2009-11-18 07:53:02 +00:00
|
|
|
return wxSizerFlags().Border( wxLEFT | wxBOTTOM | wxRIGHT, StdPadding-2 ).Expand();
|
2009-11-14 08:36:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This force-aligns the std button sizer to the right, where (at least) us win32 platform
|
|
|
|
// users always expect it to be. Most likely Mac platforms expect it on the left side
|
|
|
|
// just because it's *not* where win32 sticks it. Too bad!
|
|
|
|
wxSizerFlags pxSizerFlags::StdButton()
|
|
|
|
{
|
|
|
|
return wxSizerFlags().Align( wxALIGN_RIGHT ).Border();
|
|
|
|
}
|
|
|
|
|
|
|
|
wxSizerFlags pxSizerFlags::Checkbox()
|
|
|
|
{
|
|
|
|
return StdExpand();
|
|
|
|
}
|
|
|
|
|
2009-11-09 15:00:45 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// pxTextWrapper / pxTextWrapperBase Implementations
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
pxTextWrapperBase& pxTextWrapperBase::Wrap( const wxWindow& win, const wxString& text, int widthMax )
|
|
|
|
{
|
2009-11-18 07:53:02 +00:00
|
|
|
if( text.IsEmpty() ) return *this;
|
|
|
|
|
2009-11-09 15:00:45 +00:00
|
|
|
const wxChar *lastSpace = NULL;
|
|
|
|
wxString line;
|
2009-11-18 07:53:02 +00:00
|
|
|
line.Alloc( text.Length()+12 );
|
2009-11-09 15:00:45 +00:00
|
|
|
|
|
|
|
const wxChar *lineStart = text.c_str();
|
|
|
|
for ( const wxChar *p = lineStart; ; p++ )
|
|
|
|
{
|
|
|
|
if ( IsStartOfNewLine() )
|
|
|
|
{
|
|
|
|
OnNewLine();
|
|
|
|
|
|
|
|
lastSpace = NULL;
|
|
|
|
line.clear();
|
|
|
|
lineStart = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( *p == L'\n' || *p == L'\0' )
|
|
|
|
{
|
|
|
|
DoOutputLine(line);
|
|
|
|
|
|
|
|
if ( *p == L'\0' )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else // not EOL
|
|
|
|
{
|
|
|
|
if ( *p == L' ' )
|
|
|
|
lastSpace = p;
|
|
|
|
|
|
|
|
line += *p;
|
|
|
|
|
|
|
|
if ( widthMax >= 0 && lastSpace )
|
|
|
|
{
|
|
|
|
int width;
|
|
|
|
win.GetTextExtent(line, &width, NULL);
|
|
|
|
|
|
|
|
if ( width > widthMax )
|
|
|
|
{
|
|
|
|
// remove the last word from this line
|
|
|
|
line.erase(lastSpace - lineStart, p + 1 - lineStart);
|
|
|
|
DoOutputLine(line);
|
|
|
|
|
|
|
|
// go back to the last word of this line which we didn't
|
|
|
|
// output yet
|
|
|
|
p = lastSpace;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//else: no wrapping at all or impossible to wrap
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pxTextWrapperBase::DoOutputLine(const wxString& line)
|
|
|
|
{
|
|
|
|
OnOutputLine(line);
|
|
|
|
m_linecount++;
|
|
|
|
m_eol = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this function is a destructive inspector: when it returns true it also
|
|
|
|
// resets the flag to false so calling it again wouldn't return true any
|
|
|
|
// more
|
|
|
|
bool pxTextWrapperBase::IsStartOfNewLine()
|
|
|
|
{
|
|
|
|
if ( !m_eol )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
m_eol = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
pxTextWrapper& pxTextWrapper::Wrap( const wxWindow& win, const wxString& text, int widthMax )
|
|
|
|
{
|
|
|
|
_parent::Wrap( win, text, widthMax );
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pxTextWrapper::OnOutputLine(const wxString& line)
|
|
|
|
{
|
|
|
|
m_text += line;
|
|
|
|
}
|
|
|
|
|
|
|
|
void pxTextWrapper::OnNewLine()
|
|
|
|
{
|
|
|
|
m_text += L'\n';
|
|
|
|
}
|
|
|
|
|
2009-11-01 09:27:16 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// ScopedBusyCursor Implementations
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
std::stack<BusyCursorType> ScopedBusyCursor::m_cursorStack;
|
|
|
|
BusyCursorType ScopedBusyCursor::m_defBusyType;
|
|
|
|
|
|
|
|
ScopedBusyCursor::ScopedBusyCursor( BusyCursorType busytype )
|
|
|
|
{
|
|
|
|
pxAssert( wxTheApp != NULL );
|
|
|
|
|
|
|
|
BusyCursorType curtype = Cursor_NotBusy;
|
|
|
|
if( !m_cursorStack.empty() )
|
|
|
|
curtype = m_cursorStack.top();
|
|
|
|
|
|
|
|
if( curtype < busytype )
|
|
|
|
SetManualBusyCursor( curtype=busytype );
|
|
|
|
|
|
|
|
m_cursorStack.push( curtype );
|
|
|
|
}
|
|
|
|
|
|
|
|
ScopedBusyCursor::~ScopedBusyCursor() throw()
|
|
|
|
{
|
|
|
|
if( !pxAssert( wxTheApp != NULL ) ) return;
|
|
|
|
|
|
|
|
if( !pxAssert( !m_cursorStack.empty() ) )
|
|
|
|
{
|
|
|
|
SetManualBusyCursor( m_defBusyType );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
BusyCursorType curtype = m_cursorStack.top();
|
|
|
|
m_cursorStack.pop();
|
|
|
|
|
|
|
|
if( m_cursorStack.empty() )
|
|
|
|
SetManualBusyCursor( m_defBusyType );
|
|
|
|
else if( m_cursorStack.top() != curtype )
|
|
|
|
SetManualBusyCursor( m_cursorStack.top() );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScopedBusyCursor::SetDefault( BusyCursorType busytype )
|
|
|
|
{
|
|
|
|
if( busytype == m_defBusyType ) return;
|
|
|
|
m_defBusyType = busytype;
|
|
|
|
|
|
|
|
if( m_cursorStack.empty() )
|
|
|
|
SetManualBusyCursor( busytype );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScopedBusyCursor::SetManualBusyCursor( BusyCursorType busytype )
|
|
|
|
{
|
|
|
|
switch( busytype )
|
|
|
|
{
|
|
|
|
case Cursor_NotBusy: wxSetCursor( wxNullCursor ); break;
|
|
|
|
case Cursor_KindaBusy: wxSetCursor( StockCursors.GetArrowWait() ); break;
|
|
|
|
case Cursor_ReallyBusy: wxSetCursor( *wxHOURGLASS_CURSOR ); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const wxCursor& MoreStockCursors::GetArrowWait()
|
|
|
|
{
|
|
|
|
if( !m_arrowWait )
|
|
|
|
m_arrowWait = new wxCursor( wxCURSOR_ARROWWAIT );
|
|
|
|
return *m_arrowWait;
|
|
|
|
}
|
|
|
|
|
|
|
|
MoreStockCursors StockCursors;
|
2009-11-09 15:00:45 +00:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------------
|
2009-11-10 17:53:22 +00:00
|
|
|
// pxFormatToolTipText / pxSetToolTip
|
2009-11-09 15:00:45 +00:00
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// This is the preferred way to assign tooltips to wxWindow-based objects, as it performs the
|
|
|
|
// necessary text wrapping on platforms that need it. On windows tooltips are wrapped at 600
|
|
|
|
// pixels, or 66% of the screen width, whichever is smaller. GTK and MAC perform internal
|
|
|
|
// wrapping, so this function does a regular assignment there.
|
|
|
|
|
2009-11-10 17:53:22 +00:00
|
|
|
wxString pxFormatToolTipText( wxWindow* wind, const wxString& src )
|
|
|
|
{
|
2009-11-09 15:00:45 +00:00
|
|
|
// Windows needs manual tooltip word wrapping (sigh).
|
|
|
|
// GTK and Mac are a wee bit more clever (except in GTK tooltips don't show at all
|
|
|
|
// half the time because of some other bug .. sigh)
|
2009-11-10 17:53:22 +00:00
|
|
|
|
2009-11-09 15:00:45 +00:00
|
|
|
#ifdef __WXMSW__
|
2009-11-10 17:53:22 +00:00
|
|
|
if( wind == NULL ) return src; // Silently ignore nulls
|
2009-11-09 15:00:45 +00:00
|
|
|
int whee = wxGetDisplaySize().GetWidth() * 0.75;
|
2009-11-10 17:53:22 +00:00
|
|
|
return pxTextWrapper().Wrap( *wind, src, std::min( whee, 600 ) ).GetResult();
|
2009-11-09 15:00:45 +00:00
|
|
|
#else
|
2009-11-10 17:53:22 +00:00
|
|
|
return src;
|
2009-11-09 15:00:45 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-11-10 17:53:22 +00:00
|
|
|
void pxSetToolTip( wxWindow* wind, const wxString& src )
|
|
|
|
{
|
|
|
|
if( wind == NULL ) return; // Silently ignore nulls
|
|
|
|
wind->SetToolTip( pxFormatToolTipText(wind, src) );
|
|
|
|
}
|
|
|
|
|
2009-11-09 15:00:45 +00:00
|
|
|
void pxSetToolTip( wxWindow& wind, const wxString& src )
|
|
|
|
{
|
|
|
|
pxSetToolTip( &wind, src );
|
|
|
|
}
|