This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
128 lines
3.5 KiB
C++
128 lines
3.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/x11/settings.cpp
|
|
// Purpose: wxSettings
|
|
// Author: Julian Smart
|
|
// Modified by:
|
|
// Created: 17/09/98
|
|
// Copyright: (c) Julian Smart
|
|
// 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"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/gdicmn.h"
|
|
#endif
|
|
|
|
#include "wx/x11/private.h"
|
|
|
|
wxColour wxSystemSettingsNative::GetColour(wxSystemColour index)
|
|
{
|
|
switch (index)
|
|
{
|
|
case wxSYS_COLOUR_APPWORKSPACE:
|
|
return wxColour( 0xc0c0c0 );
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
// Overridden mostly by wxSystemSettings::GetColour in wxUniversal
|
|
return *wxWHITE;
|
|
}
|
|
|
|
wxFont wxSystemSettingsNative::GetFont(wxSystemFont index)
|
|
{
|
|
switch (index)
|
|
{
|
|
case wxSYS_SYSTEM_FIXED_FONT:
|
|
{
|
|
return wxFont(12, wxMODERN, wxNORMAL, wxNORMAL, FALSE);
|
|
break;
|
|
}
|
|
case wxSYS_DEVICE_DEFAULT_FONT:
|
|
case wxSYS_SYSTEM_FONT:
|
|
case wxSYS_DEFAULT_GUI_FONT:
|
|
default:
|
|
{
|
|
return wxFont(12, wxSWISS, wxNORMAL, wxNORMAL, FALSE);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return wxFont();
|
|
}
|
|
|
|
// Get a system metric, e.g. scrollbar size
|
|
int wxSystemSettingsNative::GetMetric(wxSystemMetric index, wxWindow* WXUNUSED(win))
|
|
{
|
|
switch ( index)
|
|
{
|
|
// TODO case wxSYS_MOUSE_BUTTONS:
|
|
// TODO case wxSYS_BORDER_X:
|
|
// TODO case wxSYS_BORDER_Y:
|
|
// TODO case wxSYS_CURSOR_X:
|
|
// TODO case wxSYS_CURSOR_Y:
|
|
// TODO case wxSYS_DCLICK_X:
|
|
// TODO case wxSYS_DCLICK_Y:
|
|
// TODO case wxSYS_DRAG_X:
|
|
// TODO case wxSYS_DRAG_Y:
|
|
// TODO case wxSYS_EDGE_X:
|
|
// TODO case wxSYS_EDGE_Y:
|
|
// TODO case wxSYS_HSCROLL_ARROW_X:
|
|
// TODO case wxSYS_HSCROLL_ARROW_Y:
|
|
// TODO case wxSYS_HTHUMB_X:
|
|
// TODO case wxSYS_ICON_X:
|
|
// TODO case wxSYS_ICON_Y:
|
|
// TODO case wxSYS_ICONSPACING_X:
|
|
// 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:
|
|
// TODO case wxSYS_SMALLICON_Y:
|
|
// TODO case wxSYS_HSCROLL_Y:
|
|
// TODO case wxSYS_VSCROLL_X:
|
|
// TODO case wxSYS_VSCROLL_ARROW_X:
|
|
// TODO case wxSYS_VSCROLL_ARROW_Y:
|
|
// TODO case wxSYS_VTHUMB_Y:
|
|
// TODO case wxSYS_CAPTION_Y:
|
|
// TODO case wxSYS_MENU_Y:
|
|
// TODO case wxSYS_NETWORK_PRESENT:
|
|
// TODO case wxSYS_PENWINDOWS_PRESENT:
|
|
// TODO case wxSYS_SHOW_SOUNDS:
|
|
// TODO case wxSYS_SWAP_BUTTONS:
|
|
|
|
default:
|
|
return -1; // unsupported metric
|
|
}
|
|
}
|
|
|
|
bool wxSystemSettingsNative::HasFeature(wxSystemFeature index)
|
|
{
|
|
switch (index)
|
|
{
|
|
case wxSYS_CAN_ICONIZE_FRAME:
|
|
case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
|
|
return true;
|
|
|
|
default:
|
|
return false;
|
|
}
|
|
}
|