本文整理汇总了C++中TestWindow::AddAction方法的典型用法代码示例。如果您正苦于以下问题:C++ TestWindow::AddAction方法的具体用法?C++ TestWindow::AddAction怎么用?C++ TestWindow::AddAction使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestWindow
的用法示例。
在下文中一共展示了TestWindow::AddAction方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(int argc,
char **argv)
{
Application *app = new Application("Printer", "Dtprinter", &argc, argv);
TestWindow *window = new TestWindow(app, "Printer");
window->Initialize();
window->AddAction("Exit", "PrinterSubSystem", ExitCB, NULL, "x", "Alt+F4");
window->AddAction("Properties...", "Queue", NULL, NULL, "p",
"Ctrl+Backspace");
window->AddSep("Queue");
window->AddAction("Start", "Queue", NULL, NULL, "S");
window->AddAction("Stop", "Queue", NULL, NULL, "t");
window->AddSep("Queue");
window->AddAction("Monitor", "Queue", NULL, NULL, "M");
window->AddAction("Cancel", "PrintJob", NULL, NULL, "C");
window->RegisterPopup(window->container);
IconObj *lp0 = new IconObj("Queue", window->container, "lp0", "Fpprnt");
window->RegisterPopup(lp0);
IconObj *tmp = new IconObj("PrintJob", lp0, "job1", "DtPrtjb");
window->RegisterPopup(tmp);
tmp = new IconObj("PrintJob", lp0, "job2", "DtPrtjb");
window->RegisterPopup(tmp);
tmp = new IconObj("PrintJob", lp0, "job3", "DtPrtjb");
window->RegisterPopup(tmp);
IconObj *lp1 = new IconObj("Queue", window->container, "lp1", "Fpprnt");
window->RegisterPopup(lp1);
tmp = new IconObj("PrintJob", lp1, "job4", "DtPrtjb");
window->RegisterPopup(tmp);
tmp = new IconObj("PrintJob", lp1, "job5", "DtPrtjb");
window->RegisterPopup(tmp);
app->Visible(true);
app->Run();
return 0;
}