File: single_popup_manager.h

package info (click to toggle)
chromium-browser 41.0.2272.118-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 2,189,132 kB
  • sloc: cpp: 9,691,462; ansic: 3,341,451; python: 712,689; asm: 518,779; xml: 208,926; java: 169,820; sh: 119,353; perl: 68,907; makefile: 28,311; yacc: 13,305; objc: 11,385; tcl: 3,186; cs: 2,225; sql: 2,217; lex: 2,215; lisp: 1,349; pascal: 1,256; awk: 407; ruby: 155; sed: 53; php: 14; exp: 11
file content (96 lines) | stat: -rw-r--r-- 3,366 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Copyright 2014 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 COMPONENTS_WEB_MODAL_SINGLE_POPUP_MANAGER_H_
#define COMPONENTS_WEB_MODAL_SINGLE_POPUP_MANAGER_H_

#include "components/web_modal/native_web_contents_modal_dialog.h"

namespace content {
class WebContents;
}

namespace web_modal {

// Interface from SinglePopupManager to PopupManager.
class SinglePopupManagerDelegate {
 public:
  SinglePopupManagerDelegate() {}
  virtual ~SinglePopupManagerDelegate() {}

  // Notify the delegate that the dialog is closing. The
  // calling SinglePopupManager will be deleted before the end of this call.
  virtual void WillClose(NativePopup popup) = 0;

 private:
  DISALLOW_COPY_AND_ASSIGN(SinglePopupManagerDelegate);
};

// Provides an interface for platform-specific UI implementation for popups.
// Each object will manage a single NativePopup window during its lifecycle.
// The rule of thumb is that only one popup will be shown at a time per tab.
// (Exceptions exist.)
//
// Implementation classes should accept a NativePopup at construction time
// and register to be notified when the dialog is closing, so that it can
// notify its delegate (WillClose method).
class SinglePopupManager {
 public:
  virtual ~SinglePopupManager() {}

  // If the manager returns non-null to this call, it is bound to a particular
  // tab and will be hidden and shown if that tab visibility changes.
  virtual content::WebContents* GetBoundWebContents() = 0;

  // Makes the popup visible.
  virtual void Show() = 0;

  // Hides the popup without closing it.
  virtual void Hide() = 0;

  // Closes the popup.
  // This method must call WillClose() on the delegate.
  // Important note: this object will be deleted at the close of that
  // invocation.
  virtual void Close() = 0;

  // Sets focus on the popup.
  virtual void Focus() = 0;

  // Pulsates the popup to draw the user's attention to it.
  virtual void Pulse() = 0;

  // Returns the popup under management by this object.
  virtual NativePopup popup() = 0;

  // Returns true if the popup under management was initiated by a user
  // gesture. When this is true, the popup manager will hide any existing
  // popups and move the newly-created NativePopup to the top of the display
  // queue.
  virtual bool HasUserGesture() = 0;

  // Returns true if the popup under management is tolerant of being overlapped
  // by other popups. This may be true for large web-modals which cover most of
  // the window real estate (e.g. print preview).
  virtual bool MayBeOverlapped() = 0;

  // Returns true if the popup under management should close if there is a
  // navigation underneath it, including the showing of any interstitial
  // content. Popups which relate to the web content being displayed will
  // ordinarily set this to true.
  // TODO(gbillock): should be generalized in code location or by splitting
  // the API to support the same-origin logic in WCMDM::DidNavigateMainFrame.
  // TBD right now because we're not sure which knobs need to be set here.
  virtual bool ShouldCloseOnNavigation() = 0;

 protected:
  SinglePopupManager() {}

 private:
  DISALLOW_COPY_AND_ASSIGN(SinglePopupManager);
};

}  // namespace web_modal

#endif  // COMPONENTS_WEB_MODAL_SINGLE_POPUP_MANAGER_H_