設為首頁收藏本站

艾歐踢論壇

 找回密碼
 立即註冊

QQ登錄

只需一步,快速開始

搜索
熱搜: 活動 交友 discuz
查看: 876|回復: 0
打印 上一主題 下一主題

Microsoft Windows, Visual C++ and Microsoft Foundation Class (MFC)

[複製鏈接]
跳轉到指定樓層
樓主
發表於 2015-12-23 09:07:31 | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式
Program examples compiled using Visual C++ 6.0 (MFC 6.0) compiler on Windows XP Pro machine with Service Pack 2.
Topics and sub topics for this Tutorial are listed below:

  • Introduction
  • The Visual C++ Components
  • Microsoft Visual C++ 6.0 and the Build Process
  • The Resource Editors: Workspace ResourceView
  • The C/C++ Compiler
  • The Source Code Editor
  • The Resource Compiler
  • The Linker
  • The Debugger
  • AppWizard
  • ClassWizard
  • The Source Browser
  • Windows Diagnostic Tools
  • Source Code Control
Introduction

After you have completed the C++ and object oriented and Standard Template Library (STL) tutorials, hopefully you got the fundamental ideas how the classes were constructed and used and how the objects instantiated, how to organize multiple files in declaration, implementation, main program parts etc. You also were introduced the principles of the object encapsulation, inheritance and polymorphism. In inheritance you have learnt that child class can inherit the properties of the parent or base classes. You also have learnt how we send messages to get tasks done instead of the traditional manner using function call. The following Table lists important terms that we have used in the C++ Tutorial.

Term
Description
class
Is a group of data and methods (functions).  A class is very much like a structure type as used in ANSI-C, it is just a type used to create a variable which can be manipulated through method in a program.
object
Is an instance of a class, which is similar to an analogous of a variable, defined as an instance of a type.  An object is what you actually use in a program since it contains values and can be changed.
method
Is a function contained within the class.  You will find the functions used within a class often referred to as methods in programming literature. Other similar term used is ‘member function’.
message
Can be considered similar to function call.  In object oriented programming, we send messages instead of calling functions. In programming terms, event or action of the object normally used to describe a consequence of sending message.
Table 1

And the following figure shows a very simple class hierarchy used in Tenouk’s C++ Tutorial.


Figure 1: A very simple C++ Class hierarchy.

Though the previous Tutorials just provide the basics of the Object Oriented, but it is a very useful to grab the fundamentals in order to understand the more complex solutions such as Microsoft Foundation Class (MFC) or other object oriented programming such as Java and C#. Our next task is to explore the implementation specific of the classes in MFC. MFC contains a bunch of classes that ready to be used mainly for Windows graphic user interface programming. MFC is designed to be a great class library for creating graphically rich, sophisticated Windows applications. Before we go any further we will get some idea about the compiler, Visual C++ 6.0. Be prepared, you will find many object oriented terms, principles and many more program files in MFC programming.

The Visual C++ Components

You still can develop C-language Windows programs using only the Win32 API using Visual C++ as used in many C programming in Tenouk Tutorial. You can use many Visual C++ tools, including the resource editors, to make low-level Win32 programming easier. Visual C++ also includes the ActiveX Template Library (ATL), which you can use to develop ActiveX controls for the Internet. ATL programming is neither Win32 C-language programming nor MFC programming. In this Tutorial we will concentrate the C++ and MFC programming using Visual C++ 6.0. Use of the MFC library programming interface doesn't cut you off from the Win32 functions. In fact, you'll almost always need some direct Win32 calls in your MFC library programs. A quick run-through of the Visual C++ components will help you get your bearings before you zero in on the application framework. Figure 2 shows an overview of the Visual C++ application build process.


Figure 2: The Visual C++ application build process.

Microsoft Visual C++ 6.0 and the Build Process

Visual Studio 6.0 is a suite of developer tools that includes Visual C++ 6.0. The Visual C++ IDE is shared by several tools including Microsoft Visual J++. The IDE has come a long way from the original Visual Workbench, which was based on QuickC for Windows. Docking windows, configurable toolbars, plus a customizable editor that runs macros, are now part of Visual Studio. The online help system (now integrated with the MSDN Library viewer) works like a Web browser. Figure 3 shows Visual C++ 6.0 in action.


















------------------------------------------------------------------------------------------------------------------------------------------------

Figure 3: Visual C++ 6.0 windows with main components displayed.

