mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-15 10:39:13 +01:00
822326eea9
From wxWidgets master 81570ae070b35c9d52de47b1f14897f3ff1a66c7. include/wx/defs.h -- __w64 warning disable patch by comex brought forward. include/wx/msw/window.h -- added GetContentScaleFactor() which was not implemented on Windows but is necessary for wxBitmap scaling on Mac OS X so it needs to work to avoid #ifdef-ing the code. src/gtk/window.cpp -- Modified DoSetClientSize() to direct call wxWindowGTK::DoSetSize() instead of using public wxWindowBase::SetSize() which now prevents derived classes (like wxAuiToolbar) intercepting the call and breaking it. This matches Windows which does NOT need to call DoSetSize internally. End result is this fixes Dolphin's debug tools toolbars on Linux. src/osx/window_osx.cpp -- Same fix as for GTK since it has the same issue. src/msw/radiobox.cpp -- Hacked to fix display in HiDPI (was clipping off end of text). Updated CMakeLists for Linux and Mac OS X. Small code changes to Dolphin to fix debug error boxes, deprecation warnings, and retain previous UI behavior on Windows.
56 lines
1.7 KiB
C++
56 lines
1.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/gtk/tooltip.h
|
|
// Purpose: wxToolTip class
|
|
// Author: Robert Roebling
|
|
// Copyright: (c) 1998 Robert Roebling
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_GTKTOOLTIP_H_
|
|
#define _WX_GTKTOOLTIP_H_
|
|
|
|
#include "wx/string.h"
|
|
#include "wx/object.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// forward declarations
|
|
//-----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxWindow;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// wxToolTip
|
|
//-----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_CORE wxToolTip : public wxObject
|
|
{
|
|
public:
|
|
wxToolTip( const wxString &tip );
|
|
|
|
// globally change the tooltip parameters
|
|
static void Enable( bool flag );
|
|
static void SetDelay( long msecs );
|
|
// set the delay after which the tooltip disappears or how long the tooltip remains visible
|
|
static void SetAutoPop(long msecs);
|
|
// set the delay between subsequent tooltips to appear
|
|
static void SetReshow(long msecs);
|
|
|
|
// get/set the tooltip text
|
|
void SetTip( const wxString &tip );
|
|
wxString GetTip() const { return m_text; }
|
|
|
|
wxWindow *GetWindow() const { return m_window; }
|
|
|
|
// Implementation
|
|
void GTKSetWindow(wxWindow* win);
|
|
static void GTKApply(GtkWidget* widget, const char* tip);
|
|
|
|
private:
|
|
wxString m_text;
|
|
wxWindow *m_window;
|
|
|
|
wxDECLARE_ABSTRACT_CLASS(wxToolTip);
|
|
};
|
|
|
|
#endif // _WX_GTKTOOLTIP_H_
|