The Window's Real Estate

 

Application's Instance

 

A window is referred to as parent when it can be used to host, hold, or carry other windows. For examples, when the computer starts, it draws its main screen, also called the desktop, which occupies the widest area that the monitor screen can offer. This primary window becomes the host of all other window that will display as long as the computer is own. This desktop is also a complete window in its own right. As mentioned already, to get its handle, you can call the GetDesktopWindow() function.

After the desktop has been created, a window of yours can display if the user starts your application. This means that an application must have been created for the user to use it. When the user opens an application, we also say that the application has been instantiated or an instance of the application has been created. Based on this, any time you create an application, you must provide an instance of it. This allows the operating system to manage your application with regards to its interaction with the user and also its relationship with other resources. Therefore, you must always create an instance for your application. This is taken care of by the first argument of the WinMain() function.

If an application has already been created, to get its instance, you can call theGetWindowLong() function. Its syntax is:

  1. <span style="font-family:Comic Sans MS;">LONG GetWindowLong(HWND hWnd, int nIndex);</span>

Although this function is used for many other reasons, it can also help you get the instance of an application. To do this, pass the first argument as the handle to a window of the application you are examining and pass the second argument as GWL_HINSTANCE.

Window Parenting

 

There are two types of windows or object you will deal with in your applications. The type referred to here is defined by the relationship a window has with regards to other windows that are part of an application:

  • Parent: a window is referred to as a parent when there are, or there can be, other windows that depend on it. For example, the toolbar of your browser is equipped with some buttons. The toolbar is a parent to the buttons. When a parent is created, it "gives life" to other windows that can depend on it.
  • Child: A window is referred to as child when its existence and especially its visibility depend on another window called its parent.

When a parent is created, made active, or made visible, it gives existence and visibility to its children. When a parent gets hidden, it also hides its children. If a parent moves, it moves with its children. The children keep their positions and dimensions inside the parent. When a parent is destroyed, it also destroys its children (sometimes it does not happen so smoothly; a parent may make a child unavailable but the memory space the child was occupying after the parent has been destroyed may still be in use, sometimes filled with garbage, but such memory may not be available to other applications until you explicitly recover it).

Child controls depend on a parent because the parent "carries", "holds", or hosts them. All of the Windows controls you will use in your applications are child controls. A child window can also be a parent of another control. For example, a toolbar of the browser is the parent of the buttons on it. If you close or hide the toolbar, its children disappear. At the same time, the toolbar is a child of the application's frame. If you close the application, the toolbar disappears, along with its own children. In this example, the toolbar is a child of the frame but is a parent to its buttons.

After initializing an application with either the WNDCLASS, or the WNDCLASSEX structure and registering it, as we have done so far, you must create the primary parent of all objects of your class. This is usually done with either the CreateWindow() or the CreateWindowEx()function. Here is an example:

  1. <span style="font-family:Comic Sans MS;">HWND hWndParent;
  2. // Create the parent window
  3. hWndParent = CreateWindowEx(0, ClassName, StrWndName,
  4. WS_OVERLAPPEDWINDOW,
  5. 0, 100, 140, 320,
  6. NULL, NULL, hInstance, NULL);</span>

A Window's Childhood

 

After creating the main window, you can use it as a parent for other windows. To specify that a window is a child of another window, when creating it with either the CreateWindow() or the CreateWindowEx() function, pass the handle of the parent as the hWndParent argument. Here is an example:

  1. <span style="font-family:Comic Sans MS;">// Create a window
  2. CreateWindowEx(0, WndClassName, CaptionOrText,
  3. ChildStyle, Left, Top, Width, Height,
  4. hWndParent, NULL, hInstance, NULL);</span>

If a window is a child of another window, to get a handle to its parent, you can call theGetParent() function. Its syntax is:

HWND GetParent(HWND hWnd);

The hWnd argument is a handle to the child window whose parent you want to find out. Alternatively, you can also use the GetWindowLong() function, passing the second argument as GWL_HWNDPARENT, to get a handle to the parent of a window.

The Borders of a Window

 

To distinguish a particular window from the other objects on a screen, a window can be defined by surrounding borders on the left, the top, the right, and the bottom. One of the effects the user may want to control on a window is its size. For example, the user may want to narrow, enlarge, shrink, or heighten a window. To do this, a user would position the mouse on one of the borders, click and drag in the desired direction. This action is referred to as resizing a window. For the user to be able to change the size of a window, the window must have a special type of border referred to as a thick frame. To provide this border, apply or add theWS_THICKFRAME style:

  1. <span style="font-family:Comic Sans MS;">CreateWindow(ClsName, WndName,
  2. WS_VISIBLE | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_THICKFRAME);</span>

Because many windows will need this functionality, a special style can combine them and it is called WS_OVERLAPPEDWINDOW. Therefore, you can create a resizable window as follows:

