Searched refs:resizable (Results 1 - 25 of 58) sorted by relevance

123

/macosx-10.9.5/tcl-102/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/
H A DResizableMovie.tcl6 movie .m -file $myFile -resizable 1
H A DTimerToStopPlay.tcl30 wm resizable . 0 0
H A DConstrainedLoop.tcl48 wm resizable . 0 0
H A DAnyMemLeaks.tcl4 wm resizable . 0 0
H A DFastMotionMovieMaker.tcl7 wm resizable . 0 0
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitWindowPropertiesPrivate.h40 void webkitWindowPropertiesSetResizable(WebKitWindowProperties*, bool resizable);
H A DWebKitWindowProperties.cpp118 bool resizable : 1; member in struct:_WebKitWindowPropertiesPrivate
183 windowProperties->priv->resizable = g_value_get_boolean(value);
279 * WebKitWebWindowProperties:resizable:
285 g_param_spec_boolean("resizable",
361 void webkitWindowPropertiesSetResizable(WebKitWindowProperties* windowProperties, bool resizable) argument
363 if (windowProperties->priv->resizable == resizable)
365 windowProperties->priv->resizable = resizable;
366 g_object_notify(G_OBJECT(windowProperties), "resizable");
[all...]
H A DWebKitUIClient.cpp109 static void setIsResizable(WKPageRef page, bool resizable, const void* clientInfo) argument
112 webkitWindowPropertiesSetResizable(windowProperties, resizable);
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DWindowFeatures.h50 , resizable(true)
72 bool resizable; member in struct:WebCore::WindowFeatures
H A DWindowFeatures.cpp62 resizable = true;
71 resizable = true;
131 // We treat keyString of "resizable" here as an additional feature rather than setting resizeable to true.
203 resizable = boolFeature(features, "resizable");
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_window_features_private.h63 bool resizable() const { return m_resizable; } function in class:EwkWindowFeatures
64 void setResizable(bool resizable);
H A Dewk_window_features.cpp44 , m_resizable(getWindowFeatureBoolValue(windowFeatures, "resizable", true))
95 void EwkWindowFeatures::setResizable(bool resizable) argument
97 m_resizable = resizable;
98 m_view->smartCallback<EwkViewCallbacks::WindowResizable>().call(&resizable);
140 return impl->resizable();
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DSplitView.js230 * @param {boolean} resizable
232 setResizable: function(resizable)
234 if (this._resizable === resizable)
236 this._resizable = resizable;
237 if (resizable)
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/demos/tcl/
H A Dnotescale.tcl11 wm resizable . 0 0
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/efl/
H A DPageUIClientEfl.cpp183 return features->resizable();
186 void PageUIClientEfl::setIsResizable(WKPageRef, bool resizable, const void* clientInfo) argument
190 features->setResizable(resizable);
/macosx-10.9.5/WebKit-7537.78.2/mac/DefaultDelegates/
H A DWebDefaultUIDelegate.m137 - (void)webView: (WebView *)wv setResizable:(BOOL)resizable
141 [[wv window] setShowsResizeIndicator:resizable];
/macosx-10.9.5/tcl-102/tk/tk/library/ttk/
H A Dsizegrip.tcl48 # If the toplevel is not resizable then bail
49 foreach {State(resizeX) State(resizeY)} [wm resizable $top] break
/macosx-10.9.5/tcl-102/tcl_ext/tktable/tktable/unix/
H A Dtktable.spec24 (interactively resizable), scrollbar support, tag styles per row,
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tk/
H A Dwm.rb425 def Wm.resizable(win, *args) singleton method in class:Tk.Wm.manage
427 list(tk_call_without_enc('wm', 'resizable', win.epath)).map!{|e| bool(e)}
430 tk_call_without_enc('wm', 'resizable', win.epath, *args)
434 def resizable(*args) method in class:Tk.Wm.manage
435 Wm.resizable(self, *args)
437 alias wm_resizable resizable
438 TOPLEVEL_METHODCALL_OPTKEYS['resizable'] = 'resizable'
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/getstring/
H A Dtk_getString.tcl48 wm resizable $w 1 0
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebUIClient.cpp71 map.set("resizable", WebBoolean::create(windowFeatures.resizable));
281 void WebUIClient::setIsResizable(WebPageProxy* page, bool resizable) argument
285 m_client.setIsResizable(toAPI(page), resizable, m_client.clientInfo);
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebChromeClient.mm231 NSNumber *resizable = [[NSNumber alloc] initWithBool:features.resizable];
240 resizable, @"resizable",
265 [resizable release];
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebUIDelegate.h308 @abstract Determine whether the window is resizable or not.
310 @result YES if resizable, NO if not.
319 @abstract Set the window to resizable or not
321 @param resizable YES if the window should be made resizable, NO if not.
326 - (void)webView:(WebView *)sender setResizable:(BOOL)resizable;
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebUIDelegate.idl337 @abstract Determine whether the window is resizable or not.
339 @result YES if resizable, NO if not.
345 HRESULT webViewIsResizable([in] IWebView* sender, [out, retval] BOOL* resizable);
349 @abstract Set the window to resizable or not
351 @param resizable YES if the window should be made resizable, NO if not.
355 - (void)webView:(WebView *)sender setResizable:(BOOL)resizable;
357 HRESULT setResizable([in] IWebView* sender, [in] BOOL resizable);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKPreferences.h152 WK_EXPORT void WKPreferencesSetTextAreasAreResizable(WKPreferencesRef preferencesRef, bool resizable);

Completed in 141 milliseconds

123