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

Unified Diff: app/gfx/path_gtk.cc

Issue 340077: Gets find bar animation/clipping to work on views/gtk. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: app/gfx/path_gtk.cc
===================================================================
--- app/gfx/path_gtk.cc (revision 30814)
+++ app/gfx/path_gtk.cc (working copy)
@@ -11,7 +11,7 @@
namespace gfx {
-GdkRegion* Path::CreateGdkRegion() const {
+GdkRegion* Path::CreateNativeRegion() const {
int point_count = getPoints(NULL, 0);
if (point_count <= 1) {
// NOTE: ideally this would return gdk_empty_region, but that returns a
@@ -31,4 +31,25 @@
return gdk_region_polygon(gdk_points.get(), point_count, GDK_EVEN_ODD_RULE);
}
+// static
+NativeRegion Path::IntersectRegions(NativeRegion r1, NativeRegion r2) {
+ GdkRegion* copy = gdk_region_copy(r1);
+ gdk_region_intersect(copy, r2);
+ return copy;
+}
+
+// static
+NativeRegion Path::CombineRegions(NativeRegion r1, NativeRegion r2) {
+ GdkRegion* copy = gdk_region_copy(r1);
+ gdk_region_union(copy, r2);
+ return copy;
+}
+
+// static
+NativeRegion Path::SubtractRegion(NativeRegion r1, NativeRegion r2) {
+ GdkRegion* copy = gdk_region_copy(r1);
+ gdk_region_subtract(copy, r2);
+ return copy;
+}
+
} // namespace gfx
« no previous file with comments | « app/gfx/path.cc ('k') | app/gfx/path_win.cc » ('j') | chrome/browser/views/find_bar_host.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698