CreateWindow(ClsName, WndName, WS_OVERLAPPEDWINDOW,

Window's Location and Size

 

The location of a window is defined by the distance from the left border of the monitor to the window's left border and its distance from the top border of the monitor to its own top border. The size of a window is its width and its height. These can be illustrated for a main window frame as follows:

For a Win32 application, the original distance from the left border of the monitor is passed as the x argument to the CreateWindow() or the CreateWindowEx() function. The distance from top is specified using the y argument. The x and y arguments define the location of the window. The distance from the left border of the monitor to the right border of the window is specified as the nWidth argument. The distance from the top border of the monitor to the lower border of the window is specified with the nHeight value.

If you cannot make up your mind for these four values, you can use the CW_USEDEFAULT(when-Creating-the-Window-USE-the-DEFAULT-value) constant for either one or all four arguments. In such a case, the compiler would select a value for the argument. Here is an example:

  1. <span style="font-family:Comic Sans MS;">INT WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
  2. LPSTR lpCmdLine, int nCmdShow)
  3. {
  4. WNDCLASSEX WndClsEx;
  5. . . .
  6. RegisterClassEx(&WndClsEx);
  7. HWND hWnd = CreateWindow(ClsName,
  8. WndName,
  9. WS_OVERLAPPEDWINDOW,
  10. CW_USEDEFAULT,
  11. CW_USEDEFAULT,
  12. CW_USEDEFAULT,
  13. CW_USEDEFAULT,
  14. return 0;
  15. }
  16. </span>

Displaying the Window

 

Once a window has been created and if this was done successfully, you can display it to the user. This is done by calling the ShowWindow() function. Its syntax is:

  1. <span style="font-family:Comic Sans MS;">BOOL ShowWindow(HWND hWnd, int nCmdShow);</span>

The hWnd argument is a handle to the window that you want to display. It could be the window returned by the CreateWindow() or the CreateWindowEx() function.

The nCmdShow specifies how the window must be displayed. Its possible values are:

  Value Description
  SW_SHOW Displays a window and makes it visible
  SW_SHOWNORMAL Displays the window in its regular size. In most circumstances, the operating system keeps track of the last location and size a window such as Internet Explorer or My Computer had the last time it was displaying. This value allows the OS to restore it.
  SW_SHOWMINIMIZED Opens the window in its minimized state, representing it as a button on the taskbar
  SW_SHOWMAXIMIZED Opens the window in its maximized state
  SW_SHOWMINNOACTIVE Opens the window but displays only its icon. It does not make it active
  SW_SHOWNA As previous
  SW_SHOWNOACTIVATE Retrieves the window's previous size and location and displays it accordingly
  SW_HIDE Used to hide a window
  SW_MINIMIZE Shrinks the window and reduces it to a button on the taskbar
SW_MAXIMIZE Maximizes the window to occupy the whole screen area
  SW_RESTORE If the window was minimized or maximized, it would be restored to its previous location and size

To show its presence on the screen, the window must be painted. This can be done by calling the UpdateWindow() function. Its syntax is:

  1. <span style="font-family:Comic Sans MS;">BOOL UpdateWindow(HWND hWnd);</span>

This function simply wants to know what window needs to be painted. This window is specified by its handle. Here is an example:

  1. <span style="font-family:Comic Sans MS;">INT WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
  2. LPSTR lpCmdLine, int nCmdShow)
  3. {
  4. WNDCLASSEX WndClsEx;
  5. . . .
  6. RegisterClassEx(&WndClsEx);
  7. HWND hWnd = CreateWindow(ClsName, WndName, WS_OVERLAPPEDWINDOW,
  8. CW_USEDEFAULT, CW_USEDEFAULT,
  9. CW_USEDEFAULT, CW_USEDEFAULT,
  10. NULL, NULL, hInstance, NULL);
  11. if( !hWnd ) // If the window was not created,
  12. return 0; // stop the application
  13. ShowWindow(hWnd, SW_SHOWNORMAL);
  14. UpdateWindow(hWnd);
  15. return 0;
  16. }
  17. </span>

The Multiple Document Interface (MDI)

 

Introduction

 

A multiple document is the type of application that uses a main, external window that acts as a frame and hosts other, floating window that act as its children. This concept allows the user to open more than one document at a time in an application, making it possible to switch from one document to another without closing the application.

MDI Application Creation

 

You start an MDI like the types of applications we have created so far. One of the primary differences is that the window procedure must return the DefFrameProc() function. Its syntax is:

  1. <span style="font-family:Comic Sans MS;">LRESULT DefFrameProc(HWND hWnd,
  2. HWND hWndMDIClient,
  3. UINT uMsg,
  4. WPARAM wParam,
  5. LPARAM lParam);</span>
转载自:http://www.functionx.com/win32/Lesson08.htm
http://blog.csdn.net/x356982611/article/details/9352499

