Thanks, I will try that.
Type: Posts; User: franklovecchio; Keyword(s):
Thanks, I will try that.
I am using VMWare to run Qt Creator/Qt Emulator since the Mac one crashes consistently (something about the way the video card and the SDK use RAM, I guess). I can't, however, get VMWare to...
See this post on Stack Overflow as well: http://stackoverflow.com/questions/4485547/qt-symbian-mobile-soft-key-menus-not-displaying-correctly .
http://go.isidorey.net/nokia_apps/menu.png
I...
I know that WordWrap doesn't necessarily overflow the TreeView Item text into a new line, but I don't want the text of a parent/child to overflow past the width of the screen (it's not visible!) How...
Ah, thanks!
I've seen some dialog classes, but which one is best suited to mobile Qt? I simply want a dialog to pop up off of a QPushButton, something similar to Android's Toast class.
Thanks!
I saw something in a forum about this not being implementable, but it looks like one of the examples has a filter. I have a TreeView, and I need an editable text box that would remove parent items...
I have an image with text on top, and the text fails to wrap inside the image, cutting some of it off.
QImage image(":images/box.png");
QPainter* painter = new QPainter(&image);...
string parse(QXmlStreamReader& xml);
map<string, string> parsePerson(QXmlStreamReader& xml);
I modifed the qxsrexample for xml parsing, and can't figure out why I get the error "template argument is invalid" - it's in the last line of the header where I do QList< map<string, string> persons...