Home | History | Annotate | Download | only in webkit

Lines Matching refs:features

42  * To be safe listen to the notify::window-features signal of the #WebKitWebView
48 * WebKitWebWindowFeatures *features = webkit_web_view_get_window_features (my_webview);
51 * g_signal_connect (G_OBJECT(features), "notify::menubar-visible", G_CALLBACK(make_menu_bar_visible), NULL);
52 * g_signal_connect (G_OBJECT(features), "notify::statusbar-visible", G_CALLBACK(make_status_bar_visible), NULL);
382 WebKitWebWindowFeatures* webkit_web_window_features_new_from_core_features(const WebCore::WindowFeatures& features)
386 if(features.xSet)
387 g_object_set(webWindowFeatures, "x", static_cast<int>(features.x), NULL);
389 if(features.ySet)
390 g_object_set(webWindowFeatures, "y", static_cast<int>(features.y), NULL);
392 if(features.widthSet)
393 g_object_set(webWindowFeatures, "width", static_cast<int>(features.width), NULL);
395 if(features.heightSet)
396 g_object_set(webWindowFeatures, "height", static_cast<int>(features.height), NULL);
399 "toolbar-visible", features.toolBarVisible,
400 "statusbar-visible", features.statusBarVisible,
401 "scrollbar-visible", features.scrollbarsVisible,
402 "menubar-visible", features.menuBarVisible,
403 "locationbar-visible", features.locationBarVisible,
404 "fullscreen", features.fullscreen,