PDA

View Full Version : Qt equivalent of .Xdefaults?



kevinm
16th October 2008, 20:18
Hi,

is there an equivalent of using the .Xdefaults file to specify a Qt program's start up window size and location?

wysota
16th October 2008, 22:48
You should do that storing settings of your application in a file using QSettings and restoring the saved geometry upon application startup.

kevinm
17th October 2008, 22:44
thank you!