#include <DialogTextures.h>
Inheritance diagram for CDialogTextures:


Public Types | |
| enum | { IDD = IDD_DIALOG_TEXTURELIST } |
Public Member Functions | |
| CDialogTextures (CWnd *pParent=NULL) | |
Data Fields | |
| int | m_nSelection |
| CListBox | m_wndList |
Protected Member Functions | |
| virtual void | DoDataExchange (CDataExchange *pDX) |
| afx_msg void | OnDblclkListTextures () |
| virtual BOOL | OnInitDialog () |
| virtual void | OnOK () |
|
|
Definition at line 42 of file DialogTextures.h. 00042 { IDD = IDD_DIALOG_TEXTURELIST };
|
|
|
Definition at line 39 of file DialogTextures.cpp. 00040 : CDialog(CDialogTextures::IDD, pParent) 00041 { 00042 //{{AFX_DATA_INIT(CDialogTextures) 00043 // NOTE: the ClassWizard will add member initialization here 00044 //}}AFX_DATA_INIT 00045 }
|
|
|
Definition at line 48 of file DialogTextures.cpp. References IDC_LIST_TEXTURES, and m_wndList. 00049 {
00050 CDialog::DoDataExchange(pDX);
00051 //{{AFX_DATA_MAP(CDialogTextures)
00052 DDX_Control(pDX, IDC_LIST_TEXTURES, m_wndList);
00053 //}}AFX_DATA_MAP
00054 }
|
|
|
Definition at line 72 of file DialogTextures.cpp. References OnOK(). 00073 {
00074 OnOK();
00075 }
|
Here is the call graph for this function:

|
|
Definition at line 77 of file DialogTextures.cpp. References BOOL, FillTextureMenu(), i, m_nSelection, and m_wndList. 00078 {
00079 CDialog::OnInitDialog();
00080 CStringArray sa;
00081 FillTextureMenu(&sa);
00082 m_nSelection = -1;
00083 for (int i = 0; i < sa.GetSize(); i ++)
00084 {
00085 m_wndList.AddString(sa.GetAt(i));
00086 }
00087 return TRUE; // return TRUE unless you set the focus to a control
00088 // EXCEPTION: OCX Property Pages should return FALSE
00089 }
|
Here is the call graph for this function:

|
|
Referenced by OnDblclkListTextures(). |
|
|
Definition at line 45 of file DialogTextures.h. Referenced by OnInitDialog(), and CMainFrame::OnTexturesLoadlist(). |
|
|
Definition at line 43 of file DialogTextures.h. Referenced by DoDataExchange(), and OnInitDialog(). |
1.3.9.1