OESF Portables Forum
Everything Else => Zaurus - Everything Development => Distros, Development, and Model Specific Forums => Archived Forums => Qt/Qtopia => Topic started by: jlbeck on May 28, 2004, 09:26:31 pm
-
I bought my zaurus to do one thing. I was going to write a custom application
to program my handheld radio scanner. I knew I had to use Qt and c++.
I bought the \"C++ GUI Programming with Qt3\" book and got to work.
I laid out the GUI using designer and have the application working great under
Suse 9.0. I\'ve installed the cross-compilers and now I learn that the zaurus
uses Qt 2.x and that the cross compile environment doesn\'t understand the
files from designer.
Is there an easy way to convert these files to work with the cross-compile
environment?
-
It all depends on what classes and functions you used. You can manually run uic from on the .ui files, and use the header and cpp file form that, instead of the ui files.
If there is essential stuff from Qt 3 you need, you may have to import the classes from Qt3 to your project, which may be quite some work. It\'s best to go through your app, and use things from Qt/E2.
-
I\'m not doing anything fancy. Just QTextStream, QMap, Qtable. Looks like I
have another steep learnig curve ahead of me.
Is there anyplace I can learn about uic, moc ...