Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | #ifndef __nsLookAndFeel |
michael@0 | 6 | #define __nsLookAndFeel |
michael@0 | 7 | |
michael@0 | 8 | #include "nsXPLookAndFeel.h" |
michael@0 | 9 | #include "AndroidBridge.h" |
michael@0 | 10 | |
michael@0 | 11 | class nsLookAndFeel: public nsXPLookAndFeel |
michael@0 | 12 | { |
michael@0 | 13 | public: |
michael@0 | 14 | nsLookAndFeel(); |
michael@0 | 15 | virtual ~nsLookAndFeel(); |
michael@0 | 16 | |
michael@0 | 17 | virtual nsresult NativeGetColor(ColorID aID, nscolor &aResult); |
michael@0 | 18 | virtual nsresult GetIntImpl(IntID aID, int32_t &aResult); |
michael@0 | 19 | virtual nsresult GetFloatImpl(FloatID aID, float &aResult); |
michael@0 | 20 | virtual bool GetFontImpl(FontID aID, nsString& aName, gfxFontStyle& aStyle, |
michael@0 | 21 | float aDevPixPerCSSPixel); |
michael@0 | 22 | virtual bool GetEchoPasswordImpl(); |
michael@0 | 23 | virtual uint32_t GetPasswordMaskDelayImpl(); |
michael@0 | 24 | virtual char16_t GetPasswordCharacterImpl(); |
michael@0 | 25 | |
michael@0 | 26 | protected: |
michael@0 | 27 | static bool mInitializedSystemColors; |
michael@0 | 28 | static mozilla::AndroidSystemColors mSystemColors; |
michael@0 | 29 | static bool mInitializedShowPassword; |
michael@0 | 30 | static bool mShowPassword; |
michael@0 | 31 | |
michael@0 | 32 | nsresult GetSystemColors(); |
michael@0 | 33 | nsresult CallRemoteGetSystemColors(); |
michael@0 | 34 | }; |
michael@0 | 35 | |
michael@0 | 36 | #endif |