/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
ScrolledText.py | 10 Most methods calls are inherited from the Text widget; Pack, Grid and 16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place 33 methods = vars(Pack).keys() + vars(Grid).keys() + vars(Place).keys()
|
Tix.py | 49 # A few useful constants for the Grid widget 253 def grid(self, xsize=0, ysize=0): member in class:Form 255 x = self.tk.call('tixForm', 'grid', self._w) 261 return self.tk.call('tixForm', 'grid', self._w, xsize, ysize) [all...] |
Tkinter.py | 14 or Grid. These managers can be called with methods place, pack, grid 1606 grid = wm_grid variable in class:Wm [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
ScrolledText.py | 10 Most methods calls are inherited from the Text widget; Pack, Grid and 16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place 33 methods = vars(Pack).keys() + vars(Grid).keys() + vars(Place).keys()
|
Tix.py | 49 # A few useful constants for the Grid widget 253 def grid(self, xsize=0, ysize=0): member in class:Form 255 x = self.tk.call('tixForm', 'grid', self._w) 261 return self.tk.call('tixForm', 'grid', self._w, xsize, ysize) [all...] |
Tkinter.py | 14 or Grid. These managers can be called with methods place, pack, grid 1606 grid = wm_grid variable in class:Wm [all...] |
/build/tools/droiddoc/templates-ds/assets/js/grid/ |
960.gridder.js | 14 * to change the settings before it is re-rendering the grid
22 * proper number of columns that can be used with the specified grid width
29 function Grid() {
65 jQuery('<div class="g-' + e + '"> </div>').appendTo("#g-grid").css(d);
85 jQuery('<style type"text/css">#g-setup{position:absolute;top:150px;left:-310px;padding:6px;margin:0;list-style:none;width:320px!important;background-color:#d1cfe6;border:2px solid #a19bd1;z-index:2100; display:none;}#g-setup *{background:transparent!important;border:0!important;color:#58517c!important;font-family:Verdana,Geneva,sans-serif!important;font-size:10px!important;font-weight:normal!important;letter-spacing:normal!important;line-height:1!important;list-style-type:none!important;margin:0!important;padding:0!important;text-decoration:none!important;text-indent:0!important;text-transform:none!important;word-spacing:0!important;z-index:2100!important;}#g-setup .head{font-weight:bold!important;text-align:center;border-bottom:1px solid #7cb267!important;}#g-setup ul{width:150px;float:left!important;}#g-setup li{clear:left;padding:5px!important;}* html #g-setup li{clear:none!important;padding:4px!important;}#g-setup span{float:left!important;width:50px;padding:1px 4px 0 0!important;text-align:right!important;line-height:1.5!important;}#g-setup input,#g-setup select{float:left!important;width:70px;border:1px solid #a19bd1!important;background-color:#e7e6ee!important;padding:2px!important;}#g-setup select{width:77px;padding:0!important;}#g-setup-misc{margin-top:5px!important;clear:left;float:none!important;width:300px!important;border-top:1px solid #7cb267!important;}#g-setup-misc span{line-height:1.1!important;width:200px;}#g-setup-misc input{width:15px;padding:0!important;height:15px;}#g-setup-tab{width:26px;overflow:hidden;position:absolute;top:0;left:100%;margin-left:-26px!important;z-index:2100!important;}#g-setup-tab img{left:0;position:relative;}#g-grid{left:0;position:absolute;z-index:500;top:0;}#g-grid .g-vertical,#g-grid .g-horizontal{position:absolute;z-index:1000;}*:first-child+html #g-grid .g-horizontal,*:first-child+html #g-grid .g-vertical{margin-left:-1px;}#g-grid .g-horizontal{min-height:1px;height:1px;font-size:0;line-height:0;}</style>').appendTo("head"); [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/ |
Grid.java | 43 * Simple grid shape. 47 public class Grid extends Mesh { 50 * Creates a grid debug shape. 55 public Grid(int xLines, int yLines, float lineDist){
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
Grid.java | 30 class Grid { 32 public Grid(int w, int h) {
|
/frameworks/native/opengl/tests/testViewport/src/com/android/test/ |
TestView.java | 76 /** A grid is a topologically rectangular array of vertices. 84 private static class Grid { 98 // constructing the grid. Once createBufferObjects() is called 109 public Grid(int w, int h) { 228 private Grid mGrid; 249 mGrid = new Grid(2, 2);
|
/external/replicaisland/src/com/replica/replicaisland/ |
Grid.java | 33 * This version is modified from the original Grid.java (found in 35 * vertex buffers and to insert edges between grid squares for tiling. 37 class Grid { 61 public Grid(int quadsAcross, int quadsDown, boolean useFixedPoint) { 337 DebugLog.i("Grid", "Using Hardware Buffers");
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
MatrixPaletteRenderer.java | 44 private Grid mGrid; 47 /** A grid is a topologically rectangular array of vertices. 49 * This grid class is customized for the vertex data required for this 58 private static class Grid { 78 // constructing the grid. Once createBufferObjects() is called 89 public Grid(int w, int h) { 383 private Grid generateWeightedGrid(GL gl) { 389 Grid grid = new Grid(uSteps + 1, vSteps + 1) local [all...] |
CubeMapActivity.java | 52 private Grid mGrid; 165 private Grid generateTorusGrid(GL gl, int uSteps, int vSteps, float majorRadius, float minorRadius) { 166 Grid grid = new Grid(uSteps + 1, vSteps + 1); local 189 grid.set(i, j, x, y, z, nx, ny, nz); 192 grid.createBufferObjects(gl); 193 return grid; 219 /** A grid is a topologically rectangular array of vertices. 221 * This grid class is customized for the vertex data required for thi [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
RelativeLayoutConversionHelper.java | 191 // Attempt to lay the views out in a grid with constraints (though not that widgets 193 Grid grid = new Grid(views, left, top); local 195 computeHorizontalConstraints(grid); 196 computeVerticalConstraints(grid); [all...] |