/external/chromium_org/ui/views/widget/ |
widget_observer.h | 16 class Widget; 22 // same call stack as) a request to close the Widget (via Close() or 24 virtual void OnWidgetClosing(Widget* widget) {} 27 // widget has been created. 28 virtual void OnWidgetCreated(Widget* widget) {} 30 // The destroying event occurs immediately before the widget is destroyed. 33 virtual void OnWidgetDestroying(Widget* widget) {} [all...] |
widget_deletion_observer.h | 11 #include "ui/views/widget/widget_observer.h" 14 class Widget; 16 // A simple WidgetObserver that can be probed for the life of a widget. 19 explicit WidgetDeletionObserver(Widget* widget); 22 // Returns true if the widget passed in the constructor is still alive. 26 virtual void OnWidgetDestroying(Widget* widget) OVERRIDE; 31 Widget* widget_;
|
widget_aura_utils.cc | 5 #include "ui/views/widget/widget_aura_utils.h" 12 Widget::InitParams::Type type) { 14 case Widget::InitParams::TYPE_WINDOW: 16 case Widget::InitParams::TYPE_PANEL: 18 case Widget::InitParams::TYPE_CONTROL: 20 case Widget::InitParams::TYPE_WINDOW_FRAMELESS: 21 case Widget::InitParams::TYPE_POPUP: 22 case Widget::InitParams::TYPE_BUBBLE: 23 case Widget::InitParams::TYPE_DRAG: 25 case Widget::InitParams::TYPE_MENU [all...] |
/external/chromium/testing/gtest/xcode/Samples/FrameworkSample/ |
widget.cc | 33 // widget.cc 36 // Widget is a very simple class used for demonstrating the use of gtest 38 #include "widget.h" 40 Widget::Widget(int number, const std::string& name) 44 Widget::~Widget() {} 46 float Widget::GetFloatValue() const { 50 int Widget::GetIntValue() const { 54 std::string Widget::GetStringValue() const [all...] |
widget.h | 33 // widget.h 36 // Widget is a very simple class used for demonstrating the use of gtest. It 42 class Widget { 44 Widget(int number, const std::string& name); 45 ~Widget();
|
/external/chromium_org/testing/gtest/xcode/Samples/FrameworkSample/ |
widget.cc | 33 // widget.cc 36 // Widget is a very simple class used for demonstrating the use of gtest 38 #include "widget.h" 40 Widget::Widget(int number, const std::string& name) 44 Widget::~Widget() {} 46 float Widget::GetFloatValue() const { 50 int Widget::GetIntValue() const { 54 std::string Widget::GetStringValue() const [all...] |
widget.h | 33 // widget.h 36 // Widget is a very simple class used for demonstrating the use of gtest. It 42 class Widget { 44 Widget(int number, const std::string& name); 45 ~Widget();
|
/external/protobuf/gtest/xcode/Samples/FrameworkSample/ |
widget.cc | 33 // widget.cc 36 // Widget is a very simple class used for demonstrating the use of gtest 38 #include "widget.h" 40 Widget::Widget(int number, const std::string& name) 44 Widget::~Widget() {} 46 float Widget::GetFloatValue() const { 50 int Widget::GetIntValue() const { 54 std::string Widget::GetStringValue() const [all...] |
widget.h | 33 // widget.h 36 // Widget is a very simple class used for demonstrating the use of gtest. It 42 class Widget { 44 Widget(int number, const std::string& name); 45 ~Widget();
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
PlatformScreen.h | 40 class Widget; 42 PLATFORM_EXPORT int screenDepth(Widget*); 43 PLATFORM_EXPORT int screenDepthPerComponent(Widget*); 44 PLATFORM_EXPORT bool screenIsMonochrome(Widget*); 46 PLATFORM_EXPORT FloatRect screenRect(Widget*); 47 PLATFORM_EXPORT FloatRect screenAvailableRect(Widget*);
|
Widget.cpp | 28 #include "platform/Widget.h" 35 Widget::Widget() 42 Widget::~Widget() 47 void Widget::setParent(Widget* widget) 49 ASSERT(!widget || !m_parent); 50 if (!widget || !widget->isVisible() [all...] |
/external/chromium_org/ash/ |
focus_cycler.h | 15 class Widget; 34 // Returns the widget the FocusCycler is attempting to activate or NULL if 36 const views::Widget* widget_activating() const { return widget_activating_; } 38 // Add a widget to the focus cycle. The widget needs to have an 40 void AddWidget(views::Widget* widget); 42 // Move focus to the next widget. 45 // Moves focus the specified widget. Returns true if the widget was activated [all...] |
shell_factory.h | 20 class Widget; 28 views::Widget* CreateDesktopBackground(aura::Window* root_window, 31 ASH_EXPORT views::Widget* CreateStatusArea(views::View* contents);
|
/external/chromium_org/ash/wm/caption_buttons/ |
frame_maximize_button_observer.h | 11 class Widget; 21 virtual void OnMaximizeBubbleShown(views::Widget* bubble) = 0;
|
/external/chromium_org/chrome/browser/ui/ |
top_level_widget.h | 11 class Widget; 16 views::Widget* GetTopLevelWidgetForBrowser(Browser* browser);
|
/external/chromium_org/ui/app_list/views/ |
app_list_view_observer.h | 9 class Widget; 16 virtual void OnActivationChanged(views::Widget* widget, bool active) = 0;
|
/external/chromium_org/ui/views/test/ |
widget_test.cc | 8 #include "ui/views/widget/root_view.h" 13 // A widget that assumes mouse capture always works. It won't on Aura in 45 Widget* WidgetTest::CreateTopLevelPlatformWidget() { 46 Widget* toplevel = new Widget; 47 Widget::InitParams toplevel_params = 48 CreateParams(Widget::InitParams::TYPE_WINDOW); 54 Widget* WidgetTest::CreateTopLevelFramelessPlatformWidget() { 55 Widget* toplevel = new Widget; [all...] |
test_widget_observer.h | 12 #include "ui/views/widget/widget_observer.h" 17 // A Widget observer class used in the tests below to observe bubbles closing. 20 explicit TestWidgetObserver(Widget* widget); 27 virtual void OnWidgetDestroying(Widget* widget) OVERRIDE; 29 Widget* widget_;
|
/external/chromium_org/chrome/browser/chromeos/login/ |
lock_window_aura.h | 10 #include "ui/views/widget/widget.h" 14 class LockWindowAura : public views::Widget, 19 virtual views::Widget* GetWidget() OVERRIDE;
|
/external/chromium_org/third_party/WebKit/Source/core/plugins/ |
PluginOcclusionSupport.h | 27 class Widget; 30 void getPluginOcclusions(Element*, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions);
|
/external/chromium_org/ui/views/ime/ |
input_method_bridge_unittest.cc | 12 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" 13 #include "ui/views/widget/native_widget_aura.h" 14 #include "ui/views/widget/widget.h" 27 Widget* toplevel = new Widget; 28 Widget::InitParams toplevel_params = 29 CreateParams(Widget::InitParams::TYPE_WINDOW); 34 Widget* child = new Widget; [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebInputEventConversion.h | 49 class Widget; 65 PlatformMouseEventBuilder(WebCore::Widget*, const WebMouseEvent&); 70 PlatformWheelEventBuilder(WebCore::Widget*, const WebMouseWheelEvent&); 75 PlatformGestureEventBuilder(WebCore::Widget*, const WebGestureEvent&); 88 PlatformTouchPointBuilder(WebCore::Widget*, const WebTouchPoint&); 94 PlatformTouchEventBuilder(WebCore::Widget*, const WebTouchEvent&); 103 WebMouseEventBuilder(const WebCore::Widget*, const WebCore::RenderObject*, const WebCore::MouseEvent&); 104 WebMouseEventBuilder(const WebCore::Widget*, const WebCore::RenderObject*, const WebCore::TouchEvent&); 110 WebMouseEventBuilder(const WebCore::Widget*, const WebCore::PlatformMouseEvent&); 117 WebMouseWheelEventBuilder(const WebCore::Widget*, const WebCore::RenderObject*, const WebCore::WheelEvent&) [all...] |
/external/chromium_org/ui/views/focus/ |
focus_manager_factory.h | 14 class Widget; 20 // Create a FocusManager for the given |widget| using installe Factory. 21 static FocusManager* Create(Widget* widget, bool desktop_widget); 31 // Create a FocusManager for the given |widget|. 34 virtual FocusManager* CreateFocusManager(Widget* widget,
|
/external/chromium_org/chrome/browser/ui/views/ |
constrained_window_views.h | 17 class Widget; 26 // Update the position of dialog |widget| against |dialog_host|. This is used to 29 views::Widget* widget, 33 views::Widget* widget, 36 // Create a widget for |dialog| that is modal to the browser window |parent|. 38 views::Widget* CreateBrowserModalDialogViews(views::DialogDelegate* dialog, 42 views::Widget* widget, [all...] |
/external/chromium_org/ui/views/widget/desktop_aura/ |
desktop_screen_position_client_unittest.cc | 6 #include "ui/views/widget/desktop_aura/desktop_native_widget_aura.h" 7 #include "ui/views/widget/widget.h" 14 // Verifies setting the bounds of a dialog parented to a Widget with a 17 Widget parent_widget; 18 Widget::InitParams init_params = 19 CreateParams(Widget::InitParams::TYPE_WINDOW); 21 init_params.ownership = Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET; 29 Widget* dialog = DialogDelegate::CreateDialogWidget( 40 Widget widget1 [all...] |