2008-04-19 15:31:50 +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/. */
|
2008-04-19 15:31:50 +00:00
|
|
|
#ifndef __nsLookAndFeel
|
|
|
|
#define __nsLookAndFeel
|
|
|
|
|
|
|
|
#include "nsXPLookAndFeel.h"
|
2012-02-20 23:19:48 +00:00
|
|
|
#include "gfxFont.h"
|
2008-04-19 15:31:50 +00:00
|
|
|
|
|
|
|
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);
|
2012-02-20 23:19:48 +00:00
|
|
|
virtual void RefreshImpl();
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool mDefaultFontCached;
|
|
|
|
bool mButtonFontCached;
|
|
|
|
bool mFieldFontCached;
|
|
|
|
bool mMenuFontCached;
|
|
|
|
nsString mDefaultFontName;
|
|
|
|
nsString mButtonFontName;
|
|
|
|
nsString mFieldFontName;
|
|
|
|
nsString mMenuFontName;
|
|
|
|
gfxFontStyle mDefaultFontStyle;
|
|
|
|
gfxFontStyle mButtonFontStyle;
|
|
|
|
gfxFontStyle mFieldFontStyle;
|
|
|
|
gfxFontStyle mMenuFontStyle;
|
2008-04-19 15:31:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|