Include wx/settings.h according to precompiled headers of wx/wx.h (with other minor cleaning).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39310 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2006-05-24 07:16:32 +00:00
parent 13199c3dcb
commit 9eddec696f
101 changed files with 193 additions and 190 deletions

View File

@ -11,11 +11,12 @@
#include "wx/wxprec.h"
#include "wx/settings.h"
#ifndef WX_PRECOMP
#include "wx/utils.h"
#endif
#include "wx/settings.h"
#include "wx/gdicmn.h"
#include "wx/cocoa/autorelease.h"

View File

@ -21,10 +21,10 @@
#ifndef WX_PRECOMP
#include "wx/dcmemory.h"
#include "wx/pen.h"
#include "wx/settings.h"
#endif //WX_PRECOMP
#include "wx/gdicmn.h"
#include "wx/settings.h"
/*
* wxEffects: various 3D effects

View File

@ -33,11 +33,11 @@
#include "wx/palette.h"
#include "wx/icon.h"
#include "wx/cursor.h"
#include "wx/settings.h"
#endif
#include "wx/bitmap.h"
#include "wx/font.h"
#include "wx/settings.h"
#include "wx/hashmap.h"
#include <string.h>

View File

@ -22,9 +22,10 @@
#pragma hdrstop
#endif
#include "wx/settings.h"
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/settings.h"
#endif //WX_PRECOMP
// ----------------------------------------------------------------------------

View File

@ -22,11 +22,11 @@
#include "wx/intl.h"
#include "wx/math.h"
#include "wx/utils.h"
#include "wx/settings.h"
#endif // WX_PRECOMP
#include "wx/sizer.h"
#include "wx/statbox.h"
#include "wx/settings.h"
#include "wx/listimpl.cpp"
#if WXWIN_COMPATIBILITY_2_4

View File

@ -31,11 +31,11 @@
#ifndef WX_PRECOMP
#include "wx/control.h"
#include "wx/frame.h"
#include "wx/settings.h"
#endif
#if wxUSE_IMAGE
#include "wx/image.h"
#include "wx/settings.h"
#endif // wxUSE_IMAGE
// ----------------------------------------------------------------------------

View File

@ -36,10 +36,10 @@
#include "wx/log.h"
#include "wx/frame.h"
#include "wx/dcclient.h"
#include "wx/settings.h"
#endif
#include "wx/image.h"
#include "wx/settings.h"
// ----------------------------------------------------------------------------
// wxButtonToolBarTool: our implementation of wxToolBarToolBase

View File

@ -26,10 +26,14 @@
#if wxUSE_CHOICEBOOK
#include "wx/choice.h"
#include "wx/choicebk.h"
#ifndef WX_PRECOMP
#include "wx/settings.h"
#endif
#include "wx/choice.h"
#include "wx/imaglist.h"
#include "wx/settings.h"
#include "wx/sizer.h"
// ----------------------------------------------------------------------------

View File

@ -25,13 +25,13 @@
#include "wx/log.h"
#include "wx/dcclient.h"
#include "wx/timer.h"
#include "wx/settings.h"
#endif
#include "wx/stockitem.h"
#include "wx/calctrl.h"
#include "wx/popupwin.h"
#include "wx/renderer.h"
#include "wx/settings.h"
#ifdef __WXMSW__
#include "wx/msw/wrapwin.h"

View File

@ -27,6 +27,7 @@
#include "wx/utils.h"
#include "wx/button.h"
#include "wx/icon.h"
#include "wx/settings.h"
#endif
#include "wx/module.h"
@ -41,7 +42,6 @@
#include "wx/sizer.h"
#include "wx/tokenzr.h"
#include "wx/dir.h"
#include "wx/settings.h"
#include "wx/artprov.h"
#include "wx/mimetype.h"
#include "wx/image.h"

View File

@ -37,10 +37,10 @@
#include "wx/radiobox.h"
#include "wx/stattext.h"
#include "wx/textctrl.h"
#include "wx/settings.h"
#endif
#include "wx/fdrepdlg.h"
#include "wx/settings.h"
// ----------------------------------------------------------------------------
// constants

View File

@ -26,6 +26,7 @@
#ifndef WX_PRECOMP
#include "wx/hash.h"
#include "wx/intl.h"
#include "wx/settings.h"
#endif
#include "wx/checkbox.h"
@ -44,7 +45,6 @@
#include "wx/imaglist.h"
#include "wx/dir.h"
#include "wx/artprov.h"
#include "wx/settings.h"
#include "wx/filefn.h"
#include "wx/file.h" // for wxS_IXXX constants only
#include "wx/filedlg.h" // wxOPEN, wxSAVE...

View File

@ -30,6 +30,7 @@
#include "wx/choice.h"
#include "wx/checkbox.h"
#include "wx/intl.h"
#include "wx/settings.h"
#endif
#include <string.h>
@ -39,7 +40,6 @@
#include "wx/sizer.h"
#include "wx/fontdlg.h"
#include "wx/generic/fontdlgg.h"
#include "wx/settings.h"
#if USE_SPINCTRL_FOR_POINT_SIZE
#include "wx/spinctrl.h"

View File

@ -26,11 +26,15 @@
#if wxUSE_LISTBOOK
#include "wx/listbook.h"
#ifndef WX_PRECOMP
#include "wx/settings.h"
#endif
#include "wx/listctrl.h"
#include "wx/statline.h"
#include "wx/listbook.h"
#include "wx/imaglist.h"
#include "wx/settings.h"
// ----------------------------------------------------------------------------
// various wxWidgets macros
@ -303,7 +307,7 @@ wxListbook::InsertPage(size_t n,
InvalidateBestSize();
// GetListView()->InvalidateBestSize();
GetListView()->Arrange();
if (GetPageCount() == 1)
{
wxSizeEvent sz(GetSize(), GetId());
@ -354,12 +358,12 @@ bool wxListbook::DeleteAllPages()
GetListView()->DeleteAllItems();
if (!wxBookCtrlBase::DeleteAllPages())
return false;
m_selection = -1;
wxSizeEvent sz(GetSize(), GetId());
ProcessEvent(sz);
return true;
}

View File

@ -29,6 +29,7 @@
#include "wx/icon.h"
#include "wx/sizer.h"
#include "wx/app.h"
#include "wx/settings.h"
#endif
#include <stdio.h>
@ -37,10 +38,9 @@
#define __WX_COMPILING_MSGDLGG_CPP__ 1
#include "wx/msgdlg.h"
#include "wx/artprov.h"
#include "wx/settings.h"
#if wxUSE_STATLINE
#include "wx/statline.h"
#include "wx/statline.h"
#endif
// ----------------------------------------------------------------------------
@ -156,4 +156,3 @@ void wxGenericMessageDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
}
#endif // wxUSE_MSGDLG && !defined(__WXGTK20__)

View File

@ -32,9 +32,9 @@
#include "wx/string.h"
#include "wx/log.h"
#include "wx/dcclient.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/generic/imaglist.h"
#include "wx/generic/tabg.h"

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////////
// Name: progdlgg.h
// Name: src/generic/progdlgg.cpp
// Purpose: wxProgressDialog class
// Author: Karsten Ballüder
// Modified by:
@ -37,10 +37,10 @@
#include "wx/intl.h"
#include "wx/dcclient.h"
#include "wx/timer.h"
#include "wx/settings.h"
#endif
#include "wx/generic/progdlgg.h"
#include "wx/settings.h"
// ---------------------------------------------------------------------------
// macros

View File

@ -29,11 +29,11 @@
#ifndef WX_PRECOMP
#include "wx/string.h"
#include "wx/dc.h"
#include "wx/settings.h"
#endif //WX_PRECOMP
#include "wx/gdicmn.h"
#include "wx/settings.h"
#include "wx/splitter.h"
#include "wx/dcmirror.h"
#include "wx/module.h"

View File

@ -37,11 +37,11 @@
#include "wx/statbmp.h"
#include "wx/stattext.h"
#include "wx/sizer.h"
#include "wx/settings.h"
#endif // WX_PRECOMP
#include "wx/statline.h"
#include "wx/artprov.h"
#include "wx/settings.h"
#include "wx/tipdlg.h"

View File

@ -31,14 +31,13 @@
#ifndef WX_PRECOMP
#include "wx/dcclient.h"
#include "wx/timer.h"
#include "wx/settings.h"
#endif // WX_PRECOMP
#ifdef __WXGTK__
#include <gtk/gtk.h>
#endif
#include "wx/settings.h"
// ----------------------------------------------------------------------------
// constants
// ----------------------------------------------------------------------------

View File

@ -27,8 +27,12 @@
#if wxUSE_TREEBOOK
#include "wx/treebook.h"
#ifndef WX_PRECOMP
#include "wx/settings.h"
#endif
#include "wx/imaglist.h"
#include "wx/settings.h"
// ----------------------------------------------------------------------------
// various wxWidgets macros

View File

@ -31,12 +31,12 @@
#ifndef WX_PRECOMP
#include "wx/dcclient.h"
#include "wx/timer.h"
#include "wx/settings.h"
#endif
#include "wx/generic/treectlg.h"
#include "wx/textctrl.h"
#include "wx/imaglist.h"
#include "wx/settings.h"
#include "wx/renderer.h"

View File

@ -35,11 +35,11 @@
#include "wx/intl.h"
#include "wx/statbmp.h"
#include "wx/button.h"
#include "wx/settings.h"
#endif //WX_PRECOMP
#include "wx/statline.h"
#include "wx/sizer.h"
#include "wx/settings.h"
#include "wx/wizard.h"

View File

@ -23,12 +23,12 @@
#include "wx/log.h"
#include "wx/utils.h"
#include "wx/dialog.h"
#include "wx/settings.h"
#endif
#include "wx/gdicmn.h"
#include "wx/memory.h"
#include "wx/font.h"
#include "wx/settings.h"
#include "wx/msgdlg.h"
#include "wx/file.h"
#include "wx/filename.h"

View File

@ -16,9 +16,9 @@
#ifndef WX_PRECOMP
#include "wx/intl.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/arrstr.h"
#include "wx/textctrl.h" // for wxEVT_COMMAND_TEXT_UPDATED

View File

@ -16,10 +16,10 @@
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/settings.h"
#endif
#include "wx/fontutil.h"
#include "wx/settings.h"
#include "wx/gtk/private.h"
// ============================================================================
@ -34,7 +34,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxControl, wxWindow)
wxControl::wxControl()
{
m_needParent = TRUE;
m_needParent = true;
}
bool wxControl::Create( wxWindow *parent,

View File

@ -23,13 +23,13 @@
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/fontutil.h"
#include "wx/cmndata.h"
#include "wx/gdicmn.h"
#include "wx/tokenzr.h"
#include "wx/settings.h"
#include <strings.h>

View File

@ -20,11 +20,11 @@
#include "wx/intl.h"
#include "wx/log.h"
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/arrstr.h"
#include "wx/checklst.h"
#include "wx/settings.h"
#include "wx/gtk/private.h"
#include "wx/gtk/treeentry_gtk.h"

View File

@ -30,13 +30,12 @@
#include "wx/window.h"
#include "wx/dc.h"
#include "wx/dcclient.h"
#include "wx/settings.h"
#endif
#include <gtk/gtk.h>
#include "wx/gtk/win_gtk.h"
#include "wx/settings.h"
// RR: After a correction to the orientation of the sash
// this doesn't seem to be required anymore and it
// seems to confuse some themes so USE_ERASE_RECT=0

View File

@ -17,10 +17,10 @@
#include "wx/log.h"
#include "wx/utils.h"
#include "wx/panel.h"
#include "wx/settings.h"
#endif
#include "wx/math.h"
#include "wx/settings.h"
#include "wx/strconv.h"
#include "wx/fontutil.h" // for wxNativeFontInfo (GetNativeFontInfo())
@ -470,7 +470,7 @@ gtk_text_changed_callback( GtkWidget *widget, wxTextCtrl *win )
// common part of the event handlers below
static void
handle_text_clipboard_callback( GtkWidget *widget, wxTextCtrl *win,
wxEventType eventType, const gchar * signal_name)
wxEventType eventType, const gchar * signal_name)
{
wxClipboardTextEvent event( eventType, win->GetId() );
event.SetEventObject( win );
@ -478,7 +478,7 @@ handle_text_clipboard_callback( GtkWidget *widget, wxTextCtrl *win,
{
// don't let the default processing to take place if we did something
// ourselves in the event handler
g_signal_stop_emission_by_name (widget, signal_name);
g_signal_stop_emission_by_name (widget, signal_name);
}
}
@ -486,22 +486,22 @@ extern "C" {
static void
gtk_copy_clipboard_callback( GtkWidget *widget, wxTextCtrl *win )
{
handle_text_clipboard_callback(
widget, win, wxEVT_COMMAND_TEXT_COPY, "copy-clipboard" );
handle_text_clipboard_callback(
widget, win, wxEVT_COMMAND_TEXT_COPY, "copy-clipboard" );
}
static void
gtk_cut_clipboard_callback( GtkWidget *widget, wxTextCtrl *win )
{
handle_text_clipboard_callback(
widget, win, wxEVT_COMMAND_TEXT_CUT, "cut-clipboard" );
handle_text_clipboard_callback(
widget, win, wxEVT_COMMAND_TEXT_CUT, "cut-clipboard" );
}
static void
gtk_paste_clipboard_callback( GtkWidget *widget, wxTextCtrl *win )
{
handle_text_clipboard_callback(
widget, win, wxEVT_COMMAND_TEXT_PASTE, "paste-clipboard" );
handle_text_clipboard_callback(
widget, win, wxEVT_COMMAND_TEXT_PASTE, "paste-clipboard" );
}
}

View File

@ -30,11 +30,11 @@
#include "wx/dcclient.h"
#include "wx/dialog.h"
#include "wx/timer.h"
#include "wx/settings.h"
#endif
#include "wx/control.h"
#include "wx/gtk/private.h"
#include "wx/settings.h"
#include "wx/evtloop.h"
#include <glib.h>

View File

@ -25,14 +25,16 @@
#include "wx/dcclient.h"
#include "wx/menu.h"
#include "wx/dialog.h"
#include "wx/settings.h"
#endif
#include "wx/layout.h"
#include "wx/msgdlg.h"
#include "wx/module.h"
#include "wx/combobox.h"
#if wxUSE_TOOLBAR_NATIVE
#include "wx/toolbar.h"
#include "wx/toolbar.h"
#endif
#if wxUSE_DRAG_AND_DROP
@ -52,7 +54,6 @@
#endif
#include "wx/statusbr.h"
#include "wx/settings.h"
#include "wx/fontutil.h"
#ifdef __WXDEBUG__

View File

@ -23,12 +23,12 @@
#include "wx/log.h"
#include "wx/utils.h"
#include "wx/dialog.h"
#include "wx/settings.h"
#endif
#include "wx/gdicmn.h"
#include "wx/memory.h"
#include "wx/font.h"
#include "wx/settings.h"
#include "wx/msgdlg.h"
#include "wx/file.h"
#include "wx/filename.h"

View File

@ -16,9 +16,9 @@
#ifndef WX_PRECOMP
#include "wx/intl.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/arrstr.h"
#include "wx/textctrl.h" // for wxEVT_COMMAND_TEXT_UPDATED

View File

@ -16,10 +16,10 @@
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/settings.h"
#endif
#include "wx/fontutil.h"
#include "wx/settings.h"
#include "wx/gtk1/private.h"
// ============================================================================
@ -34,7 +34,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxControl, wxWindow)
wxControl::wxControl()
{
m_needParent = TRUE;
m_needParent = true;
}
bool wxControl::Create( wxWindow *parent,

View File

@ -22,6 +22,7 @@
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/settings.h"
#endif
#include "wx/fontutil.h"
@ -29,7 +30,6 @@
#include "wx/utils.h"
#include "wx/gdicmn.h"
#include "wx/tokenzr.h"
#include "wx/settings.h"
#include <strings.h>
@ -62,7 +62,7 @@ public:
int family = wxFONTFAMILY_DEFAULT,
int style = wxFONTSTYLE_NORMAL,
int weight = wxFONTWEIGHT_NORMAL,
bool underlined = FALSE,
bool underlined = false,
const wxString& faceName = wxEmptyString,
wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
@ -91,7 +91,7 @@ public:
void SetFaceName(const wxString& facename);
void SetEncoding(wxFontEncoding encoding);
void SetNoAntiAliasing( bool no = TRUE ) { m_noAA = no; }
void SetNoAntiAliasing( bool no = true ) { m_noAA = no; }
bool GetNoAntiAliasing() const { return m_noAA; }
// and this one also modifies all the other font data fields
@ -182,12 +182,12 @@ void wxFontRefData::Init(int pointSize,
m_underlined = underlined;
m_encoding = encoding;
m_noAA = FALSE;
m_noAA = false;
}
void wxFontRefData::InitFromNative()
{
m_noAA = FALSE;
m_noAA = false;
// get the font parameters from the XLFD
// -------------------------------------
@ -254,7 +254,7 @@ void wxFontRefData::InitFromNative()
}
// X fonts are never underlined...
m_underlined = FALSE;
m_underlined = false;
// deal with font encoding
wxString
@ -496,7 +496,7 @@ bool wxFont::Create( int pointSize,
m_refData = new wxFontRefData(pointSize, family, style, weight,
underlined, face, encoding);
return TRUE;
return true;
}
bool wxFont::Create(const wxString& fontname)
@ -506,12 +506,12 @@ bool wxFont::Create(const wxString& fontname)
{
*this = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
return TRUE;
return true;
}
m_refData = new wxFontRefData(fontname);
return TRUE;
return true;
}
void wxFont::Unshare()
@ -605,7 +605,7 @@ int wxFont::GetWeight() const
bool wxFont::GetUnderlined() const
{
wxCHECK_MSG( Ok(), FALSE, wxT("invalid font") );
wxCHECK_MSG( Ok(), false, wxT("invalid font") );
return M_FONTDATA->m_underlined;
}
@ -642,7 +642,7 @@ const wxNativeFontInfo *wxFont::GetNativeFontInfo() const
bool wxFont::IsFixedWidth() const
{
wxCHECK_MSG( Ok(), FALSE, wxT("invalid font") );
wxCHECK_MSG( Ok(), false, wxT("invalid font") );
if ( M_FONTDATA->HasNativeFont() )
{

View File

@ -18,11 +18,11 @@
#include "wx/dynarray.h"
#include "wx/intl.h"
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/arrstr.h"
#include "wx/checklst.h"
#include "wx/settings.h"
#include "wx/gtk1/private.h"
#if wxUSE_TOOLTIPS

View File

@ -17,10 +17,10 @@
#include "wx/log.h"
#include "wx/utils.h"
#include "wx/panel.h"
#include "wx/settings.h"
#endif
#include "wx/math.h"
#include "wx/settings.h"
#include "wx/strconv.h"
#include "wx/fontutil.h" // for wxNativeFontInfo (GetNativeFontInfo())

View File

@ -30,11 +30,11 @@
#include "wx/dcclient.h"
#include "wx/dialog.h"
#include "wx/timer.h"
#include "wx/settings.h"
#endif
#include "wx/control.h"
#include "wx/gtk1/private.h"
#include "wx/settings.h"
#include "wx/evtloop.h"
#include <glib.h>

View File

@ -25,6 +25,7 @@
#include "wx/dcclient.h"
#include "wx/menu.h"
#include "wx/dialog.h"
#include "wx/settings.h"
#endif
#include "wx/layout.h"
@ -49,7 +50,6 @@
#endif
#include "wx/statusbr.h"
#include "wx/settings.h"
#include "wx/fontutil.h"
#ifdef __WXDEBUG__

View File

@ -34,6 +34,7 @@
#include "wx/statbox.h"
#include "wx/radiobox.h"
#include "wx/menu.h"
#include "wx/settings.h"
#endif // WXPRECOMP
#ifdef __WXMAC__
@ -57,7 +58,6 @@
#include "wx/artprov.h"
#include "wx/spinctrl.h"
#include "wx/choicdlg.h"
#include "wx/settings.h"
IMPLEMENT_DYNAMIC_CLASS(wxHtmlHelpFrame, wxFrame)

View File

@ -34,6 +34,7 @@
#include "wx/statbox.h"
#include "wx/radiobox.h"
#include "wx/menu.h"
#include "wx/settings.h"
#endif // WXPRECOMP
#ifdef __WXMAC__
@ -58,7 +59,6 @@
#include "wx/artprov.h"
#include "wx/spinctrl.h"
#include "wx/choicdlg.h"
#include "wx/settings.h"
// what is considered "small index"?
#define INDEX_IS_SMALL 100

View File

@ -20,11 +20,11 @@
#include "wx/brush.h"
#include "wx/colour.h"
#include "wx/dc.h"
#include "wx/settings.h"
#endif
#include "wx/html/htmlcell.h"
#include "wx/html/htmlwin.h"
#include "wx/settings.h"
#include "wx/module.h"
#include <stdlib.h>

View File

@ -23,13 +23,13 @@
#include "wx/frame.h"
#include "wx/dcmemory.h"
#include "wx/timer.h"
#include "wx/settings.h"
#endif
#include "wx/html/htmlwin.h"
#include "wx/html/htmlproc.h"
#include "wx/clipbrd.h"
#include "wx/dataobj.h"
#include "wx/settings.h"
#include "wx/arrimpl.cpp"
#include "wx/listimpl.cpp"

View File

@ -21,6 +21,7 @@
#include "wx/log.h"
#include "wx/intl.h"
#include "wx/dc.h"
#include "wx/settings.h"
#endif
#include "wx/print.h"
@ -29,7 +30,6 @@
#include "wx/wxhtml.h"
#include "wx/wfstream.h"
#include "wx/module.h"
#include "wx/settings.h"
//--------------------------------------------------------------------------------

View File

@ -19,13 +19,13 @@
#include "wx/intl.h"
#include "wx/dc.h"
#include "wx/log.h"
#include "wx/settings.h"
#endif
#include "wx/html/htmldefs.h"
#include "wx/html/winpars.h"
#include "wx/html/htmlwin.h"
#include "wx/fontmap.h"
#include "wx/settings.h"
#include "wx/uri.h"

View File

@ -17,11 +17,11 @@
#include "wx/log.h"
#include "wx/window.h"
#include "wx/dcmemory.h"
#include "wx/settings.h"
#endif
#include "wx/region.h"
#include "wx/toplevel.h"
#include "wx/settings.h"
#include "wx/math.h"
#include "wx/mac/private.h"
@ -78,7 +78,7 @@ static wxBrush MacGetBackgroundBrush( wxWindow* window )
if ( parent->IsKindOf( CLASSINFO( wxNotebook ) )
#if wxUSE_TAB_DIALOG
|| parent->IsKindOf( CLASSINFO( wxTabCtrl ) )
#endif // wxUSE_TAB_DIALOG
#endif // wxUSE_TAB_DIALOG
)
{
Rect extent = { 0 , 0 , 0 , 0 } ;

View File

@ -17,10 +17,9 @@
#include "wx/app.h"
#include "wx/utils.h"
#include "wx/frame.h"
#include "wx/settings.h"
#endif // WX_PRECOMP
#include "wx/settings.h"
#include "wx/mac/uma.h"

View File

@ -18,12 +18,12 @@
#include "wx/dcclient.h"
#include "wx/menu.h"
#include "wx/dialog.h"
#include "wx/settings.h"
#endif // WX_PRECOMP
#include "wx/statusbr.h"
#include "wx/toolbar.h"
#include "wx/menuitem.h"
#include "wx/settings.h"
#include "wx/mac/uma.h"

View File

@ -22,10 +22,9 @@
#ifndef WX_PRECOMP
#include "wx/frame.h"
#include "wx/log.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/mac/uma.h"
// DLL options compatibility check:
@ -316,7 +315,7 @@ void wxGLCanvas::SetColour(const wxChar *colour)
bool wxGLCanvas::Show(bool show)
{
if ( !wxWindow::Show( show ) )
return FALSE ;
return false ;
/*
if ( !show )
{
@ -335,7 +334,7 @@ bool wxGLCanvas::Show(bool show)
}
}
*/
return TRUE ;
return true ;
}
void wxGLCanvas::MacVisibilityChanged()

