1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/widget/windows/nsLookAndFeel.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,39 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#ifndef __nsLookAndFeel 1.10 +#define __nsLookAndFeel 1.11 +#include "nsXPLookAndFeel.h" 1.12 + 1.13 +/* 1.14 + * Gesture System Metrics 1.15 + */ 1.16 +#ifndef SM_DIGITIZER 1.17 +#define SM_DIGITIZER 94 1.18 +#define TABLET_CONFIG_NONE 0x00000000 1.19 +#define NID_INTEGRATED_TOUCH 0x00000001 1.20 +#define NID_EXTERNAL_TOUCH 0x00000002 1.21 +#define NID_INTEGRATED_PEN 0x00000004 1.22 +#define NID_EXTERNAL_PEN 0x00000008 1.23 +#define NID_MULTI_INPUT 0x00000040 1.24 +#define NID_READY 0x00000080 1.25 +#endif 1.26 + 1.27 +class nsLookAndFeel: public nsXPLookAndFeel { 1.28 + static OperatingSystemVersion GetOperatingSystemVersion(); 1.29 +public: 1.30 + nsLookAndFeel(); 1.31 + virtual ~nsLookAndFeel(); 1.32 + 1.33 + virtual nsresult NativeGetColor(ColorID aID, nscolor &aResult); 1.34 + virtual nsresult GetIntImpl(IntID aID, int32_t &aResult); 1.35 + virtual nsresult GetFloatImpl(FloatID aID, float &aResult); 1.36 + virtual bool GetFontImpl(FontID aID, nsString& aFontName, 1.37 + gfxFontStyle& aFontStyle, 1.38 + float aDevPixPerCSSPixel); 1.39 + virtual char16_t GetPasswordCharacterImpl(); 1.40 +}; 1.41 + 1.42 +#endif