summaryrefslogtreecommitdiffstats
path: root/dist/changes-1.39-19980611
blob: d99b6363cd7f9d3834b37a378320e571b7fb0e98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
doc/binary.doc    1.2  warwick  +23 -26

  Include margins into header graphic


doc/examples.doc    2.15  agulbra  +19 -2
examples/dirview/dirview.cpp    1.8  agulbra  +2 -2
src/widgets/qlistview.cpp    2.112  agulbra  +163 -28
src/widgets/qlistview.h    2.49  agulbra  +4 -4

  rename children() to childCount()
  add two images to the docs
  update dirview and add it to the docs


src/dialogs/qfiledlg.cpp    2.68  hanord  +8 -12

  Rewrote setFilter to use QString and mid() - simpler code.
  Borland C++ complained about modifying const char *.


src/dialogs/qfiledlg.cpp    2.69  agulbra  +9 -7
src/dialogs/qmsgbox.cpp    2.48  agulbra  +3 -1
src/dialogs/qprndlg.cpp    2.26  agulbra  +213 -2
src/widgets/qwidgetstack.cpp    2.6  agulbra  +8 -3

  Call setPalettePropagation() and setFontPropagation() in the
  initialization.  Note that QWidgetStack now defaults to use
  AllChildren.


src/dialogs/qmsgbox.cpp    2.47  hanord  +3 -3

  icon widget gets widget name "icon" (previously none)
  buttons get widget names button1, button2 (previously space before number)


src/dialogs/qprndlg.cpp    2.24  agulbra  +163 -7

  parse /etc/lp/member and /etc/printers.conf.  we still probably don't
  detect the printers on irix and digital unix (except through sheer
  good luck - I suppose there is a chance that digital or sgi might
  choose to be compatible with something).


src/dialogs/qprndlg.cpp    2.25  agulbra  +10 -10

  one more minor cleanup.
  
  looks like the code we have works on both irix and digital unix.


src/kernel/qapp_win.cpp    2.88  hanord  +2 -3

  Posted event fix


src/kernel/qapp_win.cpp    2.89  agulbra  +2 -2
src/kernel/qapp_x11.cpp    2.138  agulbra  +3 -3

  don't delete events destined for other objects in target-specific
  sendPostedEvents()


src/kernel/qasyncimageio.cpp    1.33  warwick  +42 -42
src/kernel/qasyncimageio.h    1.17  warwick  +15 -15

  New names.


src/kernel/qdnd_x11.cpp    2.14  agulbra  +8 -5
src/kernel/qdragobject.cpp    2.14  agulbra  +21 -9

  right cursor


src/kernel/qdnd_x11.cpp    2.15  agulbra  +6 -9

  comment out old debug messages; delete some


src/kernel/qdragobject.cpp    2.15  agulbra  +4 -6

  ignore totally unexpected events


src/kernel/qfnt_win.cpp    2.28  agulbra  +4 -4
src/kernel/qfont.cpp    2.34  agulbra  +2 -4

  be slightly more robust about setting the character encoding to the
  defFont's.


src/kernel/qfont.cpp    2.31  agulbra  +115 -63

  overhauled class documentation; man function descriptions probably
  also need an overhaul.


src/kernel/qfont.cpp    2.32  agulbra  +56 -65

  fixed some typos; removed some misleading text from the function
  descriptions.


src/kernel/qgmanagr.cpp    2.34  paul  +22 -66

  Rolled back "empty layout" change, since it broke existing code.


src/kernel/qiconset.cpp    2.9  paul  +16 -8

  Handle mask better when generating disabled pixmaps


src/kernel/qprn_x11.cpp    2.14  agulbra  +12 -1

  if the application hasn't specified a non-default print program, try
  HARD to find a decent lpr or lp.


src/kernel/qpsprn.cpp    2.25  agulbra  +12 -7

  discussed the "sometimes cannot print to /usr/bin/lpr even though
  every other program works perfectly" bug with the code.
  
  also shrunk the output by a few bytes by removing extraneous newlines
  and one comment.


src/tools/qdatetm.cpp    2.14  agulbra  +19 -5

  QDateTime::addSecs() used to not work across midnight or backwards.


src/tools/qglobal.h    2.51  agulbra  +4 -2

  detect unixware 7; detect bool on more irix stuff


src/widgets/qbttngrp.cpp    2.12  agulbra  +5 -1

  mention the existence of set*Propagation()


src/widgets/qbutton.cpp    2.60  agulbra  +16 -17
src/widgets/qbutton.h    2.16  agulbra  +3 -2

  make setDown() public; this breaks binary compatibility on MSVC++
  
  The way to start a context menu on press used to be to make a
  synthetic QMouseEvent indicating a release, and sendEvent() that.
  not terribly nice.


src/widgets/qheader.cpp    2.41  paul  +6 -1

  Fix "Index out of range" bug.


src/widgets/qlined.cpp    2.78  agulbra  +3 -6

  when pasting multi-line stuff, fold to one line.


src/widgets/qlined.cpp    2.79  paul  +2 -2

  Fix "index out of range" bug when typing past maxLength.


src/widgets/qpopmenu.cpp    2.75  aavit  +2 -2

  minimal improvement of checkmark look in windows style.


src/widgets/qsplitter.cpp    1.13  agulbra  +12 -12

  more doc; mention setFixed()


src/widgets/qtoolbar.cpp    2.21  agulbra  +46 -12

  paint a tool bar handle in motif style too


src/widgets/qtoolbar.cpp    2.22  paul  +3 -2

  Don't override max/min sizes for children


src/widgets/qtoolbutton.cpp    2.27  agulbra  +24 -22

  handle text label correctly; check for null pointer; minor doc
  improvements