Bài giảng điện tử môn tin học: GUI Programming & Database Connectivity pdf

75 396 0
Bài giảng điện tử môn tin học: GUI Programming & Database Connectivity pdf

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

08/13/14 Võ Phương Bình - ITFAC - DLU 1 Part III: GUI Programming & Database Connectivity  Chapter 8: GUI Programming  Chapter 9: Database Connectivity 08/13/14 Võ Phương Bình - ITFAC - DLU 2 Chapter 8: GUI Programming  GUI Class Hierarchy  Frames  Creating frames, centering frames, adding components to frames  Layout Managers  FlowLayout, GridLayout, BorderLayout  Drawing on Panels  The paintComponent method  Using Colors, Fonts, and Font Metrics  Drawing Geometric Figures  Lines, Rectangles, Ovals, Arcs, and Polygons  Event-Driven Programming  Event Source, Listener, Listener Interface 08/13/14 Võ Phương Bình - ITFAC - DLU 3 GUI Class Hierarchy (Swing) Dimension Font FontMetrics Component Graphics Object Color Container Panel Applet Frame Dialog Window JComponent JApplet JFrame JDialog Swing Components in the javax.swing package Lightweight Heavyweight Classes in the java.awt package 1 LayoutManager * 08/13/14 Võ Phương Bình - ITFAC - DLU 4 JComponent . JButton JMenuItem JCheckBoxMenuItem AbstractButton JComponent JMenu JRadioButtonMenuItem JToggleButton JCheckBox JRadioButton JComboBox JInternalFrame JLayeredPane JList JMenuBar JOptionPane JPopupMenu JProgressBar JPane JFileChooser JScrollBar JScrollPane JSeparator JSplitPane JSlider JTabbedPane JTable JTableHeader JTextField JTextComponent JEditorPane JTextArea JToolBar JToolTip JTree JRootPane JPanel JPasswordField JColorChooser JLabel 08/13/14 Võ Phương Bình - ITFAC - DLU 5 AWT (Optional) AWTEvent Font FontMetrics Component Graphics Object Color Canvas Button TextComponent Label List CheckBoxGroup CheckBox Choice Container Panel Applet Frame Dialog FileDialog Window TextField TextArea MenuComponent MenuItem MenuBar Menu Scrollbar LayoutManager 08/13/14 Võ Phương Bình - ITFAC - DLU 6 Frames  Frame is a window that is not contained inside another window. Frame is the basis to contain other user interface components in Java GUI applications.  The Frame class can be used to create windows.  For Swing GUI programs, use JFrame class to create widows. 08/13/14 Võ Phương Bình - ITFAC - DLU 7 UI Components Frame Pull-down Menus User Interface Components (UI) Panel Panel Panel UI Panel UI Panel UI Applet Panel User Interface Components Panel User Interface Components Panel User Interface Components Panel User Interface Components panel Pull-down Menus 08/13/14 Võ Phương Bình - ITFAC - DLU 8 import javax.swing.*; public class MyFrame { public static void main(String[] args) { JFrame frame = new JFrame("Test Frame"); frame.setSize(400, 300); frame.setVisible(true); frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE); } } Creating Frames 08/13/14 Võ Phương Bình - ITFAC - DLU 9 Centering Frames  By default, a frame is displayed in the upper-left corner of the screen.  To display a frame at a specified location, you can use the setLocation(x, y) method in the JFrame class.  This method places the upper- left corner of a frame at location (x, y). 08/13/14 Võ Phương Bình - ITFAC - DLU 10 Centering Frames, cont. screenHeight screenWidth getHeight() getWidth() (x, y) Frame Screen (0, 0) [...]... pixels for both horizontal and vertical 08/13/14 Võ Phương Bình - ITFAC 16 Example 9.2 Testing the GridLayout Manager The GridLayout manager arranges components in a grid (matrix) formation with the number of rows and columns defined by the constructor  The components are placed in the grid from left to right starting with the first row, then the second, and so on  08/13/14 Võ Phương Bình - ITFAC 17... things, normally you create a subclass of JPanel and override its paintComponent metho to tell the system how to draw  In fact, you can draw things on any GUI component 08/13/14 Võ Phương Bình - ITFAC 28 The Color Class You can set colors for GUI components by using the java.awt.Color class  Colors are made of red, green, and blue components, each of which is represented by a byte value that describes... vGap) Constructs a new GridLayout with the specified number of rows and columns, along with specified horizontal and vertical gaps between components 08/13/14 Võ Phương Bình - ITFAC 18 Example 10.3 Testing the BorderLayout Manager The BorderLayout manager divides the container into five areas: East, South, West, North, and Center  Components are added to a BorderLayout by using the add method  08/13/14... components  It is recommended that you place the user interface components in panels and place the panels in a frame You can also place panels in a panel 08/13/14 Võ Phương Bình - ITFAC 21 Example 9.4 Testing Panel  This example uses panels to organize components The program creates a user interface for a Microwave oven frame A textfield p2 A button 12 buttons 08/13/14 p1 Võ Phương Bình - ITFAC 22 Drawing... arrange the UI the container Võ Phương Bình - ITFAC 13 Kinds of Layout Managers  FlowLayout  GridLayout  BorderLayout  CardLayout  GridBagLayout 08/13/14 Võ Phương Bình - ITFAC 14 Example 9.1 Testing the FlowLayout Manager The components are arranged in the container from left to right in the order in which they were added When one row becomes filled, a new row is started  08/13/14 Võ Phương... as the RGB model Color c = new Color(r, g, b); r, g, and b specify a color by its red, green, and blue components   Example: Color c = new Color(228, 100, 255); 08/13/14 Võ Phương Bình - ITFAC 29 Setting Colors You can use the following methods to set the component’s background and foreground colors:  setBackground(Color c) setForeground(Color c)  Example: setBackground(Color.yellow); setForeground(Color.red);... GraphicsEnvironment.getLocalGraphicsEnvironment(); String[] fontnames = e.getAvailableFontFamilyNames(); for (int i = 0; i < fontnames.length; i++) System.out.println(fontnames[i]); 08/13/14 Võ Phương Bình - ITFAC 32 Setting Fonts public void paint(Graphics g) { Font myFont = new Font("Times", Font.BOLD, 16); g.setFont(myFont); g.drawString("Welcome to Java", 20, 40); //set a new font g.setFont(new Font("Courier", Font.BOLD+Font.ITALIC, . III: GUI Programming & Database Connectivity  Chapter 8: GUI Programming  Chapter 9: Database Connectivity 08/13/14 Võ Phương Bình - ITFAC - DLU 2 Chapter 8: GUI Programming  GUI Class. JFrame frame = new JFrame("Test Frame"); frame.setSize(400, 300); frame.setVisible(true); frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE); } } Creating Frames 08/13/14 Võ. basis to contain other user interface components in Java GUI applications.  The Frame class can be used to create windows.  For Swing GUI programs, use JFrame class to create widows. 08/13/14

Ngày đăng: 11/08/2014, 22:23

Từ khóa liên quan

Mục lục

  • Part III: GUI Programming & Database Connectivity

  • Chapter 8: GUI Programming

  • GUI Class Hierarchy (Swing)

  • JComponent

  • AWT (Optional)

  • Frames

  • UI Components

  • Creating Frames

  • Centering Frames

  • Centering Frames, cont.

  • Adding Components into a Frame

  • NOTE

  • Layout Managers

  • Kinds of Layout Managers

  • Example 9.1 Testing the FlowLayout Manager

  • FlowLayout Constructors

  • Example 9.2 Testing the GridLayout Manager

  • GridLayout Constructors

  • Example 10.3 Testing the BorderLayout Manager

  • Example 10.3, cont.

Tài liệu cùng người dùng

Tài liệu liên quan