Types of Windows的更多相关文章

  1. windows消息机制详解(转载)

    消息,就是指Windows发出的一个通知,告诉应用程序某个事情发生了.例如,单击鼠标.改变窗口尺寸.按下键盘上的一个键都会使Windows发送一个消息给应用程序.消息本身是作为一个记录传递给应用程序的 ...

  2. How to Fix Missing TortoiseSVN File Status Icons in Windows

    For many Windows-based developers, Subversion and TortoiseSVN is a great source control solution. It ...

  3. windows窗口分析,父窗口,子窗口,所有者窗口

    (本文尝试通过一些简单的实验,来分析Windows的窗口机制,并对微软的设计理由进行一定的猜测,需要读者具备C++.Windows编程及MFC经验,还得有一定动手能力.文中可能出现一些术语不统一的现象 ...

  4. [虾扯蛋] android界面框架-Window

    从纯sdk及framwork的角度看,android中界面框架相关的类型有:Window,WindowManager,View等.下面就以这几个类为出发点来概览下安卓开发的"界面架构&quo ...

  5. PL/SQL常用设置 可看引用位置更清晰直观 引自:http://blog.csdn.net/xiaoqforever/article/details/27695569

    引自:http://blog.csdn.net/xiaoqforever/article/details/27695569 1,登录后默认自动选中My Objects 默认情况下,PLSQL Deve ...

  6. Getting Text Metrics in Firemonkey(delphiscience的博客)

    Firemonkey’s abstract TCanvas class has been providing the dimensions of the bounding rectangle of s ...

  7. WindowManager.LayoutParams的探究

    上次在子线程更新UI时用了一下WindowManager.LayoutParams,当时觉得不太顺手.以前都是用空参构造器,这次用了type和flag属性,出现了意想不到的效果.也看看源码吧,多锻炼锻 ...

  8. SetWindowPos和SetForegroundWindow

    There are many closely-related concepts involved, and related terms are often misused, even in the o ...

  9. wxWidgets与其它GUI工具库比较

    WxWidgets Compared To Other Toolkits   Some general notes: wxWidgets not only works for C++, but als ...

随机推荐

  1. μC/OS学习资料(附Ebook)

    注意:下载地址位于文末. μC/OS-各版本源码 <嵌入式实时操作系统μC/OS-II> <嵌入式实时操作系统μC/OS-III> <μC/OSII2.52源码中文译注- ...

  2. C#中ref参数及out参数对比

    ref 关键字和out关键字均会导致参数通过引用来传递(相同点1).这是两者的共同点. 通过引用传递参数,会使方法中对参数所做的任何修改都将反映在该变量中. 两者还有一个共同点,那就是:若要使用 re ...

  3. 十天学习PHP之第四天

    学习目的:学会连接数据库  PHP简直就是一个函数库,丰富的函数使PHP的某些地方相当简单.建议大家down一本PHP的函数手冊,总用得到. 我这里就简单说一下连接MYSQL数据库.  1.mysql ...

  4. GoldenGate配置(二)之双向复制配置

     GoldenGate配置(二)之双向复制配置 环境: Item Source System Target System Platform Red Hat Enterprise Linux Serve ...

  5. 【j2ee】div浮动层拖拽

    背景:近期项目中需要实现弹出浮层增加数据,并且浮动层可以拖拽 解决步骤:1.浮动层实现  2.拖拽实现 多方查资料,基本实现功能,现做demo,便于以后使用 先上图片大体展示实现效果: 再上代码,展示 ...

  6. 前端面试题整理(html)

    1.<!DOCTYPE>标签的定义与用法. <!DOCTYPE> 声明必须是 HTML 文档的第一行,位于 <html> 标签之前. <!DOCTYPE> ...

  7. SharePoint 2013 &quot;通知我&quot;简单的功能

    简单的功能 "通知我"内部列表或文档库中的主要项目.加入/删除/修改等操作,用户的E- mail通知设定功能:设置列表或文档库通知的能力,有可能设置通知为一个单一的项目.这是Sha ...

  8. Eclipse ADT 更换主题

    如果Eclipse 版本3.6以上 在 Help→Eclipse Marketplace 搜索 Theme 之后安装即可 如果Eclipse版本3.5 一下, 通过地址安装插件: http://ecl ...

  9. 基础知识(10)- 部署应用程序和applet

    10.1 JAR文件  10.1.1 清单文件  10.1.2 可运行JAR文件  10.1.3 资源  10.1.4 密封 10.2 Java Web Start  10.2.1 沙箱  10.2. ...

  10. 关于Android配色 自适应颜色的实现

    在Android4.4系统中,更加详细地介绍了关于颜色的细节并提供了使用colour的新教程,以使我们的应用更加独一无二.也就是说,作为一个设计师或者开发者,为你的APP做完美的配色已经变成了你的职责 ...