/external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/ |
Lwjgl3WindowConfiguration.java | 58 * @param resizable whether the windowed mode window is resizable 60 public void setResizable(boolean resizable) { 61 this.windowResizable = resizable; 81 * Sets minimum and maximum size limits for the window. If the window is full screen or not resizable, these
|
Lwjgl3ApplicationConfiguration.java | 215 * @param resizable whether the windowed mode window is resizable (default true)
217 public void setResizable(boolean resizable) {
218 this.windowResizable = resizable;
238 * Sets minimum and maximum size limits for the window. If the window is full screen or not resizable, these
|
Lwjgl3Graphics.java | 388 public void setResizable(boolean resizable) { 390 config.setResizable(resizable);
|
/external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/ |
JglfwGraphics.java | 53 private boolean resizable, undecorated; field in class:JglfwGraphics 73 resizable = config.resizable; 117 glfwWindowHint(GLFW_RESIZABLE, resizable ? 1 : 0); 362 public void setResizable (boolean resizable) { 363 this.resizable = resizable;
|
JglfwApplicationConfiguration.java | 54 /** True if the window is resizable. **/
55 public boolean resizable = true;
field in class:JglfwApplicationConfiguration
|
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/ |
LwjglGraphics.java | 210 Display.setResizable(config.resizable); 478 boolean resizable = !fullscreen && config.resizable; 482 // Workaround for bug in LWJGL whereby resizable state is lost on DisplayMode change 483 if (resizable == Display.isResizable()) { 484 Display.setResizable(!resizable); 486 Display.setResizable(resizable); 544 public void setResizable (boolean resizable) { 545 this.config.resizable = resizable; [all...] |
LwjglApplicationConfiguration.java | 71 /** whether the window is resizable **/
72 public boolean resizable = true;
field in class:LwjglApplicationConfiguration
|
/external/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/mock/graphics/ |
MockGraphics.java | 255 public void setResizable(boolean resizable) {
|
/external/doclava/res/assets/templates/assets/ |
doclava-developer-docs.css | 35 #side-nav.not-resizable { 1077 /* JQUERY RESIZABLE STYLES */ 1078 .ui-resizable { position: relative; } 1079 .ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; } 1080 .ui-resizable .ui-resizable-handle { display: block; } 1081 body .ui-resizable-disabled .ui-resizable-handle { display: none; } 1082 body .ui-resizable-autohide .ui-resizable-handle { display: none; [all...] |
doclava-developer-docs.js | 155 $("#resize-packages-nav").resizable({handles: "s", resize: function(e, ui) { resizePackagesHeight(); } }); 156 $(".side-nav-resizable").resizable({handles: "e", resize: function(e, ui) { resizeWidth(); } }); 161 } else if ($(".side-nav-resizable").length) { 280 * which creates the resizable side bar */ 298 if ($(".side-nav-resizable").length) { // Must check if the nav is resizable because IE6 calls resizeWidth() from resizeAll() for all pages
|
/external/libgdx/gdx/src/com/badlogic/gdx/ |
Graphics.java | 248 /** Sets whether or not the window should be resizable. Ignored on Android. 256 * @param resizable 258 public void setResizable (boolean resizable);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
configSectionNameDialog.py | 16 self.resizable(height=FALSE,width=FALSE)
|
aboutDialog.py | 23 self.resizable(height=FALSE, width=FALSE)
|
configHelpSourceEdit.py | 21 self.resizable(height=FALSE, width=FALSE)
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
configSectionNameDialog.py | 16 self.resizable(height=FALSE,width=FALSE)
|
aboutDialog.py | 23 self.resizable(height=FALSE, width=FALSE)
|
configHelpSourceEdit.py | 21 self.resizable(height=FALSE, width=FALSE)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
configSectionNameDialog.py | 16 self.resizable(height=FALSE,width=FALSE)
|
aboutDialog.py | 23 self.resizable(height=FALSE, width=FALSE)
|
configHelpSourceEdit.py | 21 self.resizable(height=FALSE, width=FALSE)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
configSectionNameDialog.py | 16 self.resizable(height=FALSE,width=FALSE)
|
aboutDialog.py | 23 self.resizable(height=FALSE, width=FALSE)
|
configHelpSourceEdit.py | 21 self.resizable(height=FALSE, width=FALSE)
|
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-docs.css | 1497 /* JQUERY RESIZABLE STYLES */ 1498 .ui-resizable { position: relative; } 1499 .ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; } 1500 .ui-resizable .ui-resizable-handle { display: block; } 1501 body .ui-resizable-disabled .ui-resizable-handle { display: none; } 1502 body .ui-resizable-autohide .ui-resizable-handle { display: none; } 1503 .ui-resizable-s { cursor: s-resize; height: 6px; width: 100%; bottom: 0px; left: 0px [all...] |
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/ |
GwtGraphics.java | 441 public void setResizable (boolean resizable) {
|