diff options
author | glen@chromium.org <glen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-09 01:07:42 +0000 |
---|---|---|
committer | glen@chromium.org <glen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-09 01:07:42 +0000 |
commit | 4a19063d1459a4c9c8c4c50ed86eb9048f69ea3f (patch) | |
tree | 69a1e9f78b3a5fa8b909cfab336826b09c44235f /app/theme_provider.h | |
parent | 5085ee0b4bfbe4625e63ee6975bb95702e13e0aa (diff) | |
download | chromium_src-4a19063d1459a4c9c8c4c50ed86eb9048f69ea3f.zip chromium_src-4a19063d1459a4c9c8c4c50ed86eb9048f69ea3f.tar.gz chromium_src-4a19063d1459a4c9c8c4c50ed86eb9048f69ea3f.tar.bz2 |
This is the first pass at themes.
This CL is paired with http://codereview.chromium.org/67284
This CL (for commit purposes) includes http://codereview.chromium.org/67284
BUG=4463,11232,11233,11234,11235
Review URL: http://codereview.chromium.org/99030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15704 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/theme_provider.h')
-rw-r--r-- | app/theme_provider.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app/theme_provider.h b/app/theme_provider.h new file mode 100644 index 0000000..ebc94c6 --- /dev/null +++ b/app/theme_provider.h @@ -0,0 +1,33 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef APP_THEME_PROVIDER_H_ +#define APP_THEME_PROVIDER_H_ + +#include "skia/include/SkColor.h" + +class SkBitmap; + +//////////////////////////////////////////////////////////////////////////////// +// +// ThemeProvider +// +// ThemeProvider is an abstract class that defines the API that should be +// implemented to provide bitmaps and color information for a given theme. +// +//////////////////////////////////////////////////////////////////////////////// + +class ThemeProvider { + public: + virtual ~ThemeProvider() { } + + // Get the bitmap specified by |id|. An implementation of ThemeProvider should + // have its own source of ids (e.g. an enum, or external resource bundle). + virtual SkBitmap* GetBitmapNamed(int id) = 0; + + // Get the color specified by |id|. + virtual SkColor GetColor(int id) = 0; +}; + +#endif // APP_THEME_PROVIDER_H_ |