Source Code Cross Referenced for GuiTools.java in  » Code-Analyzer » Java2Html » de » java2html » 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 » Code Analyzer » Java2Html » de.java2html.gui 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        package de.java2html.gui;
02:
03:        import java.awt.Dimension;
04:        import java.awt.Toolkit;
05:        import java.awt.Window;
06:
07:        import javax.swing.JPanel;
08:        import javax.swing.UIManager;
09:        import javax.swing.border.CompoundBorder;
10:        import javax.swing.border.EmptyBorder;
11:        import javax.swing.border.TitledBorder;
12:
13:        /**
14:         * A toolbox contaning useful tools for the graphical user interface.
15:         * 
16:         * (The open source version only contains one methode)
17:         * 
18:         * For questions, suggestions, bug-reports, enhancement-requests etc. I may be
19:         * contacted at: <a href="mailto:markus@jave.de">markus@jave.de</a>
20:         * 
21:         * The Java2html home page is located at: <a href="http://www.java2html.de">
22:         * http://www.java2html.de</a>
23:         * 
24:         * @author <a href="mailto:markus@jave.de">Markus Gebhard</a>
25:         * @version 2.0, 05/07/02
26:         * 
27:         * Copyright (C) Markus Gebhard 2000-2002
28:         * 
29:         * This program is free software; you can redistribute it and/or modify it
30:         * under the terms of the GNU General Public License as published by the Free
31:         * Software Foundation; either version 2 of the License, or (at your option)
32:         * any later version.
33:         * 
34:         * This program is distributed in the hope that it will be useful, but WITHOUT
35:         * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
36:         * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
37:         * more details.
38:         * 
39:         * You should have received a copy of the GNU General Public License along with
40:         * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
41:         * Place - Suite 330, Boston, MA 02111-1307, USA.
42:         */
43:        public class GuiTools {
44:            /** No instance available - just static methodes */
45:            private GuiTools() {
46:                //nothing to do
47:            }
48:
49:            public final static void centerOnScreen(Window window) {
50:                Toolkit tk = Toolkit.getDefaultToolkit();
51:
52:                Dimension dScreen = tk.getScreenSize();
53:                Dimension d = window.getSize();
54:
55:                int x0 = (dScreen.width - d.width) / 2;
56:                int y0 = (dScreen.height - d.height) / 2;
57:
58:                window.setLocation(x0, y0);
59:            }
60:
61:            public final static JPanel createBorderedPanel(String title) {
62:                final JPanel panel = new JPanel();
63:                panel.setBorder(new CompoundBorder(new TitledBorder(title),
64:                        new EmptyBorder(5, 6, 5, 6)));
65:                return panel;
66:            }
67:
68:            public static void setNativeLookAndFeel() {
69:                try {
70:                    UIManager.setLookAndFeel(UIManager
71:                            .getSystemLookAndFeelClassName());
72:                } catch (Exception e) {
73:                    System.out.println("Error setting native LAF: " + e); //$NON-NLS-1$
74:                }
75:            }
76:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.