1 doc/binary.doc 1.2 warwick +23 -26
3 Include margins into header graphic
6 doc/examples.doc 2.15 agulbra +19 -2
7 examples/dirview/dirview.cpp 1.8 agulbra +2 -2
8 src/widgets/qlistview.cpp 2.112 agulbra +163 -28
9 src/widgets/qlistview.h 2.49 agulbra +4 -4
11 rename children() to childCount()
12 add two images to the docs
13 update dirview and add it to the docs
16 src/dialogs/qfiledlg.cpp 2.68 hanord +8 -12
18 Rewrote setFilter to use QString and mid() - simpler code.
19 Borland C++ complained about modifying const char *.
22 src/dialogs/qfiledlg.cpp 2.69 agulbra +9 -7
23 src/dialogs/qmsgbox.cpp 2.48 agulbra +3 -1
24 src/dialogs/qprndlg.cpp 2.26 agulbra +213 -2
25 src/widgets/qwidgetstack.cpp 2.6 agulbra +8 -3
27 Call setPalettePropagation() and setFontPropagation() in the
28 initialization. Note that QWidgetStack now defaults to use
32 src/dialogs/qmsgbox.cpp 2.47 hanord +3 -3
34 icon widget gets widget name "icon" (previously none)
35 buttons get widget names button1, button2 (previously space before number)
38 src/dialogs/qprndlg.cpp 2.24 agulbra +163 -7
40 parse /etc/lp/member and /etc/printers.conf. we still probably don't
41 detect the printers on irix and digital unix (except through sheer
42 good luck - I suppose there is a chance that digital or sgi might
43 choose to be compatible with something).
46 src/dialogs/qprndlg.cpp 2.25 agulbra +10 -10
48 one more minor cleanup.
50 looks like the code we have works on both irix and digital unix.
53 src/kernel/qapp_win.cpp 2.88 hanord +2 -3
58 src/kernel/qapp_win.cpp 2.89 agulbra +2 -2
59 src/kernel/qapp_x11.cpp 2.138 agulbra +3 -3
61 don't delete events destined for other objects in target-specific
65 src/kernel/qasyncimageio.cpp 1.33 warwick +42 -42
66 src/kernel/qasyncimageio.h 1.17 warwick +15 -15
71 src/kernel/qdnd_x11.cpp 2.14 agulbra +8 -5
72 src/kernel/qdragobject.cpp 2.14 agulbra +21 -9
77 src/kernel/qdnd_x11.cpp 2.15 agulbra +6 -9
79 comment out old debug messages; delete some
82 src/kernel/qdragobject.cpp 2.15 agulbra +4 -6
84 ignore totally unexpected events
87 src/kernel/qfnt_win.cpp 2.28 agulbra +4 -4
88 src/kernel/qfont.cpp 2.34 agulbra +2 -4
90 be slightly more robust about setting the character encoding to the
94 src/kernel/qfont.cpp 2.31 agulbra +115 -63
96 overhauled class documentation; man function descriptions probably
97 also need an overhaul.
100 src/kernel/qfont.cpp 2.32 agulbra +56 -65
102 fixed some typos; removed some misleading text from the function
106 src/kernel/qgmanagr.cpp 2.34 paul +22 -66
108 Rolled back "empty layout" change, since it broke existing code.
111 src/kernel/qiconset.cpp 2.9 paul +16 -8
113 Handle mask better when generating disabled pixmaps
116 src/kernel/qprn_x11.cpp 2.14 agulbra +12 -1
118 if the application hasn't specified a non-default print program, try
119 HARD to find a decent lpr or lp.
122 src/kernel/qpsprn.cpp 2.25 agulbra +12 -7
124 discussed the "sometimes cannot print to /usr/bin/lpr even though
125 every other program works perfectly" bug with the code.
127 also shrunk the output by a few bytes by removing extraneous newlines
131 src/tools/qdatetm.cpp 2.14 agulbra +19 -5
133 QDateTime::addSecs() used to not work across midnight or backwards.
136 src/tools/qglobal.h 2.51 agulbra +4 -2
138 detect unixware 7; detect bool on more irix stuff
141 src/widgets/qbttngrp.cpp 2.12 agulbra +5 -1
143 mention the existence of set*Propagation()
146 src/widgets/qbutton.cpp 2.60 agulbra +16 -17
147 src/widgets/qbutton.h 2.16 agulbra +3 -2
149 make setDown() public; this breaks binary compatibility on MSVC++
151 The way to start a context menu on press used to be to make a
152 synthetic QMouseEvent indicating a release, and sendEvent() that.
156 src/widgets/qheader.cpp 2.41 paul +6 -1
158 Fix "Index out of range" bug.
161 src/widgets/qlined.cpp 2.78 agulbra +3 -6
163 when pasting multi-line stuff, fold to one line.
166 src/widgets/qlined.cpp 2.79 paul +2 -2
168 Fix "index out of range" bug when typing past maxLength.
171 src/widgets/qpopmenu.cpp 2.75 aavit +2 -2
173 minimal improvement of checkmark look in windows style.
176 src/widgets/qsplitter.cpp 1.13 agulbra +12 -12
178 more doc; mention setFixed()
181 src/widgets/qtoolbar.cpp 2.21 agulbra +46 -12
183 paint a tool bar handle in motif style too
186 src/widgets/qtoolbar.cpp 2.22 paul +3 -2
188 Don't override max/min sizes for children
191 src/widgets/qtoolbutton.cpp 2.27 agulbra +24 -22
193 handle text label correctly; check for null pointer; minor doc