Source Code Cross Referenced for BorderPanel.java in  » Web-Server » Jigsaw » org » w3c » tools » widgets » 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 » Web Server » Jigsaw » org.w3c.tools.widgets 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // $Id: BorderPanel.java,v 1.8 2000/08/16 21:37:56 ylafon Exp $
002:        // (c) COPYRIGHT MIT and INRIA, 1997.
003:        // Please first read the full copyright statement in file COPYRIGHT.html
004:
005:        package org.w3c.tools.widgets;
006:
007:        import java.awt.Color;
008:        import java.awt.Container;
009:        import java.awt.Dimension;
010:        import java.awt.Graphics;
011:        import java.awt.Insets;
012:        import java.awt.Panel;
013:
014:        /**
015:         * A Panel with a border (SOLID, RAISED, LOWERED, IN or OUT)
016:         * @author Benoit.Mahe@sophia.inria.fr 
017:         * @author Thierry.Kormann@sophia.inria.fr 
018:         */
019:
020:        public class BorderPanel extends Panel {
021:
022:            public static final int SOLID = 0;
023:            public static final int RAISED = 1;
024:            public static final int LOWERED = 2;
025:            public static final int IN = 3;
026:            public static final int OUT = 4;
027:
028:            private static final int DEFAULT_THICKNESS = 2;
029:            private int type;
030:            private int thickness;
031:
032:            protected Insets insets = null;
033:
034:            /**
035:             * Constructor.
036:             * @param type The border type (SOLID, RAISED, LOWERED, IN or OUT)
037:             * @param thickness The border thickness.
038:             */
039:            public BorderPanel(int type, int thickness) {
040:                this .type = type;
041:                this .thickness = thickness;
042:                build();
043:            }
044:
045:            /**
046:             * Constructor.
047:             * @param type The border type (SOLID, RAISED, LOWERED, IN or OUT)
048:             */
049:            public BorderPanel(int type) {
050:                this .type = type;
051:                thickness = DEFAULT_THICKNESS;
052:                build();
053:            }
054:
055:            private void build() {
056:                insets = new Insets(thickness, thickness, thickness, thickness);
057:            }
058:
059:            /**
060:             * Paint the border (if any), and then, paint the components.
061:             * @param graphics the specified Graphics window
062:             */
063:            public void paint(Graphics graphics) {
064:                if (thickness > 0) {
065:                    // in some case getSize() doesn't return the right size.
066:                    Dimension size = size();
067:                    graphics.setColor(getBackground());
068:                    switch (type) {
069:                    case SOLID:
070:                        graphics.setColor(getForeground());
071:                        for (int i = 0; i < thickness; ++i)
072:                            graphics.drawRect(i, i, size.width - i * 2 - 1,
073:                                    size.height - i * 2 - 1);
074:                        break;
075:                    case RAISED:
076:                        for (int i = 0; i < thickness; ++i)
077:                            graphics.draw3DRect(i, i, size.width - i * 2 - 1,
078:                                    size.height - i * 2 - 1, true);
079:                        break;
080:                    case LOWERED:
081:                        for (int i = 0; i < thickness; ++i)
082:                            graphics.draw3DRect(i, i, size.width - i * 2 - 1,
083:                                    size.height - i * 2 - 1, false);
084:                        break;
085:                    case IN:
086:                        graphics.draw3DRect(0, 0, size.width - 1,
087:                                size.height - 1, false);
088:                        graphics.draw3DRect(thickness - 1, thickness - 1,
089:                                size.width - thickness * 2 + 1, size.height
090:                                        - thickness * 2 + 1, true);
091:                        break;
092:                    case OUT:
093:                        graphics.draw3DRect(0, 0, size.width - 1,
094:                                size.height - 1, true);
095:                        graphics.draw3DRect(thickness - 1, thickness - 1,
096:                                size.width - thickness * 2 + 1, size.height
097:                                        - thickness * 2 + 1, false);
098:                        break;
099:                    }
100:                }
101:                super .paint(graphics);
102:            }
103:
104:            public Insets getInsets() {
105:                return insets;
106:            }
107:
108:            public void setInsets(Insets insets) {
109:                this.insets = insets;
110:            }
111:
112:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.