Source Code Cross Referenced for TextFrame.java in  » Internationalization-Localization » icu4j » com » ibm » richtext » awtui » 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 » Internationalization Localization » icu4j » com.ibm.richtext.awtui 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * (C) Copyright IBM Corp. 1998-2004.  All Rights Reserved.
003:         *
004:         * The program is provided "as is" without any warranty express or
005:         * implied, including the warranty of non-infringement and the implied
006:         * warranties of merchantibility and fitness for a particular purpose.
007:         * IBM will not be liable for any damages suffered by you as a result
008:         * of using the Program. In no event will IBM be liable for any
009:         * special, indirect or consequential damages or lost profits even if
010:         * IBM has been advised of the possibility of their occurrence. IBM
011:         * will not be liable for any third party claims against you.
012:         */
013:        package com.ibm.richtext.awtui;
014:
015:        import com.ibm.richtext.textpanel.MTextPanel;
016:        import com.ibm.richtext.textpanel.TextPanel;
017:        import com.ibm.richtext.styledtext.MConstText;
018:
019:        import java.awt.BorderLayout;
020:        import java.awt.Frame;
021:        import java.awt.MenuBar;
022:        import java.awt.Toolkit;
023:
024:        import java.awt.datatransfer.Clipboard;
025:
026:        import java.awt.event.WindowAdapter;
027:        import java.awt.event.WindowEvent;
028:
029:        /**
030:         * TextFrame is a Frame containing an editable TextPanel, a set of standard
031:         * menus, and a TabRuler.  This class can be used as-is, but is
032:         * primarily intended to be a simple example of how to use the other classes
033:         * in this package.
034:         * @see com.ibm.richtext.textpanel.TextPanel
035:         * @see AwtMenuBuilder
036:         * @see TabRuler
037:         */
038:        public final class TextFrame extends Frame {
039:
040:            static final String COPYRIGHT = "(C) Copyright IBM Corp. 1998-1999 - All Rights Reserved";
041:            private TextPanel fTextPanel;
042:
043:            /**
044:             * Create a new TextFrame with no text and no title.
045:             */
046:            public TextFrame() {
047:
048:                super ();
049:                init(null, Toolkit.getDefaultToolkit().getSystemClipboard());
050:            }
051:
052:            /**
053:             * Create a new TextFrame with no text and the given title.
054:             * @param title the title of this Frame
055:             */
056:            public TextFrame(String title) {
057:
058:                super (title);
059:                init(null, Toolkit.getDefaultToolkit().getSystemClipboard());
060:            }
061:
062:            /**
063:             * Create a new TextFrame with the given text and title, whose
064:             * TextPanel will use the given clipboard.
065:             * @param text the initial text in the TextPanel.  If null the
066:             *      TextPanel will initially be empty
067:             * @param title the title of this Frame
068:             * @param clipboard the Clipboard which the TextPanel will use.
069:             *      If null the TextPanel will use a private Clipboard
070:             */
071:            public TextFrame(MConstText text, String title, Clipboard clipboard) {
072:
073:                super (title);
074:                init(text, clipboard);
075:            }
076:
077:            private void init(MConstText text, Clipboard clipboard) {
078:
079:                fTextPanel = new TextPanel(text, clipboard);
080:
081:                TabRuler tabRuler = new TabRuler(14, 10, fTextPanel);
082:
083:                createMenus();
084:
085:                setLayout(new BorderLayout());
086:                add(fTextPanel, "Center");
087:                add(tabRuler, "North");
088:                pack();
089:            }
090:
091:            private void createMenus() {
092:
093:                MenuBar menuBar = new MenuBar();
094:
095:                AwtMenuBuilder.getInstance().createMenus(menuBar, fTextPanel,
096:                        this );
097:
098:                setMenuBar(menuBar);
099:            }
100:
101:            /**
102:             * Return the MTextPanel in this frame.
103:             */
104:            public MTextPanel getTextPanel() {
105:
106:                return fTextPanel;
107:            }
108:
109:            public static void main(String[] args) {
110:
111:                TextFrame frame = new TextFrame();
112:                frame.addWindowListener(new WindowAdapter() {
113:                    public void windowClosing(WindowEvent e) {
114:                        System.exit(0);
115:                    }
116:                });
117:                frame.setSize(550, 700);
118:                frame.show();
119:            }
120:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.