SystemSettings.cs :  » GUI » wx-NET » wx » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » GUI » wx NET 
wx NET » wx » SystemSettings.cs
//-----------------------------------------------------------------------------
// wx.NET - SystemSettings.cs
//
// The wxSystemSettings wrapper class.
//
// Written by Bryan Bulten (bryan@bulten.ca)
// (C) 2003 Bryan Bulten
// Licensed under the wxWidgets license, see LICENSE.txt for details.
//
// $Id: SystemSettings.cs,v 1.4 2004/11/26 21:39:52 olkalex Exp $
//-----------------------------------------------------------------------------

using System;
using System.Drawing;
using System.Runtime.InteropServices;

namespace wx{
    public enum SystemFont
    {
        wxSYS_OEM_FIXED_FONT = 10,
        wxSYS_ANSI_FIXED_FONT,
        wxSYS_ANSI_VAR_FONT,
        wxSYS_SYSTEM_FONT,
        wxSYS_DEVICE_DEFAULT_FONT,
        wxSYS_DEFAULT_PALETTE,
        wxSYS_SYSTEM_FIXED_FONT,
        wxSYS_DEFAULT_GUI_FONT
    }

    public enum SystemColour
    {
        wxSYS_COLOUR_SCROLLBAR,
        wxSYS_COLOUR_BACKGROUND,
        wxSYS_COLOUR_DESKTOP = wxSYS_COLOUR_BACKGROUND,
        wxSYS_COLOUR_ACTIVECAPTION,
        wxSYS_COLOUR_INACTIVECAPTION,
        wxSYS_COLOUR_MENU,
        wxSYS_COLOUR_WINDOW,
        wxSYS_COLOUR_WINDOWFRAME,
        wxSYS_COLOUR_MENUTEXT,
        wxSYS_COLOUR_WINDOWTEXT,
        wxSYS_COLOUR_CAPTIONTEXT,
        wxSYS_COLOUR_ACTIVEBORDER,
        wxSYS_COLOUR_INACTIVEBORDER,
        wxSYS_COLOUR_APPWORKSPACE,
        wxSYS_COLOUR_HIGHLIGHT,
        wxSYS_COLOUR_HIGHLIGHTTEXT,
        wxSYS_COLOUR_BTNFACE,
        wxSYS_COLOUR_3DFACE = wxSYS_COLOUR_BTNFACE,
        wxSYS_COLOUR_BTNSHADOW,
        wxSYS_COLOUR_3DSHADOW = wxSYS_COLOUR_BTNSHADOW,
        wxSYS_COLOUR_GRAYTEXT,
        wxSYS_COLOUR_BTNTEXT,
        wxSYS_COLOUR_INACTIVECAPTIONTEXT,
        wxSYS_COLOUR_BTNHIGHLIGHT,
        wxSYS_COLOUR_BTNHILIGHT = wxSYS_COLOUR_BTNHIGHLIGHT,
        wxSYS_COLOUR_3DHIGHLIGHT = wxSYS_COLOUR_BTNHIGHLIGHT,
        wxSYS_COLOUR_3DHILIGHT = wxSYS_COLOUR_BTNHIGHLIGHT,
        wxSYS_COLOUR_3DDKSHADOW,
        wxSYS_COLOUR_3DLIGHT,
        wxSYS_COLOUR_INFOTEXT,
        wxSYS_COLOUR_INFOBK,
        wxSYS_COLOUR_LISTBOX,
        wxSYS_COLOUR_HOTLIGHT,
        wxSYS_COLOUR_GRADIENTACTIVECAPTION,
        wxSYS_COLOUR_GRADIENTINACTIVECAPTION,
        wxSYS_COLOUR_MENUHILIGHT,
        wxSYS_COLOUR_MENUBAR,

        wxSYS_COLOUR_MAX
    }

    public enum SystemMetric
    {
        wxSYS_MOUSE_BUTTONS = 1,
        wxSYS_BORDER_X,
        wxSYS_BORDER_Y,
        wxSYS_CURSOR_X,
        wxSYS_CURSOR_Y,
        wxSYS_DCLICK_X,
        wxSYS_DCLICK_Y,
        wxSYS_DRAG_X,
        wxSYS_DRAG_Y,
        wxSYS_EDGE_X,
        wxSYS_EDGE_Y,
        wxSYS_HSCROLL_ARROW_X,
        wxSYS_HSCROLL_ARROW_Y,
        wxSYS_HTHUMB_X,
        wxSYS_ICON_X,
        wxSYS_ICON_Y,
        wxSYS_ICONSPACING_X,
        wxSYS_ICONSPACING_Y,
        wxSYS_WINDOWMIN_X,
        wxSYS_WINDOWMIN_Y,
        wxSYS_SCREEN_X,
        wxSYS_SCREEN_Y,
        wxSYS_FRAMESIZE_X,
        wxSYS_FRAMESIZE_Y,
        wxSYS_SMALLICON_X,
        wxSYS_SMALLICON_Y,
        wxSYS_HSCROLL_Y,
        wxSYS_VSCROLL_X,
        wxSYS_VSCROLL_ARROW_X,
        wxSYS_VSCROLL_ARROW_Y,
        wxSYS_VTHUMB_Y,
        wxSYS_CAPTION_Y,
        wxSYS_MENU_Y,
        wxSYS_NETWORK_PRESENT,
        wxSYS_PENWINDOWS_PRESENT,
        wxSYS_SHOW_SOUNDS,
        wxSYS_SWAP_BUTTONS
    }

    public enum SystemFeature
    {
        wxSYS_CAN_DRAW_FRAME_DECORATIONS = 1,
        wxSYS_CAN_ICONIZE_FRAME
    }

    public enum SystemScreenType
    {
        wxSYS_SCREEN_NONE = 0,  //   not yet defined

        wxSYS_SCREEN_TINY,      //   <
        wxSYS_SCREEN_PDA,       //   >= 320x240
        wxSYS_SCREEN_SMALL,     //   >= 640x480
        wxSYS_SCREEN_DESKTOP    //   >= 800x600
    }

    public class SystemSettings
    {
        [DllImport("wx-c")] static extern int    wxSystemSettings_GetScreenType();
        [DllImport("wx-c")] static extern void   wxSystemSettings_SetScreenType(int screen);

        [DllImport("wx-c")] static extern IntPtr wxSystemSettings_GetColour(int index);
        [DllImport("wx-c")] static extern IntPtr wxSystemSettings_GetFont(int index);
        [DllImport("wx-c")] static extern int    wxSystemSettings_GetMetric(int index);
        [DllImport("wx-c")] static extern bool   wxSystemSettings_HasFeature(int index);

        //-----------------------------------------------------------------------------

        public static Colour GetColour(SystemColour index)
        {
            return new Colour(wxSystemSettings_GetColour((int)index), true);
        }

        //-----------------------------------------------------------------------------

        public static Font GetFont(SystemFont index)
        {
            return new Font(wxSystemSettings_GetFont((int)index));
        }

        //-----------------------------------------------------------------------------

        public static int GetMetric(SystemMetric index)
        {
            return wxSystemSettings_GetMetric((int)index);
        }

        //-----------------------------------------------------------------------------

        public static bool HasFeature(SystemFeature index)
        {
            return wxSystemSettings_HasFeature((int)index);
        }

        //-----------------------------------------------------------------------------

        public static SystemScreenType ScreenType
        {
            get { return (SystemScreenType)wxSystemSettings_GetScreenType(); }
            set { wxSystemSettings_SetScreenType((int)value); }
        }

        //-----------------------------------------------------------------------------
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.