Searched defs:widget (Results 1 - 25 of 255) sorted by relevance

1234567891011

/external/webkit/Source/WebCore/bindings/js/
H A DScriptControllerAndroid.cpp35 PassRefPtr<JSC::Bindings::Instance> ScriptController::createScriptInstanceForWidget(Widget* widget) argument
37 if (!widget->isPluginView())
40 return static_cast<PluginView*>(widget)->bindingInstance();
H A DScriptControllerBrew.cpp38 PassRefPtr<JSC::Bindings::Instance> ScriptController::createScriptInstanceForWidget(WebCore::Widget* widget) argument
40 if (!widget->isPluginView())
43 return static_cast<PluginView*>(widget)->bindingInstance();
H A DScriptControllerEfl.cpp40 PassRefPtr<JSC::Bindings::Instance> ScriptController::createScriptInstanceForWidget(Widget* widget) argument
42 if (!widget->isPluginView())
45 return static_cast<PluginView*>(widget)->bindingInstance();
H A DScriptControllerGtk.cpp40 PassRefPtr<JSC::Bindings::Instance> ScriptController::createScriptInstanceForWidget(Widget* widget) argument
42 if (!widget->isPluginView())
45 return static_cast<PluginView*>(widget)->bindingInstance();
H A DScriptControllerHaiku.cpp37 PassRefPtr<JSC::Bindings::Instance> ScriptController::createScriptInstanceForWidget(Widget* widget) argument
39 if (!widget->isPluginView())
42 return static_cast<PluginView*>(widget)->bindingInstance();
H A DScriptControllerWin.cpp37 PassRefPtr<JSC::Bindings::Instance> ScriptController::createScriptInstanceForWidget(Widget* widget) argument
39 if (!widget->isPluginView())
42 return static_cast<PluginView*>(widget)->bindingInstance();
H A DScriptControllerWx.cpp36 PassRefPtr<JSC::Bindings::Instance> ScriptController::createScriptInstanceForWidget(Widget* widget) argument
38 if (!widget->isPluginView())
41 return static_cast<PluginView*>(widget)->bindingInstance();
H A DScriptControllerQt.cpp49 PassRefPtr<JSC::Bindings::Instance> ScriptController::createScriptInstanceForWidget(WebCore::Widget* widget) argument
51 if (widget->isPluginView()) {
52 PluginView* pluginView = static_cast<PluginView*>(widget);
56 QObject* object = widget->bindingObject();
59 object = widget->platformWidget();
/external/chromium/chrome/browser/ui/gtk/
H A Downed_widget_gtk.cc15 void OwnedWidgetGtk::Own(GtkWidget* widget) { argument
16 if (!widget)
21 // widget was created. There should be a floating reference.
22 DCHECK(g_object_is_floating(widget));
25 g_object_ref_sink(widget);
26 widget_ = widget;
33 GtkWidget* widget = widget_;
35 gtk_widget_destroy(widget);
37 DCHECK(!g_object_is_floating(widget));
39 DCHECK_EQ(G_OBJECT(widget)
[all...]
H A Dfocus_store_gtk.h19 GtkWidget* widget() const { return widget_; } function in class:FocusStoreGtk
21 // Save the widget that is currently focused for |widget|'s toplevel (NOT
22 // |widget|).
23 void Store(GtkWidget* widget);
25 // Save |widget| as the focus widget. Call with NULL to clear |widget_|.
26 void SetWidget(GtkWidget* widget);
32 // The widget which last had focus.
35 // The widget fo
[all...]
H A Doverflow_button.h23 GtkWidget* widget() { return widget_.get(); } function in class:OverflowButton
H A Dfocus_store_gtk.cc20 void FocusStoreGtk::Store(GtkWidget* widget) { argument
22 if (widget) {
23 GtkWindow* window = platform_util::GetTopLevel(widget);
31 void FocusStoreGtk::SetWidget(GtkWidget* widget) { argument
36 widget_ = widget;
H A Dfullscreen_exit_bubble_gtk.h28 GtkWidget* widget() const { function in class:FullscreenExitBubbleGtk
29 return slide_widget_->widget();
42 // The widget that animates the slide-out of fullscreen exit bubble.
H A Downed_widget_gtk.h6 // ownership between a C++ object and a GTK widget. It is common to have a
7 // C++ object which encapsulates a GtkWidget, and that widget is exposed from
18 // GtkWidget* widget() { return vbox_.get() }; // Host my widget!
23 // This design will ensure that the widget stays alive from the call to Own()
33 // container owns the widget, and if we remove the widget from the container,
34 // the widget is destroyed. This style of ownership often causes problems when
35 // you have an object encapsulating the widget. If we just use a raw
36 // GtkObject* with no specific ownership management, we push the widget'
62 OwnedWidgetGtk(GtkWidget* widget) argument
[all...]
H A Dback_forward_button_gtk.h31 GtkWidget* widget() { return button_->widget(); } function in class:BackForwardButtonGtk
H A Dconstrained_window_gtk.h27 // Returns the widget that will be put in the constrained window's container.
30 // Returns the widget that should get focus when ConstrainedWindow is focused.
67 // Returns the toplevel widget that displays this "window".
68 GtkWidget* widget() { return border_.get(); } function in class:ConstrainedWindowGtk
88 // The top level widget container that exports to our TabContentsView.
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformBridgeQt.cpp39 NPObject* PlatformBridge::pluginScriptableObject(Widget* widget) argument
41 if (!widget)
44 if (!widget->isPluginView())
47 PluginView* pluginView = static_cast<PluginView*>(widget);
/external/chromium/chrome/browser/ui/views/
H A Ddom_view_browsertest.cc9 #include "views/widget/root_view.h"
10 #include "views/widget/widget.h"
19 Widget* widget = Widget::CreateWidget(params); local
20 widget->Init(NULL, gfx::Rect(0, 0, 400, 400));
21 return widget;
/external/webkit/Source/WebCore/platform/chromium/
H A DPlatformScreenChromium.cpp39 int screenDepth(Widget* widget) argument
41 return PlatformBridge::screenDepth(widget);
44 int screenDepthPerComponent(Widget* widget) argument
46 return PlatformBridge::screenDepthPerComponent(widget);
49 bool screenIsMonochrome(Widget* widget) argument
51 return PlatformBridge::screenIsMonochrome(widget);
54 FloatRect screenRect(Widget* widget) argument
56 return PlatformBridge::screenRect(widget);
59 FloatRect screenAvailableRect(Widget* widget) argument
61 return PlatformBridge::screenAvailableRect(widget);
[all...]
/external/webkit/Source/WebKit/qt/tests/hybridPixmap/
H A Dtst_hybridPixmap.cpp22 #include "widget.h"
43 Widget widget; local
44 widget.show();
45 widget.start();
46 waitForSignal(&widget, SIGNAL(testComplete()));
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dinfobar_container_gtk.h26 // Get the native widget.
27 GtkWidget* widget() const { return container_.get(); } function in class:InfoBarContainerGtk
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DPasteboardHelperGtk.cpp59 bool PasteboardHelperGtk::usePrimarySelectionClipboard(GtkWidget* widget) argument
61 return webkit_web_view_use_primary_for_paste(WEBKIT_WEB_VIEW((widget)));
/external/chromium/chrome/browser/chromeos/login/
H A Dmessage_bubble.h13 #include "views/widget/widget_gtk.h"
59 virtual gboolean OnButtonPress(GtkWidget* widget, GdkEventButton* event) { argument
60 WidgetGtk::OnButtonPress(widget, event);
/external/chromium/chrome/browser/ui/gtk/bookmarks/
H A Dbookmark_bar_gtk_interactive_uitest.cc19 void OnClicked(GtkWidget* widget, bool* clicked_bit) { argument
H A Dbookmark_bar_instructions_gtk.h32 // Get the native widget.
33 GtkWidget* widget() const { return instructions_hbox_; } function in class:BookmarkBarInstructionsGtk

Completed in 243 milliseconds

1234567891011