Source Code Cross Referenced for LayoutGrid.java in  » Ajax » dwr » jsx3 » gui » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Ajax » dwr » jsx3.gui 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright 2005 Joe Walker
003:         *
004:         * Licensed under the Apache License, Version 2.0 (the "License");
005:         * you may not use this file except in compliance with the License.
006:         * You may obtain a copy of the License at
007:         *
008:         *     http://www.apache.org/licenses/LICENSE-2.0
009:         *
010:         * Unless required by applicable law or agreed to in writing, software
011:         * distributed under the License is distributed on an "AS IS" BASIS,
012:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013:         * See the License for the specific language governing permissions and
014:         * limitations under the License.
015:         */
016:        package jsx3.gui;
017:
018:        import org.directwebremoting.ScriptBuffer;
019:        import org.directwebremoting.proxy.ScriptProxy;
020:        import org.directwebremoting.proxy.io.Context;
021:
022:        /**
023:         * This class provides a way to organize a set of GUI objects in a grid. The dimensions of each cell in the grid
024:         are determined by the row heights and column widths. The height of each row and width of each column may be defined
025:         either as a percent, an integer pixel value, or as "*". Each dimension may specify one or more divisions as "*",
026:         in which case these rows/columns share the remaining space in that dimension equally once the other rows/columns
027:         are fitted.
028:
029:         GUI objects that are children of this DOM node are rendered in the cells. The first child is rendered in the
030:         top-left corner. Subsequent children are rendered in rows from left to right and top to bottom.
031:         * @author Joe Walker [joe at getahead dot org]
032:         * @author DRAPGEN - Dwr Reverse Ajax Proxy GENerator
033:         */
034:        public class LayoutGrid extends jsx3.gui.Block {
035:            /**
036:             * All reverse ajax proxies need context to work from
037:             * @param scriptProxy The place we are writing scripts to
038:             * @param context The script that got us to where we are now
039:             */
040:            public LayoutGrid(Context context, String extension,
041:                    ScriptProxy scriptProxy) {
042:                super (context, extension, scriptProxy);
043:            }
044:
045:            /**
046:             * The instance initializer.
047:             * @param strName unique name distinguishing this object from all other JSX GUI objects in the JSX application
048:             */
049:            public LayoutGrid(String strName) {
050:                super ((Context) null, (String) null, (ScriptProxy) null);
051:                ScriptBuffer script = new ScriptBuffer();
052:                script.appendCall("new LayoutGrid", strName);
053:                setInitScript(script);
054:            }
055:
056:            /**
057:             * 
058:             */
059:            @SuppressWarnings("unchecked")
060:            public void getCols(
061:                    org.directwebremoting.proxy.Callback<String> callback) {
062:                ScriptBuffer script = new ScriptBuffer();
063:                String callbackPrefix = "";
064:
065:                if (callback != null) {
066:                    callbackPrefix = "var reply = ";
067:                }
068:
069:                script
070:                        .appendCall(callbackPrefix + getContextPath()
071:                                + "getCols");
072:
073:                if (callback != null) {
074:                    String key = org.directwebremoting.extend.CallbackHelper
075:                            .saveCallback(callback, String.class);
076:                    script
077:                            .appendCall("__System.activateCallback", key,
078:                                    "reply");
079:                }
080:
081:                getScriptProxy().addScript(script);
082:            }
083:
084:            /**
085:             * 
086:             * @param strCols 
087:             * @param bRepaint 
088:             * @return this object.
089:             */
090:            public jsx3.gui.LayoutGrid setCols(String strCols, boolean bRepaint) {
091:                ScriptBuffer script = new ScriptBuffer();
092:                script.appendCall(getContextPath() + "setCols", strCols,
093:                        bRepaint);
094:                getScriptProxy().addScript(script);
095:                return this ;
096:            }
097:
098:            /**
099:             * 
100:             */
101:            @SuppressWarnings("unchecked")
102:            public void getRows(
103:                    org.directwebremoting.proxy.Callback<String> callback) {
104:                ScriptBuffer script = new ScriptBuffer();
105:                String callbackPrefix = "";
106:
107:                if (callback != null) {
108:                    callbackPrefix = "var reply = ";
109:                }
110:
111:                script
112:                        .appendCall(callbackPrefix + getContextPath()
113:                                + "getRows");
114:
115:                if (callback != null) {
116:                    String key = org.directwebremoting.extend.CallbackHelper
117:                            .saveCallback(callback, String.class);
118:                    script
119:                            .appendCall("__System.activateCallback", key,
120:                                    "reply");
121:                }
122:
123:                getScriptProxy().addScript(script);
124:            }
125:
126:            /**
127:             * 
128:             * @param strRows 
129:             * @param bRepaint 
130:             * @return this object.
131:             */
132:            public jsx3.gui.LayoutGrid setRows(String strRows, boolean bRepaint) {
133:                ScriptBuffer script = new ScriptBuffer();
134:                script.appendCall(getContextPath() + "setRows", strRows,
135:                        bRepaint);
136:                getScriptProxy().addScript(script);
137:                return this;
138:            }
139:
140:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.