Tagged Questions

3
votes
5answers
1k views

Qt UI for existing C++ project

I have already written a C++ program and I would like to write a GUI for it. I realize Qt is a wonderful tool, however, Qt has it's own classes, which make me quite confused. eg: instead of String, Qt ...
1
vote
1answer
50 views

Using Qstring::toDouble To check data

I'm trying to validate user input by using the QString::toDouble() function. The documentation says the function should be used like this: double QString::toDouble ( bool * ok = 0 ) const; /* ...