#include <ndk_demo.h>
Inheritance diagram for AnotherPopUpCmd:
Public Methods | |
AnotherPopUpCmd () | |
~AnotherPopUpCmd () |
|
Definition at line 208 of file ndk_demo.cc. References NDK_XX::NDKPopUpMenu::items, and NDK_XX::NDKPopUpMenu::sub_menu_label.
00209 : NDKPopUpMenu ("2nd Item") 00210 { 00211 sub_menu_label = "Second element"; 00212 items.push_back(new BackCmd()); 00213 items.push_back(new ShowTestDialogCmd()); 00214 items.push_back(new NonImplementedItem("Second choice")); 00215 items.push_back(new NonImplementedItem("Third choice")); 00216 items.push_back(new NonImplementedItem("Fourth choice")); 00217 items.push_back(new NonImplementedItem("Fift Choice")); 00218 items.push_back(new ClosingMarkItem()); 00219 } |
|
Definition at line 122 of file ndk_demo.h.
00122 {} |