Searched refs:WindowFeatures (Results 1 - 25 of 34) sorted by relevance

12

/external/webkit/WebCore/page/
H A DWindowFeatures.h37 struct WindowFeatures { struct in namespace:WebCore
38 WindowFeatures() function in struct:WebCore::WindowFeatures
54 WindowFeatures(const String& features);
H A DWindowFeatures.cpp24 #include "WindowFeatures.h"
40 WindowFeatures::WindowFeatures(const String& features) function in class:WebCore::WindowFeatures
123 void WindowFeatures::setWindowFeature(const String& keyString, const String& valueString)
160 bool WindowFeatures::boolFeature(const HashMap<String, String>& features, const char* key, bool defaultValue)
169 float WindowFeatures::floatFeature(const HashMap<String, String>& features, const char* key, float min, float max, float defaultValue)
H A DChrome.h53 struct WindowFeatures;
92 Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&) const;
H A DChromeClient.h59 struct WindowFeatures;
96 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&) = 0;
H A DChrome.cpp44 #include "WindowFeatures.h"
162 Page* Chrome::createWindow(Frame* frame, const FrameLoadRequest& request, const WindowFeatures& features) const
H A DContextMenuController.cpp61 #include "WindowFeatures.h"
140 WindowFeatures features;
/external/webkit/WebCore/bindings/generic/
H A DBindingDOMWindow.h53 const WindowFeatures& windowFeatures,
66 const WindowFeatures& windowFeatures,
/external/webkit/WebKit/chromium/src/
H A DChromeClientImpl.h41 struct WindowFeatures;
69 WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&);
H A DWebFrameImpl.h50 struct WindowFeatures;
/external/webkit/WebCore/bindings/js/
H A DJSDOMWindowCustom.cpp86 #include "WindowFeatures.h"
664 const WindowFeatures& windowFeatures, JSValue dialogArgs)
733 WindowFeatures windowFeatures(valueToStringWithUndefinedOrNullCheck(exec, args.at(2)));
837 WindowFeatures wargs;
838 wargs.width = WindowFeatures::floatFeature(features, "dialogwidth", 100, screenRect.width(), 620); // default here came from frame size of dialog in MacIE
840 wargs.height = WindowFeatures::floatFeature(features, "dialogheight", 100, screenRect.height(), 450); // default here came from frame size of dialog in MacIE
843 wargs.x = WindowFeatures::floatFeature(features, "dialogleft", screenRect.x(), screenRect.right() - wargs.width, -1);
845 wargs.y = WindowFeatures::floatFeature(features, "dialogtop", screenRect.y(), screenRect.bottom() - wargs.height, -1);
848 if (WindowFeatures::boolFeature(features, "center", true)) {
860 wargs.resizable = WindowFeatures
[all...]
/external/webkit/WebCore/bindings/v8/custom/
H A DV8DOMWindowCustom.cpp66 #include "WindowFeatures.h"
511 WindowFeatures windowFeatures;
513 windowFeatures.width = WindowFeatures::floatFeature(features, "dialogwidth", 100, screenRect.width(), 620);
516 windowFeatures.height = WindowFeatures::floatFeature(features, "dialogheight", 100, screenRect.height(), 450);
519 windowFeatures.x = WindowFeatures::floatFeature(features, "dialogleft", screenRect.x(), screenRect.right() - windowFeatures.width, -1);
521 windowFeatures.y = WindowFeatures::floatFeature(features, "dialogtop", screenRect.y(), screenRect.bottom() - windowFeatures.height, -1);
524 if (WindowFeatures::boolFeature(features, "center", true)) {
536 windowFeatures.resizable = WindowFeatures::boolFeature(features, "resizable");
537 windowFeatures.scrollbarsVisible = WindowFeatures::boolFeature(features, "scroll", true);
538 windowFeatures.statusBarVisible = WindowFeatures
[all...]
/external/webkit/WebKit/haiku/WebCoreSupport/
H A DChromeClientHaiku.h62 Page* createWindow(Frame*, const FrameLoadRequest&, const WebCore::WindowFeatures&);
H A DChromeClientHaiku.cpp105 Page* ChromeClientHaiku::createWindow(Frame*, const FrameLoadRequest&, const WebCore::WindowFeatures&)
/external/webkit/WebKit/wx/WebKitSupport/
H A DChromeClientWx.h59 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&);
H A DChromeClientWx.cpp40 #include "WindowFeatures.h"
57 wxWebKitWindowFeatures wkFeaturesforWindowFeatures(const WindowFeatures& features)
134 Page* ChromeClientWx::createWindow(Frame*, const FrameLoadRequest& request, const WindowFeatures& features)
/external/webkit/WebKit/android/WebCoreSupport/
H A DChromeClientAndroid.h79 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&);
H A DChromeClientAndroid.cpp48 #include "WindowFeatures.h"
160 const WindowFeatures& features)
/external/webkit/WebKit/gtk/WebCoreSupport/
H A DChromeClientGtk.h52 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&);
/external/webkit/WebKit/qt/WebCoreSupport/
H A DChromeClientQt.h70 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&);
/external/webkit/WebCore/loader/
H A DFrameLoader.h85 struct WindowFeatures;
126 Frame* createWindow(FrameLoader* frameLoaderForFrameLookup, const FrameLoadRequest&, const WindowFeatures&, bool& created);
/external/webkit/WebKit/gtk/webkit/
H A Dwebkitwebwindowfeatures.cpp23 #include "WindowFeatures.h"
382 WebKitWebWindowFeatures* webkit_web_window_features_new_from_core_features(const WebCore::WindowFeatures& features)
H A Dwebkitprivate.h61 #include "WindowFeatures.h"
235 webkit_web_window_features_new_from_core_features (const WebCore::WindowFeatures& features);
/external/webkit/WebKit/mac/WebCoreSupport/
H A DWebChromeClient.h58 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&);
/external/webkit/WebKit/win/WebCoreSupport/
H A DWebChromeClient.h60 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&);
H A DWebChromeClient.cpp53 #include <WebCore/WindowFeatures.h>
166 static COMPtr<IPropertyBag> createWindowFeaturesPropertyBag(const WindowFeatures& features)
188 Page* WebChromeClient::createWindow(Frame*, const FrameLoadRequest& frameLoadRequest, const WindowFeatures& features)

Completed in 1207 milliseconds

12