widget/cocoa/nsLookAndFeel.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/widget/cocoa/nsLookAndFeel.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,39 @@
     1.4 +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
     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_h_
    1.10 +#define nsLookAndFeel_h_
    1.11 +#include "nsXPLookAndFeel.h"
    1.12 +
    1.13 +class nsLookAndFeel: public nsXPLookAndFeel {
    1.14 +public:
    1.15 +  nsLookAndFeel();
    1.16 +  virtual ~nsLookAndFeel();
    1.17 +
    1.18 +  virtual nsresult NativeGetColor(ColorID aID, nscolor &aResult);
    1.19 +  virtual nsresult GetIntImpl(IntID aID, int32_t &aResult);
    1.20 +  virtual nsresult GetFloatImpl(FloatID aID, float &aResult);
    1.21 +  virtual bool GetFontImpl(FontID aID, nsString& aFontName,
    1.22 +                           gfxFontStyle& aFontStyle,
    1.23 +                           float aDevPixPerCSSPixel);
    1.24 +  virtual char16_t GetPasswordCharacterImpl()
    1.25 +  {
    1.26 +    // unicode value for the bullet character, used for password textfields.
    1.27 +    return 0x2022;
    1.28 +  }
    1.29 +
    1.30 +  static bool UseOverlayScrollbars();
    1.31 +
    1.32 +protected:
    1.33 +
    1.34 +  // Apple hasn't defined a constant for scollbars with two arrows on each end, so we'll use this one.
    1.35 +  static const int kThemeScrollBarArrowsBoth = 2;
    1.36 +  static const int kThemeScrollBarArrowsUpperLeft = 3;
    1.37 +
    1.38 +  static bool SystemWantsOverlayScrollbars();
    1.39 +  static bool AllowOverlayScrollbarsOverlap();
    1.40 +};
    1.41 +
    1.42 +#endif // nsLookAndFeel_h_

mercurial