Search the Community
Showing results for tags 'qt'.
-
Hello, May i know how can i automation qt application? Using controlclick not mouse and positions Thanks
-
How i can use Autoit inside QT ? QT C++ framework
- 6 replies
-
- qt
- c++ framwork
-
(and 1 more)
Tagged with:
-
The Qt open source Kapow punch clock program uses QDir::homePath() to locate its data file: main.cpp (from Kapow's source code): QString path = QDir::homePath() + "/Application Data/GottCode/Kapow/"; So I hoped to portabilize it by making AutoIt use: EnvSet("USERPROFILE", "a local path") Alas, Kapow ignored it. I therefore looked at Qt's documentation: Can AutoIt somehow make Kapow think that this folder "does not exist or cannot be retrieved" and therefore use %HOMEPATH% instead? If not, is there a Qt expert in here that wishes to update Kapow's source code (the author blogged and twitted that he went AWOL) to accept a "/data=[path]" command line parameter? P.S. Kapow does have a portable mode, but it's hardcoded for one path ("..kapowdata") which is a problem in a multi-user environment.