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

Unified Diff: ash/test/child_modal_window.cc

Issue 11316287: Move WindowModalityController to CoreWm. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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 | « ash/test/child_modal_window.h ('k') | ash/wm/activation_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/test/child_modal_window.cc
===================================================================
--- ash/test/child_modal_window.cc (revision 170620)
+++ ash/test/child_modal_window.cc (working copy)
@@ -1,214 +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.
-
-#include "ash/test/child_modal_window.h"
-
-#include "ash/wm/window_modality_controller.h"
-#include "base/utf_string_conversions.h" // ASCIIToUTF16
-#include "ui/aura/window.h"
-#include "ui/gfx/canvas.h"
-#include "ui/views/background.h"
-#include "ui/views/controls/button/text_button.h"
-#include "ui/views/controls/native/native_view_host.h"
-#include "ui/views/controls/textfield/textfield.h"
-#include "ui/views/widget/widget.h"
-#include "ui/views/widget/widget_delegate.h"
-
-namespace ash {
-namespace test {
-
-namespace {
-
-// Parent window size and position.
-const int kWindowLeft = 170;
-const int kWindowTop = 200;
-const int kWindowWidth = 400;
-const int kWindowHeight = 400;
-
-// Parent window layout.
-const int kButtonHeight = 35;
-const int kTextfieldHeight = 35;
-
-// Child window size.
-const int kChildWindowWidth = 330;
-const int kChildWindowHeight = 200;
-
-// Child window layout.
-const int kChildTextfieldLeft = 20;
-const int kChildTextfieldTop = 50;
-const int kChildTextfieldWidth = 290;
-const int kChildTextfieldHeight = 35;
-
-const SkColor kModalParentColor = SK_ColorWHITE;
-const SkColor kChildColor = SK_ColorWHITE;
-
-} // namespace
-
-void CreateChildModalParent() {
- views::Widget::CreateWindowWithBounds(
- new ChildModalParent,
- gfx::Rect(kWindowLeft, kWindowTop, kWindowWidth, kWindowHeight))->Show();
-}
-
-
-class ChildModalWindow : public views::WidgetDelegateView {
- public:
- ChildModalWindow();
- virtual ~ChildModalWindow();
-
- private:
- // Overridden from views::View:
- virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
- virtual gfx::Size GetPreferredSize() OVERRIDE;
-
- // Overridden from views::WidgetDelegate:
- virtual views::View* GetContentsView() OVERRIDE;
- virtual string16 GetWindowTitle() const OVERRIDE;
- virtual bool CanResize() const OVERRIDE;
- virtual ui::ModalType GetModalType() const OVERRIDE;
-
- DISALLOW_COPY_AND_ASSIGN(ChildModalWindow);
-};
-
-ChildModalWindow::ChildModalWindow() {
- views::Textfield* textfield = new views::Textfield;
- AddChildView(textfield);
- textfield->SetBounds(
- kChildTextfieldLeft, kChildTextfieldTop,
- kChildTextfieldWidth, kChildTextfieldHeight);
-}
-
-ChildModalWindow::~ChildModalWindow() {
-}
-
-void ChildModalWindow::OnPaint(gfx::Canvas* canvas) {
- canvas->FillRect(GetLocalBounds(), kChildColor);
-}
-
-gfx::Size ChildModalWindow::GetPreferredSize() {
- return gfx::Size(kChildWindowWidth, kChildWindowHeight);
-}
-
-views::View* ChildModalWindow::GetContentsView() {
- return this;
-}
-
-string16 ChildModalWindow::GetWindowTitle() const {
- return ASCIIToUTF16("Examples: Child Modal Window");
-}
-
-bool ChildModalWindow::CanResize() const {
- return false;
-}
-
-ui::ModalType ChildModalWindow::GetModalType() const {
- return ui::MODAL_TYPE_CHILD;
-}
-
-ChildModalParent::ChildModalParent()
- : ALLOW_THIS_IN_INITIALIZER_LIST(button_(new views::NativeTextButton(
- this, ASCIIToUTF16("Show/Hide Child Modal Window")))),
- textfield_(new views::Textfield),
- host_(new views::NativeViewHost),
- modal_parent_(NULL),
- child_(NULL) {
- views::Widget* widget = new views::Widget;
- widget->Init(
- views::Widget::InitParams(views::Widget::InitParams::TYPE_CONTROL));
- widget->GetRootView()->set_background(
- views::Background::CreateSolidBackground(kModalParentColor));
- modal_parent_ = widget->GetNativeView();
- widget->GetNativeView()->SetName("ModalParent");
- AddChildView(button_);
- AddChildView(textfield_);
- AddChildView(host_);
-}
-
-ChildModalParent::~ChildModalParent() {
-}
-
-void ChildModalParent::ShowChild() {
- if (!child_)
- child_ = CreateChild();
- child_->Show();
-}
-
-gfx::NativeWindow ChildModalParent::GetModalParent() const {
- return modal_parent_;
-}
-
-gfx::NativeWindow ChildModalParent::GetChild() const {
- if (child_)
- return child_->GetNativeView();
- return NULL;
-}
-
-views::Widget* ChildModalParent::CreateChild() {
- views::Widget* child = views::Widget::CreateWindowWithParent(
- new ChildModalWindow, GetWidget()->GetNativeView());
- ash::SetModalParent(child->GetNativeView(), GetModalParent());
- child->AddObserver(this);
- child->GetNativeView()->SetName("ChildModalWindow");
- return child;
-}
-
-views::View* ChildModalParent::GetContentsView() {
- return this;
-}
-
-string16 ChildModalParent::GetWindowTitle() const {
- return ASCIIToUTF16("Examples: Child Modal Parent");
-}
-
-bool ChildModalParent::CanResize() const {
- return false;
-}
-
-void ChildModalParent::DeleteDelegate() {
- if (child_) {
- child_->RemoveObserver(this);
- child_->Close();
- child_ = NULL;
- }
-}
-
-void ChildModalParent::Layout() {
- int running_y = y();
- button_->SetBounds(x(), running_y, width(), kButtonHeight);
- running_y += kButtonHeight;
- textfield_->SetBounds(x(), running_y, width(), kTextfieldHeight);
- running_y += kTextfieldHeight;
- host_->SetBounds(x(), running_y, width(), height() - running_y);
-}
-
-void ChildModalParent::ViewHierarchyChanged(bool is_add,
- views::View* parent,
- views::View* child) {
- if (is_add && child == this) {
- host_->Attach(modal_parent_);
- GetWidget()->GetNativeView()->SetName("Parent");
- }
-}
-
-void ChildModalParent::ButtonPressed(views::Button* sender,
- const ui::Event& event) {
- if (sender == button_) {
- if (!child_)
- child_ = CreateChild();
- if (child_->IsVisible())
- child_->Hide();
- else
- child_->Show();
- }
-}
-
-void ChildModalParent::OnWidgetClosing(views::Widget* widget) {
- if (child_) {
- DCHECK_EQ(child_, widget);
- child_ = NULL;
- }
-}
-
-} // namespace test
-} // namespace ash
« no previous file with comments | « ash/test/child_modal_window.h ('k') | ash/wm/activation_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698