Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: chrome/browser/ui/gtk/nine_box.h

Issue 6251001: Move chrome/browser/gtk/ to chrome/browser/ui/gtk/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/gtk/menu_gtk.cc ('k') | chrome/browser/ui/gtk/nine_box.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_GTK_NINE_BOX_H_ 5 #ifndef CHROME_BROWSER_UI_GTK_NINE_BOX_H_
6 #define CHROME_BROWSER_GTK_NINE_BOX_H_ 6 #define CHROME_BROWSER_UI_GTK_NINE_BOX_H_
7 #pragma once 7 #pragma once
8 8
9 #include <gtk/gtk.h> 9 #include <gtk/gtk.h>
10 10
11 // A NineBox manages a set of source images representing a 3x3 grid, where 11 // A NineBox manages a set of source images representing a 3x3 grid, where
12 // non-corner images can be tiled to make a larger image. It's used to 12 // non-corner images can be tiled to make a larger image. It's used to
13 // use bitmaps for constructing image-based resizable widgets like buttons. 13 // use bitmaps for constructing image-based resizable widgets like buttons.
14 // 14 //
15 // If you want just a vertical image that stretches in height but is fixed 15 // If you want just a vertical image that stretches in height but is fixed
16 // in width, only pass in images for the left column (leave others NULL). 16 // in width, only pass in images for the left column (leave others NULL).
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 // three images are used. 51 // three images are used.
52 // TODO(estade): extend this function to use all 9 images (if it's ever 52 // TODO(estade): extend this function to use all 9 images (if it's ever
53 // needed). 53 // needed).
54 void ContourWidget(GtkWidget* widget) const; 54 void ContourWidget(GtkWidget* widget) const;
55 55
56 private: 56 private:
57 GdkPixbuf* images_[9]; 57 GdkPixbuf* images_[9];
58 bool unref_pixbufs_on_destroy_; 58 bool unref_pixbufs_on_destroy_;
59 }; 59 };
60 60
61 #endif // CHROME_BROWSER_GTK_NINE_BOX_H_ 61 #endif // CHROME_BROWSER_UI_GTK_NINE_BOX_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/menu_gtk.cc ('k') | chrome/browser/ui/gtk/nine_box.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698