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

Unified Diff: apps/ui/views/shell_window_frame_view.h

Issue 166573005: Rename apps::ShellWindow to apps::AppWindow (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, nits (rename) Created 6 years, 10 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
« no previous file with comments | « apps/ui/views/app_window_frame_view.cc ('k') | apps/ui/views/shell_window_frame_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/ui/views/shell_window_frame_view.h
diff --git a/apps/ui/views/shell_window_frame_view.h b/apps/ui/views/shell_window_frame_view.h
deleted file mode 100644
index 31b78579d661f4a50c9085e4489c966a77898e48..0000000000000000000000000000000000000000
--- a/apps/ui/views/shell_window_frame_view.h
+++ /dev/null
@@ -1,97 +0,0 @@
-// Copyright 2013 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 APPS_UI_VIEWS_SHELL_WINDOW_FRAME_VIEW_H_
-#define APPS_UI_VIEWS_SHELL_WINDOW_FRAME_VIEW_H_
-
-#include <string>
-
-#include "ui/gfx/path.h"
-#include "ui/gfx/rect.h"
-#include "ui/gfx/size.h"
-#include "ui/views/controls/button/button.h"
-#include "ui/views/window/non_client_view.h"
-
-namespace gfx {
-class Canvas;
-class Point;
-}
-
-namespace ui {
-class Event;
-}
-
-namespace views {
-class ImageButton;
-class Widget;
-}
-
-namespace apps {
-
-class NativeAppWindow;
-
-// A frameless or non-Ash, non-panel NonClientFrameView for app windows.
-class ShellWindowFrameView : public views::NonClientFrameView,
- public views::ButtonListener {
- public:
- static const char kViewClassName[];
-
- explicit ShellWindowFrameView(NativeAppWindow* window);
- virtual ~ShellWindowFrameView();
-
- // Initializes this for the window |frame|. Sets the number of pixels for
- // which a click is interpreted as a resize for the inner and outer border of
- // the window and the lower-right corner resize handle.
- void Init(views::Widget* frame,
- int resize_inside_bounds_size,
- int resize_outside_bounds_size,
- int resize_outside_scale_for_touch,
- int resize_area_corner_size);
-
- private:
- // views::NonClientFrameView implementation.
- virtual gfx::Rect GetBoundsForClientView() const OVERRIDE;
- virtual gfx::Rect GetWindowBoundsForClientBounds(
- const gfx::Rect& client_bounds) const OVERRIDE;
- virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
- virtual void GetWindowMask(const gfx::Size& size,
- gfx::Path* window_mask) OVERRIDE;
- virtual void ResetWindowControls() OVERRIDE {}
- virtual void UpdateWindowIcon() OVERRIDE {}
- virtual void UpdateWindowTitle() OVERRIDE {}
-
- // views::View implementation.
- virtual gfx::Size GetPreferredSize() OVERRIDE;
- virtual void Layout() OVERRIDE;
- virtual const char* GetClassName() const OVERRIDE;
- virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
- virtual gfx::Size GetMinimumSize() OVERRIDE;
- virtual gfx::Size GetMaximumSize() OVERRIDE;
-
- // views::ButtonListener implementation.
- virtual void ButtonPressed(views::Button* sender, const ui::Event& event)
- OVERRIDE;
-
- NativeAppWindow* window_;
- views::Widget* frame_;
- views::ImageButton* close_button_;
- views::ImageButton* maximize_button_;
- views::ImageButton* restore_button_;
- views::ImageButton* minimize_button_;
-
- // Allow resize for clicks this many pixels inside the bounds.
- int resize_inside_bounds_size_;
-
- // Allow resize for clicks this many pixels outside the bounds.
- int resize_outside_bounds_size_;
-
- // Size in pixels of the lower-right corner resize handle.
- int resize_area_corner_size_;
-
- DISALLOW_COPY_AND_ASSIGN(ShellWindowFrameView);
-};
-
-} // namespace apps
-
-#endif // APPS_UI_VIEWS_SHELL_WINDOW_FRAME_VIEW_H_
« no previous file with comments | « apps/ui/views/app_window_frame_view.cc ('k') | apps/ui/views/shell_window_frame_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698