2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsLookAndFeel_h_
|
|
|
|
#define nsLookAndFeel_h_
|
|
|
|
#include "nsXPLookAndFeel.h"
|
|
|
|
|
|
|
|
class nsLookAndFeel: public nsXPLookAndFeel {
|
|
|
|
public:
|
|
|
|
nsLookAndFeel();
|
|
|
|
virtual ~nsLookAndFeel();
|
|
|
|
|
2011-09-08 19:27:13 -07:00
|
|
|
virtual nsresult NativeGetColor(ColorID aID, nscolor &aResult);
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual nsresult GetIntImpl(IntID aID, int32_t &aResult);
|
2011-09-08 19:27:13 -07:00
|
|
|
virtual nsresult GetFloatImpl(FloatID aID, float &aResult);
|
2012-02-20 15:19:48 -08:00
|
|
|
virtual bool GetFontImpl(FontID aID, nsString& aFontName,
|
2012-09-29 04:35:08 -07:00
|
|
|
gfxFontStyle& aFontStyle,
|
|
|
|
float aDevPixPerCSSPixel);
|
2011-09-08 19:27:13 -07:00
|
|
|
virtual PRUnichar GetPasswordCharacterImpl()
|
|
|
|
{
|
|
|
|
// unicode value for the bullet character, used for password textfields.
|
|
|
|
return 0x2022;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2007-04-10 17:25:11 -07: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-08 23:38:01 -07:00
|
|
|
static const int kThemeScrollBarArrowsUpperLeft = 3;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsLookAndFeel_h_
|