HomeSort by relevance Sort by last modified time
    Searched full:titlebar (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /external/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/
scope_approval_dialog.html 7 <div class="titlebar">
8 <span class="titlebar-close-button"></span>
scope_approval_dialog.css 10 .titlebar {
18 .titlebar-border {
22 .titlebar-close-button {
scope_approval_dialog.js 33 document.querySelector('.titlebar').classList.add('titlebar-border');
46 document.querySelector('.titlebar-close-button').onclick = function() {
58 insertRule('.titlebar-close-button', resources.IDR_CLOSE_DIALOG);
59 insertRule('.titlebar-close-button:hover', resources.IDR_CLOSE_DIALOG_H);
60 insertRule('.titlebar-close-button:active', resources.IDR_CLOSE_DIALOG_P);
  /external/chromium_org/chrome/browser/ui/cocoa/panels/
panel_titlebar_view_cocoa.h 17 // A class that works as a custom titlebar for Panels. It is placed on top of
18 // the regular Cocoa titlebar. It's the place for the close button, page
22 // One way to have custom titlebar would be to use NSBorderlessWindow,
25 // the standard titlebar.
27 // This view overlays the titlebar on top. It is used to intercept
29 // on the titlebar (to minimize or reorder) while in a docked collection.
55 // Transparent view on top of entire titlebar. It catches mouse events to
77 // Attaches this view to the controller_'s window as a titlebar.
89 // Should be called when size of the titlebar changes.
93 // Various events that we'll need to redraw our titlebar for
    [all...]
panel_cocoa_unittest.mm 83 void VerifyTitlebarLocation(NSView* contentView, NSView* titlebar) {
85 NSRect titlebar_frame = [titlebar frame];
86 // Since contentView and titlebar are both children of window's root view,
90 EXPECT_EQ(NSHeight([[titlebar superview] bounds]), NSMaxY(titlebar_frame));
213 // Verify the titlebar is being created.
219 PanelTitlebarViewCocoa* titlebar = [native_window->controller_ titlebarView];
220 EXPECT_TRUE(titlebar);
221 EXPECT_EQ(native_window->controller_, [titlebar controller]);
226 // Verify the sizing of titlebar - should be affixed on top of regular titlebar
    [all...]
panel_cocoa.mm 191 PanelTitlebarViewCocoa* titlebar = [controller_ titlebarView];
193 [titlebar drawAttention];
195 [titlebar stopDrawingAttention];
209 PanelTitlebarViewCocoa* titlebar = [controller_ titlebarView];
210 return [titlebar isDrawingAttention];
228 // panel window now. In addition, its titlebar needs to be updated since it
349 PanelTitlebarViewCocoa* titlebar() const;
362 PanelTitlebarViewCocoa* CocoaNativePanelTesting::titlebar() const {
373 [titlebar() pressLeftMouseButtonTitlebar:
382 [titlebar() releaseLeftMouseButtonTitlebar:modifierFlags]
    [all...]
panel_window_controller_cocoa.h 10 // code. Each window has a single titlebar and is managed/owned by Panel.
100 // Accessor for titlebar view.
102 // Returns the height of titlebar, used to show the titlebar in
106 // Invoked when user clicks on the titlebar. Attempts to flip the
110 // Invoked when user double-clicks on the titlebar.
  /external/chromium/chrome/browser/ui/gtk/
gconf_titlebar_listener.h 31 // Sets the current titlebar button order. On GNOME desktops, also subscribes
33 void SetTitlebarButtons(BrowserTitlebar* titlebar);
35 // Removes |titlebar| from the list of objects observing button order change
37 void RemoveObserver(BrowserTitlebar* titlebar);
gconf_titlebar_listener.cc 34 void GConfTitlebarListener::SetTitlebarButtons(BrowserTitlebar* titlebar) {
36 titlebar->BuildButtons(current_value_);
37 titlebars_.insert(titlebar);
39 titlebar->BuildButtons(BrowserTitlebar::kDefaultButtonString);
43 void GConfTitlebarListener::RemoveObserver(BrowserTitlebar* titlebar) {
44 titlebars_.erase(titlebar);
browser_titlebar.h 5 // A helper class that contains the gtk widgets that make up the titlebar. The
6 // titlebar consists of the tabstrip and if the custom chrome frame is turned
7 // on, it includes the taller titlebar and minimize, restore, maximize, and
52 // tall titlebar and the min/max/close buttons.
63 // On Windows, right clicking in the titlebar background brings up the system
95 // Build the titlebar, the space above the tab
112 // Update the titlebar spacing based on the custom frame and maximized state.
167 // The container widget the holds the hbox which contains the whole titlebar.
170 // The hbox that contains the whole titlebar.
190 // Padding between the titlebar buttons and the top of the screen. Only sho
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
gconf_titlebar_listener.h 30 // Sets the current titlebar button order. On GNOME desktops, also subscribes
32 void SetTitlebarButtons(BrowserTitlebar* titlebar);
34 // Removes |titlebar| from the list of objects observing button order change
36 void RemoveObserver(BrowserTitlebar* titlebar);
gconf_titlebar_listener.cc 35 void GConfTitlebarListener::SetTitlebarButtons(BrowserTitlebar* titlebar) {
37 titlebar->BuildButtons(current_value_);
38 titlebars_.insert(titlebar);
40 titlebar->BuildButtons(BrowserTitlebar::kDefaultButtonString);
44 void GConfTitlebarListener::RemoveObserver(BrowserTitlebar* titlebar) {
45 titlebars_.erase(titlebar);
browser_titlebar.h 5 // A helper class that contains the gtk widgets that make up the titlebar. The
6 // titlebar consists of the tabstrip and if the custom chrome frame is turned
7 // on, it includes the taller titlebar and minimize, restore, maximize, and
56 // Build the titlebar, the space above the tab strip, and (maybe) the min,
66 // tall titlebar and the min/max/close buttons.
74 // On Windows, right clicking in the titlebar background brings up the system
100 // the titlebar where the button is placed.
120 // Update the titlebar spacing based on the custom frame and maximized state.
184 // The container widget the holds the hbox which contains the whole titlebar.
187 // The hbox that contains the whole titlebar
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
inject_app_titlebar.js 10 "x-titlebar { height: 24px; width: 100%; " +
43 var titlebar = root.appendChild(document.createElement('x-titlebar'));
44 var closeButton = titlebar.appendChild(document.createElement('button'));
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
TitleBar.java 27 public class TitleBar extends CustomBar {
31 public TitleBar(Context context, Density density, String label)
  /external/chromium/chrome/browser/ui/views/frame/
app_panel_browser_frame_view.h 81 // bottom of the titlebar.
84 // Returns the size of the titlebar icon.
87 // Returns the bounds of the titlebar icon.
91 // also paints the background of the titlebar area, since the top frame border
92 // and titlebar background are a contiguous component.
opaque_browser_frame_view.h 117 // Returns the thickness of the 3D edge along the bottom of the titlebar. If
122 // Returns the size of the titlebar icon. This is used even when the icon is
123 // not shown, e.g. to set the titlebar height.
126 // Returns the bounds of the titlebar icon (or where the icon would be if
131 // also paint the background of the titlebar area, since the top frame border
132 // and titlebar background are a contiguous component.
  /external/chromium_org/chrome/browser/ui/panels/
panel_constants.h 10 // The height in pixels of the titlebar.
15 // recognisable titlebar.
17 // Motivation for 'width' is to make main buttons on the titlebar functional.
19 // single line of text - so the height is set to be likely less then a titlebar,
53 // Different types of buttons that can be shown on panel's titlebar.
panel_bounds_animation.cc 64 // 1. Quickly (0 -> 0.15) make only titlebar visible.
65 // 2. Freeze for a little bit (0.15->0.6), just showing titlebar.
  /external/chromium_org/chrome/browser/ui/views/frame/
app_panel_browser_frame_view.h 75 // bottom of the titlebar.
78 // Returns the size of the titlebar icon.
81 // Returns the bounds of the titlebar icon.
85 // also paints the background of the titlebar area, since the top frame border
86 // and titlebar background are a contiguous component.
  /external/chromium_org/ui/views/window/
custom_frame_view.h 78 // bottom of the titlebar.
81 // Returns the size of the titlebar icon. This is used even when the icon is
82 // not shown, e.g. to set the titlebar height.
85 // Returns the bounds of the titlebar icon (or where the icon would be if
  /packages/apps/Browser/src/com/android/browser/
AutologinBar.java 42 protected TitleBar mTitleBar;
68 public void setTitleBar(TitleBar titleBar) {
69 mTitleBar = titleBar;
BrowserWebView.java 40 private TitleBar mTitleBar;
101 public void setTitleBar(TitleBar title) {
  /external/chromium_org/chrome/browser/ui/gtk/panels/
panel_gtk.h 95 PanelTitlebarGtk* titlebar() const { return titlebar_.get(); } function in class:PanelGtk
149 // Mouse move and button press callbacks. If mouse hits titlebar,
150 // the titlebar gets the event, else the window gets the button press.
203 // VBox that holds everything (titlebar, web contents).
213 // The container for the titlebar.
  /external/chromium/chrome/browser/chromeos/frame/
panel_controller.h 48 // Retrieves the icon to use in the panel's titlebar.
157 // Cursor's offset from the upper-left corner of the titlebar when the
162 // Is the titlebar currently being dragged? That is, has the cursor

Completed in 1107 milliseconds

1 2 3 4 5 6