diff options
author | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-07 02:06:01 +0000 |
---|---|---|
committer | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-07 02:06:01 +0000 |
commit | 4a6bef33b6897ceff27eee304afe1a6da5fee4ff (patch) | |
tree | 64c7e2cb508ccbe6a9e50be1da7c99b016ea5b52 /ui/gfx/linux_util.h | |
parent | ccb824344b58ae4acbc0b7b30ebcba048a032836 (diff) | |
download | chromium_src-4a6bef33b6897ceff27eee304afe1a6da5fee4ff.zip chromium_src-4a6bef33b6897ceff27eee304afe1a6da5fee4ff.tar.gz chromium_src-4a6bef33b6897ceff27eee304afe1a6da5fee4ff.tar.bz2 |
aura: A few changes to have aura_demo compile and run on linux.
* Make 'aura' a component, and export Desktop and Window.
* Events (Key and Mouse) from X Events.
* Rip non-gtk bits out of gfx/gtk_util into gfx/linux_util
BUG=93934,93933
TEST=none
Review URL: http://codereview.chromium.org/7833016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99898 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/linux_util.h')
-rw-r--r-- | ui/gfx/linux_util.h | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/ui/gfx/linux_util.h b/ui/gfx/linux_util.h new file mode 100644 index 0000000..1c1f3ff --- /dev/null +++ b/ui/gfx/linux_util.h @@ -0,0 +1,66 @@ +// Copyright (c) 2011 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 UI_GFX_LINUX_UTIL_H_ +#define UI_GFX_LINUX_UTIL_H_ +#pragma once + +#include <glib-object.h> +#include <stdint.h> + +#include <string> +#include <vector> + +#include "base/memory/scoped_ptr.h" +#include "ui/base/ui_export.h" + +typedef struct _PangoContext PangoContext; + +class SkBitmap; + +namespace gfx { + +class Rect; + +// Creates and returns a PangoContext. The caller owns the context. +PangoContext* GetPangoContext(); + +// Returns the resolution (DPI) used by pango. A negative values means the +// resolution hasn't been set. +double GetPangoResolution(); + +// Change windows accelerator style to GTK style. (GTK uses _ for +// accelerators. Windows uses & with && as an escape for &.) +UI_EXPORT std::string ConvertAcceleratorsFromWindowsStyle( + const std::string& label); + +// Removes the "&" accelerators from a Windows label. +UI_EXPORT std::string RemoveWindowsStyleAccelerators(const std::string& label); + +// Makes a copy of |pixels| with the ordering changed from BGRA to RGBA. +// The caller is responsible for free()ing the data. If |stride| is 0, it's +// assumed to be 4 * |width|. +uint8_t* BGRAToRGBA(const uint8_t* pixels, int width, int height, int stride); + +} // namespace gfx + +// It's not legal C++ to have a templatized typedefs, so we wrap it in a +// struct. When using this, you need to include ::Type. E.g., +// ScopedGObject<GdkPixbufLoader>::Type loader(gdk_pixbuf_loader_new()); +template<class T> +struct ScopedGObject { + // A helper class that will g_object_unref |p| when it goes out of scope. + // This never adds a ref, it only unrefs. + template<class U> + struct GObjectUnrefer { + void operator()(U* ptr) const { + if (ptr) + g_object_unref(ptr); + } + }; + + typedef scoped_ptr_malloc<T, GObjectUnrefer<T> > Type; +}; + +#endif // UI_GFX_LINUX_UTIL_H_ |