Quote Originally Posted by wysota View Post
Does it mean you can't extend it with a simple dialog?

It doesn't have to be sophisticated, just a plain dialog with a font combobox.

It's really simple, just use QApplication::setFont().
When I say green, I mean that I just managed to get Qt built as a static lib and do qmake to set up an Xcode project which, with some fiddling, resulted in the working app.

I've never coded with Qt previously (I'm a Java/Python/Cinema 4D C++ SDK developer).

How did you do it?
Qt Code:
  1. int main(int argc, char *argv[])
  2. {
  3. QApplication application(argc, argv);
  4.  
  5. IvyGenerator ivyGenerator;
  6.  
  7. ivyGenerator.show();
  8.  
  9. application.connect(&application, SIGNAL(lastWindowClosed()), &application, SLOT(quit()));
  10.  
  11. // *** Added here ***
  12. QFont f("Helvetica", 8);
  13. application.setFont(f);
  14. // *** ---- ****
  15.  
  16. return application.exec();
  17. }
To copy to clipboard, switch view to plain text mode 

This is the only place where QApplication is mentioned - though I suspect that it can be had from one of the widgets (?).

Thanks,
Robert