#include <helpdownload.h>
Inheritance diagram for HelpDownloadDlg:
Public Member Functions | |
HelpDownloadDlg () | |
virtual | ~HelpDownloadDlg () |
void | Do (OpDescriptor *od) |
The default operation is called from the menu. | |
Static Public Member Functions | |
static BOOL | Init () |
static OpState | GetState (String_256 *, OpDescriptor *) |
Definition at line 213 of file helpdownload.h.
|
Definition at line 218 of file helpdownload.h.
|
|
Definition at line 219 of file helpdownload.h.
|
|
The default operation is called from the menu.
Reimplemented from Operation. Definition at line 1383 of file helpdownload.cpp. 01384 { 01385 HelpDownloadOp::CheckForNewFiles(TRUE); // Foreground! 01386 }
|
|
Definition at line 1365 of file helpdownload.cpp. 01366 { 01367 OpState OpSt; 01368 return(OpSt); 01369 }
|
|
Reimplemented from SimpleCCObject. Definition at line 1335 of file helpdownload.cpp. 01336 { 01337 return RegisterOpDescriptor( 01338 0, // Tool ID 01339 _R(IDS_HELPDOWNLOADDLG), // String resource ID 01340 CC_RUNTIME_CLASS(HelpDownloadDlg), // Runtime class 01341 OPTOKEN_HELPDOWNLOADDLG, // Token string 01342 HelpDownloadDlg::GetState, // GetState function 01343 0, // Help ID 01344 0, // Bubble ID 01345 0, // Resource ID 01346 0 // Control ID 01347 ); 01348 01349 }
|