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

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) |
|
|
Definition at line 23 of file DialogInfo.h. |
|
|
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().
|
|
|
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 }
|
1.3.9.1