MATLAB® The Language of Technical Computing

216 567 2
MATLAB® The Language of Technical Computing

Đ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

MATLAB® The Language of Technical Computing

MATLAB ® The Language of Technical Computing Creating Graphical User Interfaces Version How to Contact The MathWorks: www.mathworks.com comp.soft-sys.matlab Web Newsgroup info@mathworks.com Technical support Product enhancement suggestions Bug reports Documentation error reports Order status, license renewals, passcodes Sales, pricing, and general information 508-647-7000 Phone 508-647-7001 Fax The MathWorks, Inc Apple Hill Drive Natick, MA 01760-2098 Mail support@mathworks.com suggest@mathworks.com bugs@mathworks.com doc@mathworks.com service@mathworks.com For contact information about worldwide offices, see the MathWorks Web site MATLAB Creating Graphical User Interfaces  COPYRIGHT 2000 - 2004 by The MathWorks, Inc The software described in this document is furnished under a license agreement The software may be used or copied only under the terms of the license agreement No part of this manual may be photocopied or reproduced in any form without prior written consent from The MathWorks, Inc FEDERAL ACQUISITION: This provision applies to all acquisitions of the Program and Documentation by, for, or through the federal government of the United States By accepting delivery of the Program or Documentation, the government hereby agrees that this software or documentation qualifies as commercial computer software or commercial computer software documentation as such terms are used or defined in FAR 12.212, DFARS Part 227.72, and DFARS 252.227-7014 Accordingly, the terms and conditions of this Agreement and only those rights specified in this Agreement, shall pertain to and govern the use, modification, reproduction, release, performance, display, and disclosure of the Program and Documentation by the federal government (or other entity acquiring for or through the federal government) and shall supersede any conflicting contractual terms or conditions If this License fails to meet the government's needs or is inconsistent in any respect with federal procurement law, the government agrees to return the Program and Documentation, unused, to The MathWorks, Inc MATLAB, Simulink, Stateflow, Handle Graphics, and Real-Time Workshop are registered trademarks, and TargetBox is a trademark of The MathWorks, Inc Other product or brand names are trademarks or registered trademarks of their respective holders Printing History: November 2000 June 2001 July 2002 June 2004 Online only Online only Online only Online only New for MATLAB 6.0 (Release12) Revised for MATLAB 6.1 (Release 12.1) Revised for MATLAB 6.5 (Release 13) Revised for MATLAB 7.0 (Release 14) Contents Getting Started with GUIDE What Is GUIDE? 1-2 Starting GUIDE 1-3 The Layout Editor 1-4 GUIDE Templates 1-6 Running a GUI 1-8 GUI FIG-Files and M-Files 1-9 Programming the GUI M-file 1-10 Editing Version GUIs with Version GUIDE 1-12 Saving the GUI in Version GUIDE 1-12 Updating Callbacks 1-12 Creating a GUI Designing the GUI 2-2 Laying Out the GUI View Layout and Code for the Example Open a New GUI in the Layout Editor Set the GUI Figure Size Add the Components Align the Components 2-3 2-3 2-4 2-6 2-7 2-9 i Setting Properties for GUI Components Name Property Title Property String Property for Push Buttons and Static Text String Property for Pop-up Menus Callback Properties The Tag Property 2-11 2-11 2-12 2-12 2-12 2-14 2-14 Programming the GUI Creating the GUI M-File Opening the GUI M-File Sharing Data Between Callbacks Adding Code to the Opening Function Adding Code to the Callbacks Using the Object Browser to Identify Callbacks 2-17 2-17 2-17 2-19 2-20 2-22 2-24 Saving and Running a GUI 2-26 Laying Out GUIs and Setting Properties Using GUIDE Templates Blank GUI GUI with Uicontrols GUI with Axes and Menu Modal Question Dialog 3-2 3-3 3-4 3-5 3-6 Using the Layout Editor 3-9 Starting the Layout Editor 3-9 Selecting Components from the Component Palette 3-10 Adding Components to the Layout Area 3-13 Working with Components in the Layout Area 3-16 Running the GUI 3-19 Saving the Layout 3-21 Renaming GUI Files 3-21 Exporting a GUI to a Single M-File 3-21 Displaying the GUI 3-22 ii Contents Layout Editor Preferences 3-22 Layout Editor Context Menus 3-23 Selecting GUI Options Configuring the GUI M-File Resize Behavior Command-Line Accessibility Generate FIG-File and M-File Generate Callback Function Prototypes GUI Allows Only One Instance to Run (Singleton) Using the System Background Colors Generate FIG-File Only 3-25 3-25 3-26 3-27 3-29 3-30 3-32 3-32 3-33 Aligning Components in the Layout Editor Aligning Groups of Components — The Alignment Tool Grids and Rulers Aligning Components to Guide Lines Front-to-Back Positioning 3-34 3-34 3-36 3-37 3-38 Setting Component Properties — The Property Inspector Displaying the Property Inspector What Properties Do I Need to Set? Some Commonly Used Properties Setting Properties for Some Specific Components Callback Properties Changing Tag and Callback Properties 3-40 3-40 3-41 3-42 3-43 3-51 3-53 Viewing the Object Hierarchy — The Object Browser 3-56 Creating Menus — The Menu Editor Defining Menus for the Menu Bar Menu Callbacks Defining Context Menus 3-57 3-58 3-63 3-65 Setting the Tab Order — The Tab Order Editor 3-69 iii Programming GUIs Understanding the GUI M-File Sharing Data with the Handles Structure Functions and Callbacks in the M-File Opening Function Output Function Callbacks Input and Output Arguments 4-2 4-2 4-3 4-4 4-5 4-6 4-7 Programming Callbacks for GUI Components 4-8 Toggle Button Callback 4-8 Radio Buttons 4-9 Check Boxes 4-10 Edit Text 4-10 Sliders 4-11 List Boxes 4-11 Pop-Up Menus 4-12 Panels 4-13 Button Groups 4-13 Axes 4-14 ActiveX Controls 4-17 Figures 4-24 Managing GUI Data with the Handles Structure 4-26 Example: Passing Data Between Callbacks 4-26 Application Data 4-29 iv Contents Designing for Cross-Platform Compatibility Using the Default System Font Using Standard Background Color Cross-Platform Compatible Figure Units 4-30 4-30 4-31 4-32 Types of Callbacks Callback Properties for All Graphics Objects Callback Properties for Figures Callbacks for Specific Components Which Callback Executes Adding a Callback 4-33 4-33 4-33 4-34 4-34 4-34 Interrupting Executing Callbacks Controlling Interruptibility The Event Queue Event Processing During Callback Execution 4-35 4-35 4-35 4-36 Controlling Figure Window Behavior 4-38 Using Modal Figure Windows 4-38 Example: Using the Modal Dialog to Confirm an Operation View Completed Layouts and Their GUI M-Files Setting Up the Close Confirmation Dialog Setting Up the GUI with the Close Button Running the GUI with the Close Button How the GUI and Dialog Work 4-40 4-40 4-41 4-42 4-43 4-44 GUI Applications GUI with Multiple Axes Techniques Used in the Example View Completed Layout and Its GUI M-File Design of the GUI Plot Push Button Callback 5-2 5-2 5-3 5-3 5-6 List Box Directory Reader 5-9 View Layout and GUI M-File 5-9 Implementing the GUI 5-10 Specifying the Directory to List 5-10 Loading the List Box 5-11 Accessing Workspace Variables from a List Box Techniques Used in This Example View Completed Layout and Its GUI M-File Reading Workspace Variables Reading the Selections from the List Box 5-15 5-15 5-16 5-16 5-17 v A GUI to Set Simulink Model Parameters Techniques Used in This Example View Completed Layout and Its GUI M-File How to Use the GUI (Text of GUI Help) Running the GUI Programming the Slider and Edit Text Components Running the Simulation from the GUI Removing Results from the List Box Plotting the Results Data The GUI Help Button Closing the GUI The List Box Callback and Create Function 5-19 5-19 5-19 5-20 5-21 5-22 5-24 5-26 5-27 5-29 5-29 5-29 An Address Book Reader Techniques Used in This Example Managing Shared Data View Completed Layout and Its GUI M-File Running the GUI Loading an Address Book Into the Reader The Contact Name Callback The Contact Phone Number Callback Paging Through the Address Book — Prev/Next Saving Changes to the Address Book from the Menu The Create New Menu The Address Book Resize Function 5-31 5-31 5-31 5-32 5-32 5-34 5-36 5-38 5-39 5-41 5-43 5-43 Index vi Contents Getting Started with GUIDE What Is GUIDE? (p 1-2) An introduction to GUIDE Starting GUIDE (p 1-3) How to start GUIDE and use the Quick Start dialog The Layout Editor (p 1-4) The Layout Editor enables you to lay out the GUI components quickly and easily GUIDE Templates (p 1-6) GUIDE templates are simple, pre-constructed GUIs that you can modify for your own purposes Running a GUI (p 1-8) How to run a GUI GUI FIG-Files and M-Files (p 1-9) GUIDE stores GUIs in two files, a FIG-file that contains the layout, and an M-file that controls the GUI Programming the GUI M-file (p 1-10) The GUI M-file controls how the GUI functions Editing Version GUIs with Version GUIDE (p 1-12) Editing GUIs created in GUIDE Version Getting Started with GUIDE What Is GUIDE? GUIDE, the MATLAB® Graphical User Interface development environment, provides a set of tools for creating graphical user interfaces (GUIs) These tools greatly simplify the process of designing and building GUIs You can use the GUIDE tools to • Lay out the GUI Using the GUIDE Layout Editor, you can lay out a GUI easily by clicking and dragging GUI components — such as panels, buttons, text fields, sliders, menus, and so on — into the layout area • Program the GUI GUIDE automatically generates an M-file that controls how the GUI operates The M-file initializes the GUI and contains a framework for all the GUI callbacks — the commands that are executed when a user clicks a GUI component Using the M-file editor, you can add code to the callbacks to perform the functions you want them to The following sections provide an overview of creating GUIs with GUIDE 1-2 ... components These two files correspond to the tasks of laying out and programming the GUI When you lay out of the GUI in the Layout Editor, your work is stored in the FIG-file When you program the GUI,... Programming the GUI M-file You can view the callback for any of the GUI components by clicking the function icon on the toolbar This displays a list of all the callbacks, as shown in the following... opens the template in the Layout Editor, as shown in the following figure 1-6 GUIDE Templates To display the names of the GUI components in the component palette, select Preferences from the File

Ngày đăng: 13/09/2012, 10:21

Từ khóa liên quan

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

  • Đang cập nhật ...

Tài liệu liên quan