View File

@ -22,9 +22,9 @@
#include "wx/app.h"
#include "wx/utils.h"
#include "wx/button.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/toplevel.h"
IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl)

View File

@ -14,9 +14,9 @@
#ifndef WX_PRECOMP
#include "wx/intl.h"
#include "wx/log.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/scrolbar.h"
#include "wx/mac/uma.h"
@ -238,5 +238,5 @@ wxSize wxScrollBar::DoGetBestSize() const
wxSize best(w, h);
CacheBestSize(best);
return best;
return best;
}

View File

@ -20,11 +20,11 @@
#include "wx/utils.h"
#include "wx/dc.h"
#include "wx/dcclient.h"
#include "wx/settings.h"
#endif // WX_PRECOMP
#include "wx/notebook.h"
#include "wx/tabctrl.h"
#include "wx/settings.h"
#include "wx/mac/uma.h"

View File

@ -22,6 +22,7 @@
#include "wx/dc.h"
#include "wx/button.h"
#include "wx/menu.h"
#include "wx/settings.h"
#endif
#ifdef __DARWIN__
@ -42,7 +43,6 @@
#endif
#include "wx/toplevel.h"
#include "wx/settings.h"
#include "wx/filefn.h"
#include "wx/sysopt.h"
@ -202,7 +202,7 @@ public :
virtual bool SetupCursor( const wxPoint& pt )
{ return false ; }
virtual void Clear() ;
virtual bool CanUndo() const;
virtual void Undo() ;
@ -307,7 +307,7 @@ public :
const wxPoint& pos,
const wxSize& size, long style ) ;
~wxMacMLTEHIViewControl() ;
virtual OSStatus SetFocus( ControlFocusPart focusPart ) ;
virtual bool HasFocus() const ;
virtual void SetBackground( const wxBrush &brush) ;
@ -1382,7 +1382,7 @@ static pascal OSStatus wxMacUnicodeTextControlControlEventHandler( EventHandlerC
OSStatus result = eventNotHandledErr ;
wxMacUnicodeTextControl* focus = (wxMacUnicodeTextControl*) data ;
wxMacCarbonEvent cEvent( event ) ;
switch ( GetEventKind( event ) )
{
case kEventControlSetFocusPart :
@ -1404,20 +1404,20 @@ static pascal OSStatus wxMacUnicodeTextControlControlEventHandler( EventHandlerC
default:
break ;
}
return result ;
}
static pascal OSStatus wxMacUnicodeTextControlEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
{
OSStatus result = eventNotHandledErr ;
switch ( GetEventClass( event ) )
{
case kEventClassControl :
result = wxMacUnicodeTextControlControlEventHandler( handler , event , data ) ;
break ;
default :
break ;
}
@ -1539,7 +1539,7 @@ void wxMacUnicodeTextControl::GetSelection( long* from, long* to ) const
verify_noerr( GetData<ControlEditTextSelectionRec>( 0, kControlEditTextSelectionTag, &sel ) ) ;
else
sel = m_selection ;
if ( from )
*from = sel.selStart ;
if ( to )
@ -1561,7 +1561,7 @@ void wxMacUnicodeTextControl::SetSelection( long from , long to )
if ((from == -1) && (to == -1))
{
from = 0 ;
to = textLength ;
to = textLength ;
}
else
{
@ -1855,7 +1855,7 @@ void wxMacMLTEControl::AdjustCreationAttributes( const wxColour &background, boo
| kTXNSupportSpellCheckCommandUpdating
| kTXNSupportFontCommandProcessing
| kTXNSupportFontCommandUpdating;
TXNSetCommandEventSupport( m_txn , options ) ;
}
}
@ -1881,7 +1881,7 @@ void wxMacMLTEControl::TXNSetAttribute( const wxTextAttr& style , long from , lo
if ( style.HasFont() )
{
const wxFont &font = style.GetFont() ;
#if 0 // old version
Str255 fontName = "\pMonaco" ;
SInt16 fontSize = 12 ;
@ -3012,7 +3012,7 @@ OSStatus wxMacMLTEClassicControl::DoCreate()
#if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
// tiger multi-line textcontrols with no CR in the entire content
// don't scroll automatically, so we need a hack.
// don't scroll automatically, so we need a hack.
// This attempt only works 'before' the key (ie before CallNextEventHandler)
// is processed, thus the scrolling always occurs one character too late, but
// better than nothing ...
@ -3021,12 +3021,12 @@ static const EventTypeSpec eventList[] =
{
{ kEventClassTextInput, kEventTextInputUnicodeForKeyEvent } ,
} ;
static pascal OSStatus wxMacUnicodeTextEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
{
OSStatus result = eventNotHandledErr ;
wxMacMLTEHIViewControl* focus = (wxMacMLTEHIViewControl*) data ;
switch ( GetEventKind( event ) )
{
case kEventTextInputUnicodeForKeyEvent :
@ -3044,20 +3044,20 @@ static pascal OSStatus wxMacUnicodeTextEventHandler( EventHandlerCallRef handler
default:
break ;
}
return result ;
}
static pascal OSStatus wxMacTextControlEventHandler( EventHandlerCallRef handler , EventRef event , void *data )
{
OSStatus result = eventNotHandledErr ;
switch ( GetEventClass( event ) )
{
case kEventClassTextInput :
result = wxMacUnicodeTextEventHandler( handler , event , data ) ;
break ;
default :
break ;
}

View File

@ -24,12 +24,12 @@
#include "wx/button.h"
#include "wx/menu.h"
#include "wx/dialog.h"
#include "wx/settings.h"
#endif
#include "wx/layout.h"
#include "wx/scrolbar.h"
#include "wx/statbox.h"
#include "wx/settings.h"
#include "wx/msgdlg.h"
#include "wx/tooltip.h"
#include "wx/statusbr.h"

View File

@ -17,10 +17,9 @@
#include "wx/app.h"
#include "wx/utils.h"
#include "wx/frame.h"
#include "wx/settings.h"
#endif // WX_PRECOMP
#include "wx/settings.h"
#include "wx/mac/uma.h"
// Lists to keep track of windows, so we can disable/enable them

View File

@ -18,12 +18,12 @@
#include "wx/dcclient.h"
#include "wx/menu.h"
#include "wx/dialog.h"
#include "wx/settings.h"
#endif // WX_PRECOMP
#include "wx/statusbr.h"
#include "wx/toolbar.h"
#include "wx/menuitem.h"
#include "wx/settings.h"
#include "wx/mac/uma.h"

View File

@ -22,10 +22,9 @@
#ifndef WX_PRECOMP
#include "wx/frame.h"
#include "wx/log.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/mac/uma.h"
// DLL options compatibility check:

View File

@ -21,9 +21,9 @@
#include "wx/app.h"
#include "wx/utils.h"
#include "wx/button.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/toplevel.h"
IMPLEMENT_DYNAMIC_CLASS(wxListBox, wxControl)

View File

@ -16,10 +16,9 @@
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/menu.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/mac/private.h"
#include "wx/mac/uma.h"

View File

@ -18,11 +18,11 @@
#include "wx/utils.h"
#include "wx/dc.h"
#include "wx/dcclient.h"
#include "wx/settings.h"
#endif
#include "wx/notebook.h"
#include "wx/tabctrl.h"
#include "wx/settings.h"
#include <stdio.h>

View File

@ -24,6 +24,7 @@
#include "wx/utils.h"
#include "wx/dc.h"
#include "wx/button.h"
#include "wx/settings.h"
#endif
#ifdef __DARWIN__
@ -46,7 +47,6 @@
#include "wx/toplevel.h"
#include "wx/notebook.h"
#include "wx/tabctrl.h"
#include "wx/settings.h"
#include "wx/filefn.h"
#if defined(__BORLANDC__) && !defined(__WIN32__)

View File

@ -24,13 +24,13 @@
#include "wx/button.h"
#include "wx/menu.h"
#include "wx/dialog.h"
#include "wx/settings.h"
#endif
#include "wx/layout.h"
#include "wx/listbox.h"
#include "wx/scrolbar.h"
#include "wx/statbox.h"
#include "wx/settings.h"
#include "wx/msgdlg.h"
#include "wx/notebook.h"
#include "wx/tabctrl.h"

View File

@ -26,13 +26,13 @@
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/fontutil.h"
#include "wx/cmndata.h"
#include "wx/gdicmn.h"
#include "wx/tokenzr.h"
#include "wx/settings.h"
#include "wx/mgl/private.h"
// ----------------------------------------------------------------------------

View File

@ -16,10 +16,9 @@
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#ifdef __VMS__
#pragma message disable nosimpint
#endif
@ -139,5 +138,3 @@ void wxMemoryDC::DoGetSize( int *width, int *height ) const
if (height) (*height) = 0;
};
}

View File

@ -24,9 +24,9 @@
#ifndef WX_PRECOMP
#include "wx/app.h"
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/evtloop.h"
#ifdef __VMS__

View File

@ -24,9 +24,9 @@
#include "wx/intl.h"
#include "wx/app.h"
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/tokenzr.h"
#include "wx/stockitem.h"

View File

@ -34,12 +34,12 @@
#ifndef WX_PRECOMP
#include "wx/string.h"
#include "wx/utils.h" // for wxGetDisplay()
#include "wx/settings.h"
#endif
#include "wx/gdicmn.h"
#include "wx/fontutil.h" // for wxNativeFontInfo
#include "wx/tokenzr.h"
#include "wx/settings.h"
#include "wx/motif/private.h"
IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject)

View File

@ -34,11 +34,11 @@
#include "wx/utils.h"
#include "wx/menu.h"
#include "wx/icon.h"
#include "wx/settings.h"
#endif
#include "wx/statusbr.h"
#include "wx/toolbar.h"
#include "wx/settings.h"
#ifdef __VMS__
#pragma message disable nosimpint

View File

@ -20,6 +20,7 @@
#include "wx/dynarray.h"
#include "wx/log.h"
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#ifdef __VMS
@ -27,7 +28,6 @@
#define XtDisplay XTDISPLAY
#endif
#include "wx/settings.h"
#include "wx/arrstr.h"
#ifdef __VMS__

View File

@ -22,10 +22,9 @@
#ifndef WX_PRECOMP
#include "wx/menu.h"
#include "wx/icon.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#ifdef __VMS__
#pragma message disable nosimpint
#endif

View File

@ -27,10 +27,10 @@
#include "wx/app.h"
#include "wx/utils.h"
#include "wx/frame.h"
#include "wx/settings.h"
#endif
#include "wx/menuitem.h"
#include "wx/settings.h"
#ifdef __VMS__
#pragma message disable nosimpint

View File

@ -38,10 +38,10 @@
#ifndef WX_PRECOMP
#include "wx/intl.h"
#include "wx/app.h"
#include "wx/settings.h"
#endif
#include "wx/motif/private.h"
#include "wx/settings.h"
// ----------------------------------------------------------------------------
// macros

View File

@ -32,9 +32,9 @@
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/filefn.h"
#ifdef __VMS__

View File

@ -30,10 +30,9 @@
#include "wx/app.h"
#include "wx/frame.h"
#include "wx/timer.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#ifdef __VMS__
#pragma message disable nosimpint
#endif

View File

@ -36,10 +36,10 @@
#include "wx/dcclient.h"
#include "wx/button.h"
#include "wx/menu.h"
#include "wx/settings.h"
#endif
#include "wx/layout.h"
#include "wx/settings.h"
#include "wx/scrolwin.h"
#include "wx/module.h"
#include "wx/menuitem.h"

View File

@ -24,9 +24,9 @@
#include "wx/dcmemory.h"
#include "wx/menu.h"
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/ownerdrw.h"
#include "wx/menuitem.h"
#include "wx/fontutil.h"

View File

@ -28,11 +28,11 @@
#include "wx/string.h"
#include "wx/window.h"
#include "wx/dc.h"
#include "wx/settings.h"
#endif //WX_PRECOMP
#include "wx/splitter.h"
#include "wx/renderer.h"
#include "wx/settings.h"
#include "wx/msw/uxtheme.h"
#include "wx/msw/private.h"

View File

@ -20,11 +20,11 @@
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/scrolbar.h"
#include "wx/msw/private.h"
#include "wx/settings.h"
#if wxUSE_EXTENDED_RTTI
WX_DEFINE_FLAGS( wxScrollBarStyle )

View File

@ -24,13 +24,13 @@
#pragma hdrstop
#endif
#include "wx/settings.h"
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/gdicmn.h"
#endif
#include "wx/settings.h"
#include "wx/msw/private.h"
#ifndef SPI_GETFLATMENU
@ -310,10 +310,10 @@ static const int gs_metricsMap[] =
SM_CXBORDER,
SM_CYBORDER,
#ifdef SM_CXCURSOR
SM_CXCURSOR,
SM_CXCURSOR,
SM_CYCURSOR,
#else
-1, -1,
-1, -1,
#endif
SM_CXDOUBLECLK,
SM_CYDOUBLECLK,

View File

@ -32,6 +32,7 @@
#include "wx/dynarray.h"
#include "wx/log.h"
#include "wx/app.h"
#include "wx/settings.h"
#endif
#include "wx/msw/private.h"
@ -46,7 +47,6 @@
#define wxUSE_COMCTL32_SAFELY 0
#include "wx/imaglist.h"
#include "wx/settings.h"
#include "wx/msw/dragimag.h"
// macros to hide the cast ugliness

View File

@ -26,6 +26,7 @@
#include "wx/window.h"
#include "wx/dcmemory.h"
#include "wx/dcscreen.h"
#include "wx/settings.h"
#endif
#include "wx/colour.h"
@ -33,7 +34,6 @@
#include "wx/bitmap.h"
#include "wx/listbox.h"
#include "wx/ownerdrw.h"
#include "wx/settings.h"
#define INCL_PM
#include <os2.h>

View File

@ -22,9 +22,9 @@
#include "wx/dcmemory.h"
#include "wx/menu.h"
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/ownerdrw.h"
#include "wx/menuitem.h"
@ -43,7 +43,7 @@ wxOwnerDrawn::wxOwnerDrawn( const wxString& rsStr,
: m_strName(rsStr)
{
m_bCheckable = bCheckable;
m_bOwnerDrawn = FALSE;
m_bOwnerDrawn = false;
m_nHeight = 0;
m_nMarginWidth = ms_nLastMarginWidth;
if (wxNORMAL_FONT)

View File

@ -18,10 +18,10 @@
#include "wx/brush.h"
#include "wx/gdicmn.h"
#include "wx/window.h"
#include "wx/settings.h"
#endif
#include "wx/module.h"
#include "wx/settings.h"
#include "wx/os2/private.h"
// the module which is used to clean up wxSystemSettings data (this is a

View File

@ -32,12 +32,12 @@
#include "wx/dynarray.h"
#include "wx/log.h"
#include "wx/app.h"
#include "wx/settings.h"
#endif
#include "wx/os2/private.h"
#include "wx/imaglist.h"
#include "wx/settings.h"
// a macro to hide the ugliness of nested casts
#define HITEM(item) (HTREEITEM)(WXHTREEITEM)(item)

View File

@ -23,9 +23,9 @@
#include "wx/dcmemory.h"
#include "wx/menu.h"
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/ownerdrw.h"
#include "wx/menuitem.h"
#include "wx/fontutil.h"

View File

@ -20,11 +20,11 @@
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/scrolbar.h"
#include "wx/palmos/private.h"
#include "wx/settings.h"
#if wxUSE_EXTENDED_RTTI
WX_DEFINE_FLAGS( wxScrollBarStyle )

View File

@ -24,12 +24,13 @@
#pragma hdrstop
#endif
#include "wx/settings.h"
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/gdicmn.h"
#endif
#include "wx/settings.h"
#include "wx/module.h"
#include "wx/fontutil.h"

View File

@ -32,12 +32,12 @@
#include "wx/dynarray.h"
#include "wx/log.h"
#include "wx/app.h"
#include "wx/settings.h"
#endif
#include "wx/palmos/private.h"
#include "wx/imaglist.h"
#include "wx/settings.h"
// macros to hide the cast ugliness
// --------------------------------

View File

@ -13,7 +13,7 @@
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#pragma hdrstop
#endif
#if wxUSE_RICHTEXT
@ -21,12 +21,12 @@
#include "wx/richtext/richtextctrl.h"
#ifndef WX_PRECOMP
#include "wx/wx.h"
#include "wx/wx.h"
#include "wx/settings.h"
#endif
#include "wx/textfile.h"
#include "wx/ffile.h"
#include "wx/settings.h"
#include "wx/filename.h"
#include "wx/dcbuffer.h"
#include "wx/arrimpl.cpp"

View File

@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////
// Name: univ/colschem.cpp
// Name: src/univ/colschem.cpp
// Purpose: (trivial) wxColourScheme implementation
// Author: Vadim Zeitlin
// Modified by:
@ -25,10 +25,9 @@
#endif
#ifndef WX_PRECOMP
#include "wx/settings.h"
#endif // WX_PRECOMP
#include "wx/settings.h"
#include "wx/univ/colschem.h"
#include "wx/univ/theme.h"
@ -93,4 +92,3 @@ wxColour wxSystemSettings::GetColour(wxSystemColour index)
return wxTheme::Get()->GetColourScheme()->Get(col);
}

View File

@ -46,11 +46,11 @@
#include "wx/msw/private.h"
#endif
#include "wx/menu.h"
#include "wx/settings.h"
#endif // WX_PRECOMP
#include "wx/notebook.h"
#include "wx/spinbutt.h"
#include "wx/settings.h"
#include "wx/artprov.h"
#include "wx/toplevel.h"

View File

@ -49,11 +49,11 @@
#include "wx/msw/private.h"
#endif
#include "wx/menu.h"
#include "wx/settings.h"
#endif // WX_PRECOMP
#include "wx/notebook.h"
#include "wx/spinbutt.h"
#include "wx/settings.h"
#include "wx/artprov.h"
#include "wx/toplevel.h"
#include "wx/image.h"
@ -4345,12 +4345,12 @@ void wxWin32Renderer::AdjustSize(wxSize *size, const wxWindow *window)
} else
#endif // wxUSE_BMPBUTTON
#if wxUSE_BUTTON || wxUSE_TOGGLEBTN
if ( 0
if ( 0
# if wxUSE_BUTTON
|| wxDynamicCast(window, wxButton)
|| wxDynamicCast(window, wxButton)
# endif // wxUSE_BUTTON
# if wxUSE_TOGGLEBTN
|| wxDynamicCast(window, wxToggleButton)
|| wxDynamicCast(window, wxToggleButton)
# endif // wxUSE_TOGGLEBTN
)
{

View File

@ -16,10 +16,9 @@
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/x11/private.h"
IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC,wxWindowDC)

View File

@ -34,12 +34,12 @@
#ifndef WX_PRECOMP
#include "wx/string.h"
#include "wx/utils.h" // for wxGetDisplay()
#include "wx/settings.h"
#endif
#include "wx/gdicmn.h"
#include "wx/fontutil.h" // for wxNativeFontInfo
#include "wx/tokenzr.h"
#include "wx/settings.h"
#include "wx/x11/private.h"

View File

@ -17,10 +17,9 @@
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/app.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/x11/private.h"
#include "X11/Xatom.h"
#include "X11/Xutil.h"

View File

@ -1,19 +1,23 @@
/////////////////////////////////////////////////////////////////////////////
// Name: settings.cpp
// Name: src/x11/settings.cpp
// Purpose: wxSettings
// Author: Julian Smart
// Modified by:
// Created: 17/09/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// for compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// TODO: these settings should probably be configurable from some central or
// per-user file, which can be edited using a Windows-control-panel clone.
// Also they should be documented better. Some are very MS Windows-ish.
#include "wx/settings.h"
#include "wx/gdicmn.h"
#include "wx/x11/private.h"
@ -23,11 +27,11 @@ wxColour wxSystemSettingsNative::GetColour(wxSystemColour index)
{
case wxSYS_COLOUR_APPWORKSPACE:
return wxColour( 0xc0c0c0 );
default:
break;
}
// Overridden mostly by wxSystemSettings::GetColour in wxUniversal
return *wxWHITE;
}
@ -57,8 +61,8 @@ wxFont wxSystemSettingsNative::GetFont(wxSystemFont index)
// Get a system metric, e.g. scrollbar size
int wxSystemSettingsNative::GetMetric(wxSystemMetric index, wxWindow* WXUNUSED(win))
{
switch ( index)
{
switch ( index)
{
// TODO case wxSYS_MOUSE_BUTTONS:
// TODO case wxSYS_BORDER_X:
// TODO case wxSYS_BORDER_Y:
@ -79,13 +83,13 @@ int wxSystemSettingsNative::GetMetric(wxSystemMetric index, wxWindow* WXUNUSED(w
// TODO case wxSYS_ICONSPACING_Y:
// TODO case wxSYS_WINDOWMIN_X:
// TODO case wxSYS_WINDOWMIN_Y:
case wxSYS_SCREEN_X:
return DisplayWidth( wxGlobalDisplay(), 0 );
case wxSYS_SCREEN_Y:
return DisplayHeight( wxGlobalDisplay(), 0 );
// TODO case wxSYS_FRAMESIZE_X:
// TODO case wxSYS_FRAMESIZE_Y:
// TODO case wxSYS_SMALLICON_X:
@ -101,7 +105,7 @@ int wxSystemSettingsNative::GetMetric(wxSystemMetric index, wxWindow* WXUNUSED(w
// TODO case wxSYS_PENWINDOWS_PRESENT:
// TODO case wxSYS_SHOW_SOUNDS:
// TODO case wxSYS_SWAP_BUTTONS:
default:
return -1; // unsupported metric
}
@ -111,11 +115,11 @@ bool wxSystemSettingsNative::HasFeature(wxSystemFeature index)
{
switch (index)
{
case wxSYS_CAN_ICONIZE_FRAME:
case wxSYS_CAN_ICONIZE_FRAME:
case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
return TRUE;
return true;
default:
return FALSE;
return false;
}
}

View File

@ -18,9 +18,9 @@
#include "wx/utils.h"
#include "wx/panel.h"
#include "wx/dcclient.h"
#include "wx/settings.h"
#endif
#include "wx/settings.h"
#include "wx/clipbrd.h"
#include "wx/tokenzr.h"

View File

@ -33,9 +33,9 @@
#include "wx/frame.h"
#include "wx/menu.h"
#include "wx/statusbr.h"
#include "wx/settings.h"
#endif //WX_PRECOMP
#include "wx/settings.h"
#include "wx/x11/private.h"
#include "X11/Xutil.h"

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////////
// Name: src/x11/windows.cpp
// Name: src/x11/window.cpp
// Purpose: wxWindow
// Author: Julian Smart
// Modified by:
@ -39,11 +39,11 @@
#include "wx/menu.h"
#include "wx/dialog.h"
#include "wx/timer.h"
#include "wx/settings.h"
#endif
#include "wx/layout.h"
#include "wx/listbox.h"
#include "wx/settings.h"
#include "wx/msgdlg.h"
#include "wx/scrolwin.h"
#include "wx/scrolbar.h"

Some files were not shown because too many files have changed in this diff Show More