#include <ndk++.h>
Inheritance diagram for NDK_XX::NDKMessageBox:
Public Methods | |
NDKMessageBox (const string &title, const string &message, int style=info) | |
Protected Methods | |
void | on_dlg_init () |
We redefine here so we get called on construction. | |
void | show_message () |
Protected Attributes | |
string | msg |
Prompt the user. |
|
Definition at line 1763 of file ndk++.cc.
01764 : NDKDialogBox(10000,title,LINES-15,COLS-30,7,15,style),msg(message) 01765 { 01766 } |
|
We redefine here so we get called on construction.
Reimplemented from NDK_XX::NDKDialogBox. Definition at line 1770 of file ndk++.cc. References NDK_XX::NDKDialogBox::create_buttons(), NDK_XX::NDKDialogBox::pBtnCancel, NDK_XX::NDKDialogBox::set_focus_to(), and show_message().
01771 { 01772 show_message(); 01773 create_buttons(); 01774 set_focus_to(pBtnCancel); 01775 } |
|
Definition at line 1779 of file ndk++.cc. References msg. Referenced by on_dlg_init().
|
|
Prompt the user.
Definition at line 1242 of file ndk++.h. Referenced by show_message(). |