When using the Meego Touch Framework, the standard MApplicationWindow has a common navigation bar (with a switch, menu, and close buttons) already attached.
For example, the following code:
#include <MApplication> #include <MApplicationWindow> int main(int argc, char *argv[]){ MApplication app(argc, argv); MApplicationWindow w; w.show(); return app.exec(); }
Creates an empty window with a menu bar that looks similar to this (for example, a toggle button, menu, and close button at the top).
However, since docs prevent the use of the Touch Framework, I want to avoid using it, so how would I create a similar window view using only the standard API ?
source share