0
|
1 |
examples/qdir/qdir.cpp 1.2 warwick +4 -3 (1998/04/06)
|
|
2 |
|
|
3 |
better captions
|
|
4 |
|
|
5 |
|
|
6 |
src/widgets/qscrollview.cpp 2.34 warwick +11 -1
|
|
7 |
|
|
8 |
clean up in destructor code.
|
|
9 |
|
|
10 |
|
|
11 |
src/widgets/qlined.cpp 2.70 agulbra +6 -4
|
|
12 |
|
|
13 |
don't start drags just now
|
|
14 |
|
|
15 |
|
|
16 |
examples/scrollview/scrollview.cpp 1.10 warwick +2 -2
|
|
17 |
|
|
18 |
make it Big
|
|
19 |
|
|
20 |
|
|
21 |
src/kernel/qapp_x11.cpp 2.127 agulbra +37 -6
|
|
22 |
src/kernel/qfont.h 2.9 agulbra +3 -2
|
|
23 |
|
|
24 |
sort of parse $LANG
|
|
25 |
|
|
26 |
|
|
27 |
examples/application/main.cpp 1.2 warwick +3 -2
|
|
28 |
|
|
29 |
use setMainWidget
|
|
30 |
|
|
31 |
|
|
32 |
extensions/opengl/src/qgl.pro 1.8 warwick +1 -1 (1998/04/08)
|
|
33 |
|
|
34 |
Building libqgl doesn't need -lqgl
|
|
35 |
|
|
36 |
|
|
37 |
src/dialogs/qfiledlg.cpp 2.54 agulbra +74 -21
|
|
38 |
src/dialogs/qfiledlg.h 2.14 agulbra +5 -3
|
|
39 |
|
|
40 |
allow setting of initial file name when using statics.
|
|
41 |
|
|
42 |
src/dialogs/qfiledlg.cpp 2.55 agulbra +11 -11
|
|
43 |
|
|
44 |
allow setting thename of a nonexistent file as initial default in
|
|
45 |
getSaveFileName()
|
|
46 |
|
|
47 |
|
|
48 |
src/kernel/qpsprn.cpp 2.13 agulbra +4 -4
|
|
49 |
|
|
50 |
avoid at-least-a-warning-at-most-an-UMR.
|
|
51 |
|
|
52 |
|
|
53 |
src/moc/moc.pro 1.9 warwick +1 -1
|
|
54 |
|
|
55 |
include qt include
|
|
56 |
|
|
57 |
|
|
58 |
extensions/opengl/src/qgl.pro 1.9 warwick +1 -1
|
|
59 |
|
|
60 |
more -lqgl
|
|
61 |
|
|
62 |
|
|
63 |
src/tools/qglobal.h 2.48 agulbra +4 -1
|
|
64 |
|
|
65 |
openbsd
|
|
66 |
|
|
67 |
|
|
68 |
src/widgets/qsplitter.h 1.7 agulbra +3 -3
|
|
69 |
|
|
70 |
remove semicolon after Q_OBJECT
|
|
71 |
|
|
72 |
|
|
73 |
src/dialogs/qfiledlg.cpp 2.53 agulbra +15 -3
|
|
74 |
|
|
75 |
say "Readable, writable" and so on instead of ASHR (shades of MS-DOS)
|
|
76 |
|
|
77 |
|
|
78 |
src/widgets/qlcdnum.cpp 2.11 agulbra +17 -2
|
|
79 |
src/widgets/qlcdnum.h 2.7 agulbra +3 -1
|
|
80 |
|
|
81 |
sizeHint(). decent minimum size using the golden mean.
|
|
82 |
|
|
83 |
|
|
84 |
src/moc/GNUmakefile 2.4 warwick +11 -3
|
|
85 |
src/moc/moc.pro 1.8 warwick +1 -1
|
|
86 |
src/moc/moc.t 1.11 warwick +1 -1
|
|
87 |
src/moc/moc.t 1.10 warwick +1 -1
|
|
88 |
|
|
89 |
yacc flags
|
|
90 |
|
|
91 |
|
|
92 |
src/kernel/qpainter.cpp 2.40 warwick +4 -4 (1998/04/09)
|
|
93 |
src/widgets/qmlined.cpp 2.90 warwick +4 -2
|
|
94 |
src/widgets/qscrollview.cpp 2.35 warwick +39 -33
|
|
95 |
|
|
96 |
Fixed cursor position in QMultiLineEdit.
|
|
97 |
Fixed focus navigation in QScrollView.
|
|
98 |
|
|
99 |
|
|
100 |
src/widgets/qscrollview.cpp 2.36 agulbra +8 -3
|
|
101 |
|
|
102 |
be a little more careful about event processing - removeChild() was
|
|
103 |
called from QScrollViewData destructor and didn't like that.
|
|
104 |
|
|
105 |
|
|
106 |
src/kernel/qprn_x11.cpp 2.10 agulbra +62 -77
|
|
107 |
src/kernel/qpsprn.cpp 2.14 agulbra +1525 -157
|
|
108 |
src/kernel/qpsprn.h 2.5 agulbra +17 -9
|
|
109 |
|
|
110 |
added support for character encodings other than iso 8859-1. the
|
|
111 |
header is computed dynamically; the fonts and encodings used on the
|
|
112 |
first few pages are put in the header, any other fonts and encodings
|
|
113 |
are added to the output stream as necessary. removed the need for a
|
|
114 |
temporary file. rewrote the font name cache so two QPSPrinter objects
|
|
115 |
printing at the same time won't conflict. put back in the header size
|
|
116 |
compression.
|
|
117 |
|
|
118 |
|
|
119 |
src/widgets/qcombo.cpp 2.82 warwick +3 -3 (1998/04/13)
|
|
120 |
|
|
121 |
Correct sizeHint.
|
|
122 |
|
|
123 |
|
|
124 |
src/widgets/qscrollview.cpp 2.37 warwick +22 -18
|
|
125 |
src/widgets/qscrollview.h 2.19 warwick +1 -2
|
|
126 |
|
|
127 |
Improve focus tabbing.
|
|
128 |
|
|
129 |
|
|
130 |
src/kernel/qwidget.cpp 2.98 warwick +60 -16
|
|
131 |
src/kernel/qwidget.h 2.48 warwick +3 -1
|
|
132 |
|
|
133 |
Inherit *parents* palette, not application palette *** CHANGED BEHAVIOUR ***
|
|
134 |
Generalize isEnabledToTLW and isVisibleToTLW
|
|
135 |
|
|
136 |
|
|
137 |
src/widgets/qtablevw.cpp 2.44 warwick +8 -28
|
|
138 |
|
|
139 |
Propagate palette changes to scrollbars.
|
|
140 |
Combine common code.
|
|
141 |
|
|
142 |
|
|
143 |
src/widgets/qlistview.cpp 2.91 warwick +24 -6
|
|
144 |
src/widgets/qlistview.h 2.43 warwick +5 -3
|
|
145 |
|
|
146 |
Provide parent() of list view item.
|
|
147 |
|
|
148 |
|
|
149 |
src/widgets/qlistbox.cpp 2.61 warwick +45 -3
|
|
150 |
src/widgets/qlistbox.h 2.15 warwick +6 -2
|
|
151 |
|
|
152 |
Update maxItemWidth on font change.
|
|
153 |
Add sizeHint()
|
|
154 |
|
|
155 |
src/kernel/qregion.cpp 2.8 hanord +84 -51 (1998/04/14)
|
|
156 |
src/kernel/qregion.h 2.9 hanord +12 -3
|
|
157 |
src/kernel/qrgn_win.cpp 2.11 hanord +39 -25
|
|
158 |
src/kernel/qrgn_x11.cpp 2.11 hanord +48 -29
|
|
159 |
|
|
160 |
Removed the internal (and slow) byte array.
|
|
161 |
Uses the region rectangles for saving complex regions.
|
|
162 |
|
|
163 |
|
|
164 |
src/widgets/qchkbox.cpp 2.20 warwick +5 -4
|
|
165 |
src/widgets/qradiobt.cpp 2.25 warwick +9 -4
|
|
166 |
|
|
167 |
Small sizeHint when no text or pixmap.
|
|
168 |
|
|
169 |
|
|
170 |
src/kernel/qptr_win.cpp 2.32 agulbra +5 -2
|
|
171 |
src/kernel/qptr_x11.cpp 2.46 agulbra +5 -2
|
|
172 |
|
|
173 |
clip properly in drawPixmap().
|