If you've used earlier versions of Visual C++ or another vendor's IDE, you already understand how Visual C++ 6.0 operates. But if you're new to IDEs, you'll need to know what a project is. A project is a collection of interrelated source files that are compiled and linked to make up an executable Windows-based program or a DLL. Source files for each project are generally stored in a separate subdirectory. A project depends on many files outside the project subdirectory too, such as include files and library files. Experienced programmers are familiar with makefiles. A makefile stores compiler and linker options and expresses all the interrelationships among source files. A source code file needs specific include files, an executable file requires certain object modules and libraries, and so forth. A make program reads the makefile and then invokes the compiler, assembler, resource compiler, and linker to produce the final output, which is generally an executable file. The make program uses built-in inference rules that tell it, for example, to invoke the compiler to generate an OBJ file from a specified CPP file.
In a Visual C++ 6.0 project, there is no makefile (with an MAK extension) unless you tell the system to export one. A text-format project file (with a DSP extension) serves the same purpose. A separate text-format workspace file (with a DSW extension) has an entry for each project in the workspace. It's possible to have multiple projects in a workspace, but all the examples in this Tutorial have just one project per workspace. To work on an existing project, you tell Visual C++ to open the DSW file and then you can edit and build the project. The project directory also can be copied to other directory or system and can be edited, built and run as usual.

The Resource Editors: Workspace ResourceView

When you click on the ResourceView tab in the Visual C++ Workspace window as shown below, you can select a resource for editing by double clicking the resource such as the About dialog box shown below.


Figure 4: Visual C++ ResourceView.

The main window hosts a resource editor appropriate for the resource type. The window can also host a WYSIWYG editor for menus and a powerful graphical editor for dialog boxes, and it includes tools for editing icons, bitmaps, and strings. The dialog editor allows you to insert ActiveX controls in addition to standard Windows controls and the new Windows common controls which have been further extended in Visual C++ 6.0. Each project usually has one text-format resource script (RC) file that describes the project's menu, dialog, string, and accelerator resources. The RC file also has #include statements to bring in resources from other subdirectories. These resources include project-specific items, such as bitmap (BMP) and icon (ICO) files, and resources common to all Visual C++ programs, such as error message strings. The resource editors can also process EXE and DLL files, so you can use the clipboard to "steal" resources, such as bitmaps and icons, from other Windows applications.

The C/C++ Compiler

The Visual C++ compiler can process both C source code and C++ source code. It determines the language by looking at the source code's filename extension. A C extension indicates C source code, and CPP or CXX indicates C++ source code. The compiler is compliant with all ANSI standards, including the latest recommendations of a working group on C++ libraries, and has additional Microsoft extensions. Templates, exceptions, and runtime type identification (RTTI) are fully supported in Visual C++ version 6.0. The C++Standard Template Library (STL) is also included, although it is not integrated into the MFC library.

The Source Code Editor

Visual C++ 6.0 includes a sophisticated source code editor that supports many features such as dynamic syntax coloring, auto-tabbing, keyboard bindings for a variety of popular editors (such as VI and EMACS), and pretty printing.


Figure 5: Visual VC++ source code editor.

In Visual C++ 6.0, an exciting feature named AutoComplete has been added. If you have used any of the Microsoft Office products or Microsoft Visual Basic, you might already be familiar with this technology. Using the Visual C++ 6.0 AutoComplete feature, all you have to do is type the beginning of a programming statement and the editor will provide you with a list of possible completions to choose from. This feature is extremely handy when you are working with C++ objects and have forgotten an exact member function or data member name - they are all there in the list for you. You no longer have to memorize thousands of Win32 APIs or rely heavily on the online help system, thanks to this feature.

The Resource Compiler

The Visual C++ resource compiler reads an ASCII resource script (RC) file from the resource editors and writes a binary RES file for the linker.

The Linker

The linker reads the OBJ and RES files produced by the C/C++ compiler and the resource compiler, and it accesses LIB files for MFC code, runtime library code, and Windows code. It then writes the project's EXE file. An incremental link option minimizes the execution time when only minor changes have been made to the source files. The MFC header files contain #pragma statements (special compiler directives) that specify the required library files, so you don't have to tell the linker explicitly which libraries to read.

The Debugger

For the serious and real application developers, many times they will encounter problems in their codes. Unfortunately those problems, normally called bugs, could not be found through the code inspections or reviews. They need a debugger to debug their programs to find those bugs. The Visual C++ debugger has been steadily improving, though it doesn't actually fix the bugs yet. The debugger works closely with Visual C++ to ensure that breakpoints are saved on disk. Toolbar buttons insert and remove breakpoints and control single-step execution. Figure 9 illustrates the Visual C++ debugger in action. Note that the Variables and Watch windows can expand an object pointer to show all data members of the derived class and base classes. If you position the cursor on a simple variable, the debugger shows you its value in a little window. To debug a program, you must build the program with the compiler and linker options set to generate debugging information. The debug session can be invoked through the Build menu and Start Debug sub menu shown below.


Figure 6: Visual C++ Debugging menu.

After the debug session been invoked, a new dynamic Debug menu will be displayed as shown below.


Figure 7: Visual C++ debug options.

Then you can view much more information through the View menu and Debug Windows sub menu.

Figure 8: Visual C++ Debug window options.

