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

Unified Diff: chrome/browser/ui/gtk/gtk_window_util.h

Issue 231733005: Delete the GTK+ port of Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remerge to ToT Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/gtk/gtk_window_util.h
diff --git a/chrome/browser/ui/gtk/gtk_window_util.h b/chrome/browser/ui/gtk/gtk_window_util.h
deleted file mode 100644
index ffd610b0f4819f3022dbe739ef2697f4533be13c..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/gtk/gtk_window_util.h
+++ /dev/null
@@ -1,85 +0,0 @@
-// Copyright (c) 2012 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 CHROME_BROWSER_UI_GTK_GTK_WINDOW_UTIL_H_
-#define CHROME_BROWSER_UI_GTK_GTK_WINDOW_UTIL_H_
-
-#include <gtk/gtk.h>
-#include <gdk/gdk.h>
-#include "ui/gfx/rect.h"
-
-namespace content {
-class WebContents;
-}
-
-namespace ui{
-class BaseWindow;
-}
-
-namespace gtk_window_util {
-
-// The frame border is only visible in restored mode and is hardcoded to 4 px
-// on each side regardless of the system window border size.
-extern const int kFrameBorderThickness;
-// In the window corners, the resize areas don't actually expand bigger, but
-// the 16 px at the end of each edge triggers diagonal resizing.
-extern const int kResizeAreaCornerSize;
-
-// Performs Cut/Copy/Paste operation on the |window|'s |web_contents|.
-void DoCut(GtkWindow* window, content::WebContents* web_contents);
-void DoCopy(GtkWindow* window, content::WebContents* web_contents);
-void DoPaste(GtkWindow* window, content::WebContents* web_contents);
-
-// Ubuntu patches their version of GTK+ to that there is always a
-// gripper in the bottom right corner of the window. We always need to
-// disable this feature since we can't communicate this to WebKit easily.
-void DisableResizeGrip(GtkWindow* window);
-
-// Returns the resize cursor corresponding to the window |edge|.
-GdkCursorType GdkWindowEdgeToGdkCursorType(GdkWindowEdge edge);
-
-// Returns |true| if the window bounds match the monitor size.
-bool BoundsMatchMonitorSize(GtkWindow* window, gfx::Rect bounds);
-
-bool HandleTitleBarLeftMousePress(GtkWindow* window,
- const gfx::Rect& bounds,
- GdkEventButton* event);
-
-// Request the underlying window to unmaximize. Also tries to work around
-// a window manager "feature" that can prevent this in some edge cases.
-void UnMaximize(GtkWindow* window,
- const gfx::Rect& bounds,
- const gfx::Rect& restored_bounds);
-
-// Set a custom WM_CLASS for a window.
-void SetWindowCustomClass(GtkWindow* window, const std::string& wmclass);
-
-// A helper method for setting the GtkWindow size that should be used in place
-// of calling gtk_window_resize directly. This is done to avoid a WM "feature"
-// where setting the window size to the monitor size causes the WM to set the
-// EWMH for full screen mode.
-void SetWindowSize(GtkWindow* window, const gfx::Size& size);
-
-// Update the origin of |bounds| and |restored_bounds| with values gotten
-// from GTK.
-void UpdateWindowPosition(ui::BaseWindow* window,
- gfx::Rect* bounds,
- gfx::Rect* restored_bounds);
-
-// If the point (|x|, |y|) is within the resize border area of the window,
-// returns true and sets |edge| to the appropriate GdkWindowEdge value.
-// Otherwise, returns false.
-// |top_edge_inset| specifies how much smaller (in px) than the default edge
-// size the top edge should be, used by browser windows to make it easier to
-// move the window since a lot of title bar space is taken by the tabs.
-bool GetWindowEdge(const gfx::Size& window_size,
- int top_edge_inset,
- int x,
- int y,
- GdkWindowEdge* edge);
-
-} // namespace gtk_window_util
-
-#endif // CHROME_BROWSER_UI_GTK_GTK_WINDOW_UTIL_H_
-

Powered by Google App Engine
This is Rietveld 408576698