Main Page | Class Hierarchy | Alphabetical List | Data Structures | Directories | File List | Data Fields | Globals

DialogInfo.h File Reference

This graph shows which files directly or indirectly include this file:

Included by dependency graph

Go to the source code of this file.

Data Structures

class  CDialogInfo

Defines

#define AFX_DIALOGINFO_H__81DF2A33_A552_11D1_B58E_00AA00A410FC__INCLUDED_

Functions

void HideInfoDialog ()
void ShowInfoDialog (const char *pText)


Define Documentation

#define AFX_DIALOGINFO_H__81DF2A33_A552_11D1_B58E_00AA00A410FC__INCLUDED_
 

Definition at line 23 of file DialogInfo.h.


Function Documentation

void HideInfoDialog  ) 
 

Definition at line 55 of file DialogInfo.cpp.

References g_dlgInfo.

Referenced by _3DPointInput(), CreateSmartEntity(), FinishSmartCreation(), Patch_BendToggle(), Patch_InsDelToggle(), QERApp_GetPoints(), and QERApp_HideInfoMsg().

00056 {
00057   if (g_dlgInfo.GetSafeHwnd())
00058     g_dlgInfo.ShowWindow(SW_HIDE);
00059 }

void ShowInfoDialog const char *  pText  ) 
 

Definition at line 39 of file DialogInfo.cpp.

References g_dlgInfo, g_pParentWnd, IDD_DLG_INFORMATION, and CDialogInfo::m_wndInfo.

Referenced by _3DPointInput(), CreateSmartEntity(), Patch_BendHandleENTER(), Patch_BendToggle(), Patch_InsDelToggle(), QERApp_GetPoints(), and QERApp_InfoMsg().

00040 {
00041   if (g_dlgInfo.GetSafeHwnd())
00042   {
00043     g_dlgInfo.m_wndInfo.SetWindowText(pText);
00044     g_dlgInfo.ShowWindow(SW_SHOW);
00045   }
00046   else
00047   {
00048     g_dlgInfo.Create(IDD_DLG_INFORMATION);
00049     g_dlgInfo.m_wndInfo.SetWindowText(pText);
00050     g_dlgInfo.ShowWindow(SW_SHOW);
00051   }
00052   g_pParentWnd->SetFocus();
00053 }


Generated on Thu Aug 25 17:30:21 2005 for Quake III Arena by  doxygen 1.3.9.1