2006-12-06 22:31:17 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-12-06 22:31:17 +00:00
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#ifndef nsLookAndFeel_h_
|
|
|
|
#define nsLookAndFeel_h_
|
2006-12-06 22:31:17 +00:00
|
|
|
#include "nsXPLookAndFeel.h"
|
|
|
|
|
|
|
|
class nsLookAndFeel: public nsXPLookAndFeel {
|
|
|
|
public:
|
|
|
|
nsLookAndFeel();
|
|
|
|
virtual ~nsLookAndFeel();
|
|
|
|
|
2011-09-09 02:27:13 +00:00
|
|
|
virtual nsresult NativeGetColor(ColorID aID, nscolor &aResult);
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual nsresult GetIntImpl(IntID aID, int32_t &aResult);
|
2011-09-09 02:27:13 +00:00
|
|
|
virtual nsresult GetFloatImpl(FloatID aID, float &aResult);
|
2012-02-20 23:19:48 +00:00
|
|
|
virtual bool GetFontImpl(FontID aID, nsString& aFontName,
|
2012-09-29 11:35:08 +00:00
|
|
|
gfxFontStyle& aFontStyle,
|
|
|
|
float aDevPixPerCSSPixel);
|
2014-01-04 15:02:17 +00:00
|
|
|
virtual char16_t GetPasswordCharacterImpl()
|
2011-09-09 02:27:13 +00:00
|
|
|
{
|
|
|
|
// unicode value for the bullet character, used for password textfields.
|
|
|
|
return 0x2022;
|
|
|
|
}
|
2006-12-06 22:31:17 +00:00
|
|
|
|
2013-06-07 19:44:24 +00:00
|
|
|
static bool UseOverlayScrollbars();
|
|
|
|
|
2006-12-06 22:31:17 +00:00
|
|
|
protected:
|
|
|
|
|
2007-04-11 00:25:11 +00:00
|
|
|
// Apple hasn't defined a constant for scollbars with two arrows on each end, so we'll use this one.
|
|
|
|
static const int kThemeScrollBarArrowsBoth = 2;
|
2008-04-09 06:38:01 +00:00
|
|
|
static const int kThemeScrollBarArrowsUpperLeft = 3;
|
2013-05-06 13:04:17 +00:00
|
|
|
|
2013-06-07 19:44:24 +00:00
|
|
|
static bool SystemWantsOverlayScrollbars();
|
2013-05-23 21:14:00 +00:00
|
|
|
static bool AllowOverlayScrollbarsOverlap();
|
2006-12-06 22:31:17 +00:00
|
|
|
};
|
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#endif // nsLookAndFeel_h_
|