HomeSort by relevance Sort by last modified time
    Searched refs:GdkPixbuf (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /external/chromium/chrome/browser/ui/gtk/
cairo_cached_surface.h 9 typedef struct _GdkPixbuf GdkPixbuf;
13 // A helper class that takes a GdkPixbuf* and renders it to the screen. Unlike
28 // Whether this CairoCachedSurface owns a GdkPixbuf.
41 void UsePixbuf(GdkPixbuf* pixbuf);
49 GdkPixbuf* pixbuf() { return pixbuf_; }
53 GdkPixbuf* pixbuf_;
gtk_theme_service.h 30 typedef struct _GdkPixbuf GdkPixbuf;
138 static GdkPixbuf* GetFolderIcon(bool native);
139 static GdkPixbuf* GetDefaultFavicon(bool native);
233 GdkPixbuf* pixbuf,
308 static GdkPixbuf* default_folder_icon_;
309 static GdkPixbuf* default_bookmark_icon_;
nine_box.h 57 GdkPixbuf* images_[9];
create_application_shortcuts_dialog_gtk.h 17 typedef struct _GdkPixbuf GdkPixbuf;
62 GdkPixbuf* favicon_pixbuf_;
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
skia_utils_gtk2.h 11 typedef struct _GdkPixbuf GdkPixbuf;
23 const SkBitmap GdkPixbufToImageSkia(GdkPixbuf* pixbuf);
25 // Convert and copy a SkBitmap to a GdkPixbuf. NOTE: this uses BGRAToRGBA, so
26 // it is an expensive operation. The returned GdkPixbuf will have a refcount of
28 GdkPixbuf* GdkPixbufFromSkBitmap(const SkBitmap& bitmap);
skia_utils_gtk2.cc 37 const SkBitmap GdkPixbufToImageSkia(GdkPixbuf* pixbuf) {
93 GdkPixbuf* GdkPixbufFromSkBitmap(const SkBitmap& bitmap) {
102 GdkPixbuf* pixbuf =
  /external/chromium_org/chrome/browser/ui/gtk/
titlebar_throb_animation.h 21 GdkPixbuf* GetNextFrame(bool is_waiting);
titlebar_throb_animation.cc 14 std::vector<GdkPixbuf*>* g_throbber_frames = NULL;
15 std::vector<GdkPixbuf*>* g_throbber_waiting_frames = NULL;
19 void MakeThrobberFrames(int resource_id, std::vector<GdkPixbuf*>* frames) {
28 // Make a separate GdkPixbuf for each frame of the animation.
45 GdkPixbuf* TitlebarThrobAnimation::GetNextFrame(bool is_waiting) {
66 g_throbber_frames = new std::vector<GdkPixbuf*>;
69 g_throbber_waiting_frames = new std::vector<GdkPixbuf*>;
create_application_shortcuts_dialog_gtk.h 19 typedef struct _GdkPixbuf GdkPixbuf;
77 GdkPixbuf* favicon_pixbuf_;
  /external/chromium_org/ui/gfx/image/
cairo_cached_surface.h 13 typedef struct _GdkPixbuf GdkPixbuf;
20 // A helper class that takes a GdkPixbuf* and renders it to the screen. Unlike
35 // Whether this CairoCachedSurface owns a GdkPixbuf.
51 void UsePixbuf(GdkPixbuf* pixbuf);
64 GdkPixbuf* pixbuf() { return pixbuf_; }
74 GdkPixbuf* pixbuf_;
image.h 82 explicit Image(GdkPixbuf* pixbuf);
122 GdkPixbuf* ToGdkPixbuf() const;
158 GdkPixbuf* CopyGdkPixbuf() const;
  /external/chromium/chrome/browser/themes/
theme_service_gtk.cc 14 GdkPixbuf* ThemeService::GetPixbufNamed(int id) const {
18 GdkPixbuf* ThemeService::GetRTLEnabledPixbufNamed(int id) const {
22 GdkPixbuf* ThemeService::GetPixbufImpl(int id, bool rtl_enabled) const {
33 GdkPixbuf* pixbuf = gfx::GdkPixbufFromSkBitmap(bitmap);
38 GdkPixbuf* original_pixbuf = pixbuf;
48 LOG(WARNING) << "Unable to load GdkPixbuf with id " << id;
51 static GdkPixbuf* empty_bitmap = NULL;
theme_service.h 153 virtual GdkPixbuf* GetPixbufNamed(int id) const;
154 virtual GdkPixbuf* GetRTLEnabledPixbufNamed(int id) const;
267 GdkPixbuf* GetPixbufImpl(int id, bool rtl_enabled) const;
271 typedef std::map<int, GdkPixbuf*> GdkPixbufMap;
  /external/chromium_org/chrome/browser/themes/
theme_service_gtk.cc 16 GdkPixbuf* ThemeService::GetRTLEnabledPixbufNamed(int id) const {
20 GdkPixbuf* ThemeService::GetPixbufImpl(int id, bool rtl_enabled) const {
31 GdkPixbuf* pixbuf = gfx::GdkPixbufFromSkBitmap(bitmap);
36 GdkPixbuf* original_pixbuf = pixbuf;
46 LOG(WARNING) << "Unable to load GdkPixbuf with id " << id;
49 static GdkPixbuf* empty_bitmap = NULL;
  /external/chromium_org/ui/gfx/
gtk_util.h 13 typedef struct _GdkPixbuf GdkPixbuf;
30 // Convert and copy a SkBitmap to a GdkPixbuf. NOTE: this uses BGRAToRGBA, so
31 // it is an expensive operation. The returned GdkPixbuf will have a refcount of
33 UI_EXPORT GdkPixbuf* GdkPixbufFromSkBitmap(const SkBitmap& bitmap);
  /external/pixman/demos/
gtk-utils.h 12 GdkPixbuf *pixbuf_from_argb32 (uint32_t *bits,
  /external/chromium_org/ui/base/
theme_provider.h 25 typedef struct _GdkPixbuf GdkPixbuf;
96 // Gets the GdkPixbuf with the specified |id|. Returns a pointer to a shared
97 // instance of the GdkPixbuf. This shared GdkPixbuf is owned by the theme
106 virtual GdkPixbuf* GetRTLEnabledPixbufNamed(int id) const = 0;
default_theme_provider.cc 52 GdkPixbuf* DefaultThemeProvider::GetRTLEnabledPixbufNamed(int id) const {
default_theme_provider.h 43 virtual GdkPixbuf* GetRTLEnabledPixbufNamed(int id) const OVERRIDE;
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_utils_gtk.h 21 typedef struct _GdkPixbuf GdkPixbuf;
31 GdkPixbuf* GetPixbufForNode(const BookmarkNode* node, BookmarkModel* model,
36 GtkWidget* GetDragRepresentation(GdkPixbuf* pixbuf,
bookmark_tree_model.h 20 typedef struct _GdkPixbuf GdkPixbuf;
  /external/chromium_org/chrome/browser/ui/gtk/bookmarks/
bookmark_utils_gtk.h 21 typedef struct _GdkPixbuf GdkPixbuf;
31 GdkPixbuf* GetPixbufForNode(const BookmarkNode* node, BookmarkModel* model,
36 GtkWidget* GetDragRepresentation(GdkPixbuf* pixbuf,
bookmark_tree_model.h 19 typedef struct _GdkPixbuf GdkPixbuf;
bookmark_utils_gtk.cc 60 void PackButton(GdkPixbuf* pixbuf, const string16& title, bool ellipsize,
108 GdkPixbuf* favicon;
112 DragRepresentationData(GdkPixbuf* favicon,
172 GdkPixbuf* GetPixbufForNode(const BookmarkNode* node, BookmarkModel* model,
174 GdkPixbuf* pixbuf;
192 GtkWidget* GetDragRepresentation(GdkPixbuf* pixbuf,
235 GdkPixbuf* pixbuf = GetPixbufForNode(
244 GdkPixbuf* pixbuf = bookmark_utils::GetPixbufForNode(
259 GdkPixbuf* pixbuf = ui::ResourceBundle::GetSharedInstance().
  /external/chromium_org/ui/base/resource/
resource_bundle_gtk.cc 25 // Convert the raw image data into a GdkPixbuf. The GdkPixbuf that is returned
28 GdkPixbuf* LoadPixbuf(base::RefCountedStaticMemory* data, bool rtl_enabled) {
39 GdkPixbuf* pixbuf = gdk_pixbuf_loader_get_pixbuf(loader.get());
93 GdkPixbuf* pixbuf = LoadPixbuf(data.get(), rtl == RTL_ENABLED);

Completed in 288 milliseconds

1 2 3 4 5