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

Unified Diff: chrome/browser/ui/views/subtle_notification_view.h

Issue 1979193002: Factor ExclusiveAccessView out to SubtleNotificationView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fullscreen-remove-old-theming-code
Patch Set: Avoid dependency patch set. Created 4 years, 7 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/views/subtle_notification_view.h
diff --git a/chrome/browser/ui/views/subtle_notification_view.h b/chrome/browser/ui/views/subtle_notification_view.h
new file mode 100644
index 0000000000000000000000000000000000000000..c04296a91029066f04322064425481390ebb8cc4
--- /dev/null
+++ b/chrome/browser/ui/views/subtle_notification_view.h
@@ -0,0 +1,52 @@
+// Copyright 2016 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_VIEWS_SUBTLE_NOTIFICATION_VIEW_H_
+#define CHROME_BROWSER_UI_VIEWS_SUBTLE_NOTIFICATION_VIEW_H_
+
+#include "base/macros.h"
+#include "base/strings/string16.h"
+#include "ui/gfx/native_widget_types.h"
+#include "ui/views/view.h"
+
+namespace views {
+class Link;
+class LinkListener;
+class Widget;
+}
+
+// A transient, transparent notification bubble that appears at the top of the
+// browser window to give the user a short instruction (e.g., "Press Esc to exit
+// full screen"). Unlike a full notification, a subtle notification
+// auto-dismisses after a short period of time. It also has special
+// functionality for displaying keyboard shortcuts (rendering the keys inside a
+// rounded rectangle).
+class SubtleNotificationView : public views::View {
+ public:
+ explicit SubtleNotificationView(views::LinkListener* link_listener);
+ ~SubtleNotificationView() override;
+
+ void UpdateContent(const base::string16& instruction_text,
+ const base::string16& link_text);
+
+ // Creates a Widget containing a SubtleNotificationView. If |accept_events|,
+ // the bubble will intercept mouse events (required if there is a clickable
+ // link); if not, events will go through to the underlying window.
+ static views::Widget* CreatePopupWidget(gfx::NativeView parent_view,
+ SubtleNotificationView* view,
+ bool accept_events);
+
+ private:
+ class InstructionView;
+
+ // Text displayed in the bubble, with optional keyboard keys.
+ InstructionView* instruction_view_;
+ // Clickable text link. If there is also an instruction view, this appears
+ // after the instruction text.
+ views::Link* link_;
+
+ DISALLOW_COPY_AND_ASSIGN(SubtleNotificationView);
+};
+
+#endif // CHROME_BROWSER_UI_VIEWS_SUBTLE_NOTIFICATION_VIEW_H_
« no previous file with comments | « chrome/browser/ui/views/exclusive_access_bubble_views.cc ('k') | chrome/browser/ui/views/subtle_notification_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698