Source Code Cross Referenced for PushButton.java in  » Ajax » GWT » com » google » gwt » user » client » ui » 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 » GWT » com.google.gwt.user.client.ui 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright 2007 Google Inc.
003:         * 
004:         * Licensed under the Apache License, Version 2.0 (the "License"); you may not
005:         * use this file except in compliance with the License. You may obtain a copy of
006:         * 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, WITHOUT
012:         * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
013:         * License for the specific language governing permissions and limitations under
014:         * the License.
015:         */
016:
017:        package com.google.gwt.user.client.ui;
018:
019:        /**
020:         * A normal push button with custom styling.
021:         * 
022:         * <p>
023:         * <img class='gallery' src='PushButton.png'/>
024:         * </p>
025:         * 
026:         * <h3>CSS Style Rules</h3>
027:         * <ul class="css">
028:         * <li>.gwt-PushButton-up/down/up-hovering/down-hovering/up-disabled/down-disabled {.html-face}</li>
029:         * </ul>
030:         * 
031:         * <p>
032:         * <h3>Example</h3> {@example com.google.gwt.examples.PushButtonExample}
033:         * </p>
034:         */
035:        public class PushButton extends CustomButton {
036:
037:            private static final String STYLENAME_DEFAULT = "gwt-PushButton";
038:
039:            {
040:                setStyleName(STYLENAME_DEFAULT);
041:            }
042:
043:            /**
044:             * Constructor for <code>PushButton</code>.
045:             */
046:            public PushButton() {
047:                super ();
048:            }
049:
050:            /**
051:             * Constructor for <code>PushButton</code>.
052:             * 
053:             * @param upImage image for the default(up) face of the button
054:             */
055:            public PushButton(Image upImage) {
056:                super (upImage);
057:            }
058:
059:            /**
060:             * Constructor for <code>PushButton</code>. The supplied image is used to
061:             * construct the default face of the button.
062:             * 
063:             * @param upImage image for the default (up) face of the button
064:             * @param listener the click listener
065:             */
066:            public PushButton(Image upImage, ClickListener listener) {
067:                super (upImage, listener);
068:            }
069:
070:            /**
071:             * Constructor for <code>PushButton</code>.
072:             * 
073:             * @param upImage image for the default(up) face of the button
074:             * @param downImage image for the down face of the button
075:             */
076:            public PushButton(Image upImage, Image downImage) {
077:                super (upImage, downImage);
078:            }
079:
080:            /**
081:             * Constructor for <code>PushButton</code>.
082:             * 
083:             * @param upImage image for the default(up) face of the button
084:             * @param downImage image for the down face of the button
085:             * @param listener clickListener
086:             */
087:            public PushButton(Image upImage, Image downImage,
088:                    ClickListener listener) {
089:                super (upImage, downImage, listener);
090:            }
091:
092:            /**
093:             * Constructor for <code>PushButton</code>. The supplied text is used to
094:             * construct the default face of the button.
095:             * 
096:             * @param upText the text for the default (up) face of the button.
097:             */
098:            public PushButton(String upText) {
099:                super (upText);
100:            }
101:
102:            /**
103:             * Constructor for <code>PushButton</code>. The supplied text is used to
104:             * construct the default face of the button.
105:             * 
106:             * @param upText the text for the default (up) face of the button
107:             * @param listener the click listener
108:             */
109:            public PushButton(String upText, ClickListener listener) {
110:                super (upText, listener);
111:            }
112:
113:            /**
114:             * Constructor for <code>PushButton</code>.
115:             * 
116:             * @param upText the text for the default (up) face of the button
117:             * @param downText the text for down face of the button
118:             */
119:            public PushButton(String upText, String downText) {
120:                super (upText, downText);
121:            }
122:
123:            /**
124:             * Constructor for <code>PushButton</code>.
125:             * 
126:             * @param upText the text for the default (up) face of the button
127:             * @param downText the text for down face of the button
128:             * @param listener the click listener
129:             */
130:            public PushButton(String upText, String downText,
131:                    ClickListener listener) {
132:                super (upText, downText, listener);
133:            }
134:
135:            @Override
136:            protected void onClick() {
137:                setDown(false);
138:                super .onClick();
139:            }
140:
141:            @Override
142:            protected void onClickCancel() {
143:                setDown(false);
144:            }
145:
146:            @Override
147:            protected void onClickStart() {
148:                setDown(true);
149:            }
150:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.