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

Unified Diff: components/exo/shell_surface.cc

Issue 1412093006: components: Add Exosphere component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on improved shared memory support Created 5 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: components/exo/shell_surface.cc
diff --git a/components/exo/shell_surface.cc b/components/exo/shell_surface.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1d231e0d25748b84a5dd001dbccbf800b895400f
--- /dev/null
+++ b/components/exo/shell_surface.cc
@@ -0,0 +1,121 @@
+// Copyright 2015 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 "components/exo/shell_surface.h"
+
+#include "ash/shell.h"
+#include "ash/shell_window_ids.h"
+#include "base/logging.h"
+#include "base/strings/utf_string_conversions.h"
+#include "base/trace_event/trace_event.h"
+#include "base/trace_event/trace_event_argument.h"
+#include "components/exo/surface.h"
+#include "ui/aura/window.h"
+#include "ui/views/widget/widget.h"
+
+namespace exo {
+
+////////////////////////////////////////////////////////////////////////////////
+// ShellSurface, public:
+
+ShellSurface::ShellSurface(Surface* surface)
+ : surface_(surface), show_state_(ui::SHOW_STATE_END) {
+ surface_->SetSurfaceDelegate(this);
+}
+
+ShellSurface::~ShellSurface() {
+ if (surface_)
+ surface_->SetSurfaceDelegate(nullptr);
+ if (widget_)
+ widget_->CloseNow();
+}
+
+void ShellSurface::Show() {
+ TRACE_EVENT0("exo", "ShellSurface::Show");
+
+ if (show_state_ == ui::SHOW_STATE_END)
+ show_state_ = ui::SHOW_STATE_DEFAULT;
+}
+
+void ShellSurface::SetToplevel() {
+ TRACE_EVENT0("exo", "ShellSurface::SetToplevel");
+
+ show_state_ = ui::SHOW_STATE_NORMAL;
+}
+
+void ShellSurface::SetFullscreen(bool fullscreen) {
+ TRACE_EVENT1("exo", "ShellSurface::SetFullscreen", "fullscreen", fullscreen);
+
+ if (widget_)
+ widget_->SetFullscreen(fullscreen);
+
+ show_state_ = fullscreen ? ui::SHOW_STATE_FULLSCREEN : ui::SHOW_STATE_DEFAULT;
+}
+
+void ShellSurface::SetTitle(const base::string16& title) {
+ TRACE_EVENT1("exo", "ShellSurface::SetTitle", "title",
+ base::UTF16ToUTF8(title));
+
+ title_ = title;
+ if (widget_)
+ widget_->UpdateWindowTitle();
+}
+
+scoped_refptr<base::trace_event::TracedValue> ShellSurface::AsTracedValue()
+ const {
+ scoped_refptr<base::trace_event::TracedValue> value =
+ new base::trace_event::TracedValue;
+ value->SetString("title", base::UTF16ToUTF8(title_));
+ return value;
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// SurfaceDelegate overrides:
+
+void ShellSurface::OnSurfaceDestroying() {
+ surface_ = nullptr;
+}
+
+void ShellSurface::OnSurfaceCommit() {
+ if (widget_ || show_state_ == ui::SHOW_STATE_END)
+ return;
+
+ views::Widget::InitParams params;
+ params.type = show_state_ == ui::SHOW_STATE_NORMAL
+ ? views::Widget::InitParams::TYPE_WINDOW
+ : views::Widget::InitParams::TYPE_WINDOW_FRAMELESS;
+ params.ownership = views::Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET;
+ params.delegate = this;
+ params.shadow_type = views::Widget::InitParams::SHADOW_TYPE_DEFAULT;
+ params.opacity = views::Widget::InitParams::TRANSLUCENT_WINDOW;
+ params.show_state = show_state_;
+ params.parent = ash::Shell::GetContainer(
+ ash::Shell::GetPrimaryRootWindow(), ash::kShellWindowId_DefaultContainer);
+ widget_.reset(new views::Widget);
+ widget_->Init(params);
+ widget_->GetNativeWindow()->set_owned_by_parent(false);
+ widget_->GetNativeView()->SetName("ShellSurface");
+ widget_->Show();
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// views::WidgetDelegate overrides:
+
+base::string16 ShellSurface::GetWindowTitle() const {
+ return title_;
+}
+
+views::Widget* ShellSurface::GetWidget() {
+ return widget_.get();
+}
+
+const views::Widget* ShellSurface::GetWidget() const {
+ return widget_.get();
+}
+
+views::View* ShellSurface::GetContentsView() {
+ return surface_;
+}
+
+} // namespace exo

Powered by Google App Engine
This is Rietveld 408576698