Figure 9: The Visual C++ debugger window.

Visual C++ 6.0 adds a new twist to debugging with the Edit And Continue feature. Edit And Continue lets you debug an application, change the application, and then continue debugging with the new code. This feature dramatically reduces the amount of time you spend debugging because you no longer have to manually leave the debugger, recompile, and then debug again. To use this feature, simply edit any code while in the debugger and then hit the continue button. Visual C++ 6.0 automatically compiles the changes and restarts the debugger for you.

AppWizard

AppWizard is a code generator that creates a working skeleton of a Windows application with features, class names, and source code filenames that you specify through dialog boxes.


Figure 10: Visual C++ AppWizard step 1 of 6.

You'll use AppWizard extensively as you work through the examples in this Tutorial. AppWizard code is minimalist code; the functionality is inside the application framework base classes. AppWizard gets you started quickly with a new application. Advanced developers can build custom AppWizards. Microsoft Corporation has exposed its macro-based system for generating projects. If you discover that your team needs to develop multiple projects with a telecommunications interface, you can build a special wizard that automates the process.

ClassWizard

ClassWizard is a program (implemented as a DLL) that's accessible from Visual C++'s View menu. ClassWizard takes the drudgery out of maintaining Visual C++ class code. It can be access through the View menu and ClassWizard… sub menu.

Figure 11: Invoking the ClassWizard through the View menu.

The following is the MFC ClassWizard dialog box.


Figure 12: ClassWizard dialog.

When you need a new class, a new virtual function, or a new message-handler function (Message maps), ClassWizard writes the prototypes, the function bodies, and (if necessary) the code to link the Windows message to the function. ClassWizard can update class code that you write, so you avoid the maintenance problems common to ordinary code generators. Some ClassWizard features are available from Visual C++'s WizardBar toolbar, shown below.


Figure 13: Visual C++'s WizardBar toolbar.

The Source Browser

If you write an application from scratch, you probably have a good mental picture of your source code files, classes, and member functions. If you take over someone else's application, you'll need some assistance. The Visual C++ Source Browser (the browser, for short) lets you examine (and edit) an application from the class or function viewpoint instead of from the file viewpoint.



















Figure 14: Visual C++ Source Browser.

It's a little like the "inspector" tools available with object-oriented libraries such as Smalltalk. The browser has the following viewing modes:
  • Definitions and References: You select any function, variable, type, macro, or class and then see where it's defined and used in your project.
  • Call Graph/Callers Graph: For a selected function, you'll see a graphical representation of the functions it calls or the functions that call it.
  • Derived Classes and Members/Base Classes and Members: These are graphical class hierarchy diagrams. For a selected class, you see the derived classes or the base classes plus members. You can control the hierarchy expansion with the mouse.
  • File Outline: For a selected file, the classes, functions, and data members appear together with the places in which they're defined and used in your project.

If you rearrange the lines in any source code file, Visual C++ regenerates the browser database when you rebuild the project. This increases the build time. In addition to the browser, Visual C++ has a ClassView option (shown below) that does not depend on the browser database. You get a tree view of all the classes in your project, showing member functions and data members. Double-click on an element, and you see the source code immediately. The ClassView does not show hierarchy information, whereas the browser does.


Figure 15: Visual C++ ClassView.

Windows Diagnostic Tools

Visual C++ 6.0 contains a number of useful diagnostic tools. For example, SPY++ gives you a tree view of your system's processes, threads, and windows. It also lets you view messages and examine the windows of running applications.


Figure 16: Visual C++ diagnostic tools.

You'll find PVIEW (PVIEW95 for Windows 95) useful for killing errant processes that aren't visible from the Windows 95 task list. The Windows NT Task Manager, which you can run by right-clicking the toolbar, is an alternative to PVIEW. Visual C++ also includes a whole suite of ActiveX utilities, an ActiveX control test program (now with full source code in Visual C++ 6.0), the help workshop (with compiler), a library manager, binary file viewers and editors, a source code profiler, and other utilities.

Source Code Control

During development of Visual C++ 5.0, Microsoft bought the rights to an established source code control product named SourceSafe.


Figure 17: Visual C++ Source Code control.


This product has since been included in the Enterprise Edition of Visual C++ and Visual Studio Enterprise, and it is integrated into Visual C++ so that you can coordinate large software projects. The master copy of the project's source code is stored in a central place on the network, and programmers can check out modules for updates. These checked-out modules are usually stored on the programmer's local hard disk. After a programmer checks in modified files, other team members can synchronize their local hard disk copies
分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏 轉播轉播 分享分享 分享淘帖
回復

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 立即註冊

本版積分規則

小黑屋|Archiver|手機版|艾歐踢創新工坊    

GMT+8, 2024-5-17 01:51 , Processed in 0.304190 second(s), 25 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回復 返回頂部 返回列表