[Anygui-checkins] CVS: anygui KNOWN_BUGS.txt,1.10,1.11
Brought to you by:
mlh
From: Magnus L. H. <ml...@us...> - 2003-02-17 02:53:18
|
Update of /cvsroot/anygui/anygui In directory sc8-pr-cvs1:/tmp/cvs-serv8853 Modified Files: KNOWN_BUGS.txt Log Message: Fixed the window offset problem in qtgui. The setGeometry of QMainWindow doesn't take into account the window frame. I changed WindowWrapper.setGeometry to use QMainWindow.move() and QMainWindow.resize() instead -- not sure whether resize() takes the window frame into account. One related bug remains: When the window is resized so that comtained components get negative dimensions, qt will keep them at zero (naturally), and when the window has its size increased again, the component dimensions will be wrong. Index: KNOWN_BUGS.txt =================================================================== RCS file: /cvsroot/anygui/anygui/KNOWN_BUGS.txt,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** KNOWN_BUGS.txt 1 Nov 2002 14:31:16 -0000 1.10 --- KNOWN_BUGS.txt 17 Feb 2003 02:53:15 -0000 1.11 *************** *** 16,24 **** qtgui: ! [mlh@20021101] qtgui windows seem to be displaced by a fixed amount. ! Also, handling of Nond vs. DummyWidget doesn't seem to work properly yet. And... After editing the text in a textfield, the cursor seems to ! automatically jump to the end of the text. And defaults don't seem to ! be working properly. -- Old (0.1.1) problems ---------------------------------------------- --- 16,26 ---- qtgui: ! [mlh@20030217] Handling of Nond vs. DummyWidget doesn't seem to work properly yet. And... After editing the text in a textfield, the cursor seems to ! automatically jump to the end of the text. And defaults don't seem to be ! working properly. And if a window is resized to a very small size, so that a ! contained widget has one of its dimensions reduced to less zero, the widgets ! geometry will be wrong when the window is resized to become large again. The ! negative dimension should be "remembered" somehow. -- Old (0.1.1) problems ---------------------------------------------- |