-rw-r--r-- | qt/qt-2.3.10.patch/qtabbar.patch | 39 | ||||
-rw-r--r-- | qt/qt-2.3.10.patch/qte-2.3.10-all.patch | 63 |
2 files changed, 88 insertions, 14 deletions
diff --git a/qt/qt-2.3.10.patch/qtabbar.patch b/qt/qt-2.3.10.patch/qtabbar.patch new file mode 100644 index 0000000..6940ec9 --- a/dev/null +++ b/qt/qt-2.3.10.patch/qtabbar.patch | |||
@@ -0,0 +1,39 @@ | |||
1 | |||
2 | # | ||
3 | # Patch managed by http://www.holgerschurig.de/patcher.html | ||
4 | # | ||
5 | |||
6 | --- qt-2.3.10/src/widgets/qtabbar.cpp~qtabbar | ||
7 | +++ qt-2.3.10/src/widgets/qtabbar.cpp | ||
8 | @@ -260,7 +260,6 @@ | ||
9 | lstatic->insert( index, newTab ); | ||
10 | |||
11 | layoutTabs(); | ||
12 | - updateArrowButtons(); | ||
13 | makeVisible( tab( currentTab() ) ); | ||
14 | |||
15 | #ifndef QT_NO_ACCEL | ||
16 | @@ -282,7 +281,6 @@ | ||
17 | l->remove( t ); | ||
18 | lstatic->remove( t ); | ||
19 | layoutTabs(); | ||
20 | - updateArrowButtons(); | ||
21 | makeVisible( tab( currentTab() ) ); | ||
22 | update(); | ||
23 | } | ||
24 | @@ -887,6 +885,7 @@ | ||
25 | } | ||
26 | for ( t = lstatic->first(); t; t = lstatic->next() ) | ||
27 | t->r.setHeight( r.height() ); | ||
28 | + updateArrowButtons(); | ||
29 | } | ||
30 | |||
31 | /*! | ||
32 | @@ -977,7 +976,6 @@ | ||
33 | d->leftB->setGeometry( width() - 2*arrowWidth, 0, arrowWidth, height() ); | ||
34 | #endif | ||
35 | layoutTabs(); | ||
36 | - updateArrowButtons(); | ||
37 | makeVisible( tab( currentTab() )); | ||
38 | } | ||
39 | |||
diff --git a/qt/qt-2.3.10.patch/qte-2.3.10-all.patch b/qt/qt-2.3.10.patch/qte-2.3.10-all.patch index ab52716..24bac51 100644 --- a/qt/qt-2.3.10.patch/qte-2.3.10-all.patch +++ b/qt/qt-2.3.10.patch/qte-2.3.10-all.patch | |||
@@ -34,9 +34,9 @@ Index: qt-2.3.10/src/iconview/qiconview.cpp | |||
34 | d->fm = 0; | 34 | d->fm = 0; |
35 | #ifndef QT_NO_TOOLTIP | 35 | #ifndef QT_NO_TOOLTIP |
36 | @@ -2882,6 +2886,48 @@ | 36 | @@ -2882,6 +2886,48 @@ |
37 | } | 37 | } |
38 | 38 | ||
39 | /*! | 39 | /*! |
40 | + This function grabs all paintevents that otherwise would have been | 40 | + This function grabs all paintevents that otherwise would have been |
41 | + processed by the QScrollView::viewportPaintEvent(). Here we use a | 41 | + processed by the QScrollView::viewportPaintEvent(). Here we use a |
42 | + doublebuffer to reduce 'on-paint' flickering on QIconView | 42 | + doublebuffer to reduce 'on-paint' flickering on QIconView |
@@ -80,9 +80,9 @@ Index: qt-2.3.10/src/iconview/qiconview.cpp | |||
80 | +/*! | 80 | +/*! |
81 | + | 81 | + |
82 | \reimp | 82 | \reimp |
83 | */ | 83 | */ |
84 | 84 | ||
85 | @@ -4939,7 +4985,7 @@ | 85 | @@ -4939,7 +4985,7 @@ |
86 | if ( !d->rubber ) | 86 | if ( !d->rubber ) |
87 | drawDragShapes( d->oldDragPos ); | 87 | drawDragShapes( d->oldDragPos ); |
88 | } | 88 | } |
@@ -92,9 +92,9 @@ Index: qt-2.3.10/src/iconview/qiconview.cpp | |||
92 | if ( !d->rubber ) | 92 | if ( !d->rubber ) |
93 | drawDragShapes( d->oldDragPos ); | 93 | drawDragShapes( d->oldDragPos ); |
94 | @@ -5377,11 +5423,19 @@ | 94 | @@ -5377,11 +5423,19 @@ |
95 | return; | 95 | return; |
96 | 96 | ||
97 | if ( item->d->container1 && d->firstContainer ) { | 97 | if ( item->d->container1 && d->firstContainer ) { |
98 | -item->d->container1->items.removeRef( item ); | 98 | -item->d->container1->items.removeRef( item ); |
99 | + //Special-case checking of the last item, since this may be | 99 | + //Special-case checking of the last item, since this may be |
100 | + //called a few times for the same item. | 100 | + //called a few times for the same item. |
@@ -111,17 +111,17 @@ Index: qt-2.3.10/src/iconview/qiconview.cpp | |||
111 | + else | 111 | + else |
112 | + item->d->container2->items.removeRef( item ); | 112 | + item->d->container2->items.removeRef( item ); |
113 | } | 113 | } |
114 | item->d->container2 = 0; | 114 | item->d->container2 = 0; |
115 | 115 | ||
116 | Index: qt-2.3.10/src/iconview/qiconview.h | 116 | Index: qt-2.3.10/src/iconview/qiconview.h |
117 | =================================================================== | 117 | =================================================================== |
118 | --- qt-2.3.10.orig/src/iconview/qiconview.h2005-02-24 21:09:53.060675971 +0100 | 118 | --- qt-2.3.10.orig/src/iconview/qiconview.h2005-02-24 21:09:53.060675971 +0100 |
119 | +++ qt-2.3.10/src/iconview/qiconview.h2005-02-24 21:10:04.602019959 +0100 | 119 | +++ qt-2.3.10/src/iconview/qiconview.h2005-02-24 21:10:04.602019959 +0100 |
120 | @@ -444,6 +444,7 @@ | 120 | @@ -444,6 +444,7 @@ |
121 | virtual void contentsDropEvent( QDropEvent *e ); | 121 | virtual void contentsDropEvent( QDropEvent *e ); |
122 | #endif | 122 | #endif |
123 | 123 | ||
124 | + void bufferedPaintEvent( QPaintEvent* ); | 124 | + void bufferedPaintEvent( QPaintEvent* ); |
125 | virtual void resizeEvent( QResizeEvent* e ); | 125 | virtual void resizeEvent( QResizeEvent* e ); |
126 | virtual void keyPressEvent( QKeyEvent *e ); | 126 | virtual void keyPressEvent( QKeyEvent *e ); |
127 | virtual void focusInEvent( QFocusEvent *e ); | 127 | virtual void focusInEvent( QFocusEvent *e ); |
@@ -131,9 +131,9 @@ Index: qt-2.3.10/src/kernel/qgfxraster_qws.cpp | |||
131 | +++ qt-2.3.10/src/kernel/qgfxraster_qws.cpp2005-02-24 21:10:02.521320506 +0100 | 131 | +++ qt-2.3.10/src/kernel/qgfxraster_qws.cpp2005-02-24 21:10:02.521320506 +0100 |
132 | @@ -4037,13 +4037,14 @@ | 132 | @@ -4037,13 +4037,14 @@ |
133 | for( loopc2=0;loopc2<frontadd;loopc2++ ) | 133 | for( loopc2=0;loopc2<frontadd;loopc2++ ) |
134 | *(alphaptr++)=get_value_32(16,(unsigned char **)&temppos); | 134 | *(alphaptr++)=get_value_32(16,(unsigned char **)&temppos); |
135 | 135 | ||
136 | -PackType temp2; | 136 | -PackType temp2; |
137 | -unsigned char * cp; | 137 | -unsigned char * cp; |
138 | +volatile PackType temp2; | 138 | +volatile PackType temp2; |
139 | +volatile unsigned short int * cp; | 139 | +volatile unsigned short int * cp; |
@@ -148,17 +148,17 @@ Index: qt-2.3.10/src/kernel/qgfxraster_qws.cpp | |||
148 | + cp++; | 148 | + cp++; |
149 | + *(alphaptr++)=qt_conv16ToRgb(*cp); | 149 | + *(alphaptr++)=qt_conv16ToRgb(*cp); |
150 | temppos += 2; | 150 | temppos += 2; |
151 | } | 151 | } |
152 | 152 | ||
153 | Index: qt-2.3.10/src/kernel/qwindowsystem_qws.cpp | 153 | Index: qt-2.3.10/src/kernel/qwindowsystem_qws.cpp |
154 | =================================================================== | 154 | =================================================================== |
155 | --- qt-2.3.10.orig/src/kernel/qwindowsystem_qws.cpp2005-02-24 21:09:53.891557664 +0100 | 155 | --- qt-2.3.10.orig/src/kernel/qwindowsystem_qws.cpp2005-02-24 21:09:53.891557664 +0100 |
156 | +++ qt-2.3.10/src/kernel/qwindowsystem_qws.cpp2005-02-24 21:10:03.511177634 +0100 | 156 | +++ qt-2.3.10/src/kernel/qwindowsystem_qws.cpp2005-02-24 21:10:03.511177634 +0100 |
157 | @@ -918,6 +918,18 @@ | 157 | @@ -918,6 +918,18 @@ |
158 | { | 158 | { |
159 | } | 159 | } |
160 | 160 | ||
161 | +static void catchSegvSignal( int ) | 161 | +static void catchSegvSignal( int ) |
162 | +{ | 162 | +{ |
163 | +#ifndef QT_NO_QWS_KEYBOARD | 163 | +#ifndef QT_NO_QWS_KEYBOARD |
164 | + if ( qwsServer ) | 164 | + if ( qwsServer ) |
@@ -174,9 +174,9 @@ Index: qt-2.3.10/src/kernel/qwindowsystem_qws.cpp | |||
174 | \class QWSServer qwindowsystem_qws.h | 174 | \class QWSServer qwindowsystem_qws.h |
175 | \brief Server-specific functionality in Qt/Embedded | 175 | \brief Server-specific functionality in Qt/Embedded |
176 | @@ -1043,6 +1055,7 @@ | 176 | @@ -1043,6 +1055,7 @@ |
177 | } | 177 | } |
178 | 178 | ||
179 | signal(SIGPIPE, ignoreSignal); //we get it when we read | 179 | signal(SIGPIPE, ignoreSignal); //we get it when we read |
180 | + signal(SIGSEGV, catchSegvSignal); //recover the keyboard on crash | 180 | + signal(SIGSEGV, catchSegvSignal); //recover the keyboard on crash |
181 | #endif | 181 | #endif |
182 | focusw = 0; | 182 | focusw = 0; |
@@ -190,9 +190,9 @@ Index: qt-2.3.10/src/kernel/qwsdecoration_qws.h | |||
190 | TopLeft=7, TopRight=8, BottomLeft=9, BottomRight=10, | 190 | TopLeft=7, TopRight=8, BottomLeft=9, BottomRight=10, |
191 | Close=11, Minimize=12, Maximize=13, Normalize=14, | 191 | Close=11, Minimize=12, Maximize=13, Normalize=14, |
192 | - Menu=15, LastRegion=Menu }; | 192 | - Menu=15, LastRegion=Menu }; |
193 | + Menu=15, LastRegion=Menu, UserDefined = 100 }; | 193 | + Menu=15, LastRegion=Menu, UserDefined = 100 }; |
194 | 194 | ||
195 | virtual QRegion region(const QWidget *, const QRect &rect, Region r=All) = 0; | 195 | virtual QRegion region(const QWidget *, const QRect &rect, Region r=All) = 0; |
196 | virtual void close( QWidget * ); | 196 | virtual void close( QWidget * ); |
197 | Index: qt-2.3.10/src/tools/qcstring.h | 197 | Index: qt-2.3.10/src/tools/qcstring.h |
198 | =================================================================== | 198 | =================================================================== |
@@ -200,12 +200,12 @@ Index: qt-2.3.10/src/tools/qcstring.h | |||
200 | +++ qt-2.3.10/src/tools/qcstring.h2005-02-24 21:10:03.026247674 +0100 | 200 | +++ qt-2.3.10/src/tools/qcstring.h2005-02-24 21:10:03.026247674 +0100 |
201 | @@ -119,7 +119,7 @@ | 201 | @@ -119,7 +119,7 @@ |
202 | // We want to keep source compatibility for 2.x | 202 | // We want to keep source compatibility for 2.x |
203 | // ### TODO for 4.0: completely remove these and the cstr* functions | 203 | // ### TODO for 4.0: completely remove these and the cstr* functions |
204 | 204 | ||
205 | -#if !defined(QT_GENUINE_STR) | 205 | -#if !defined(QT_GENUINE_STR) |
206 | +#if 0 | 206 | +#if 0 |
207 | 207 | ||
208 | #undefstrlen | 208 | #undefstrlen |
209 | #define strlen qstrlen | 209 | #define strlen qstrlen |
210 | Index: qt-2.3.10/src/tools/qstring.cpp | 210 | Index: qt-2.3.10/src/tools/qstring.cpp |
211 | =================================================================== | 211 | =================================================================== |
@@ -256,17 +256,17 @@ Index: qt-2.3.10/src/widgets/qlistview.cpp | |||
256 | --- qt-2.3.10.orig/src/widgets/qlistview.cpp2005-02-24 21:09:53.868560939 +0100 | 256 | --- qt-2.3.10.orig/src/widgets/qlistview.cpp2005-02-24 21:09:53.868560939 +0100 |
257 | +++ qt-2.3.10/src/widgets/qlistview.cpp2005-02-24 21:10:03.500179222 +0100 | 257 | +++ qt-2.3.10/src/widgets/qlistview.cpp2005-02-24 21:10:03.500179222 +0100 |
258 | @@ -5051,9 +5051,9 @@ | 258 | @@ -5051,9 +5051,9 @@ |
259 | l = l->childItem ? l->childItem : l->siblingItem; | 259 | l = l->childItem ? l->childItem : l->siblingItem; |
260 | 260 | ||
261 | if ( l && l->height() ) | 261 | if ( l && l->height() ) |
262 | -s.setHeight( s.height() + 10 * l->height() ); | 262 | -s.setHeight( s.height() + 10 * l->height() ); |
263 | - else | 263 | - else |
264 | -s.setHeight( s.height() + 140 ); | 264 | -s.setHeight( s.height() + 140 ); |
265 | +s.setHeight( s.height() + 4 /*10*/ * l->height() ); | 265 | +s.setHeight( s.height() + 4 /*10*/ * l->height() ); |
266 | + else // ^v much too big for handhelds | 266 | + else // ^v much too big for handhelds |
267 | +s.setHeight( s.height() + 30 /*140*/ ); | 267 | +s.setHeight( s.height() + 30 /*140*/ ); |
268 | 268 | ||
269 | if ( s.width() > s.height() * 3 ) | 269 | if ( s.width() > s.height() * 3 ) |
270 | s.setHeight( s.width() / 3 ); | 270 | s.setHeight( s.width() / 3 ); |
271 | Index: qt-2.3.10/src/widgets/qtoolbutton.cpp | 271 | Index: qt-2.3.10/src/widgets/qtoolbutton.cpp |
272 | =================================================================== | 272 | =================================================================== |
@@ -289,4 +289,39 @@ Index: qt-2.3.10/src/widgets/qtoolbutton.cpp | |||
289 | +w = h = 14; | 289 | +w = h = 14; |
290 | QPixmap pm = iconSet(TRUE).pixmap(QIconSet::Small, QIconSet::Normal); | 290 | QPixmap pm = iconSet(TRUE).pixmap(QIconSet::Small, QIconSet::Normal); |
291 | w = pm.width(); | 291 | w = pm.width(); |
292 | h = pm.height(); | 292 | h = pm.height(); |
293 | Index: qt-2.3.10/src/widgets/qtabbar.cpp | ||
294 | =================================================================== | ||
295 | --- qt-2.3.10.orig/src/widgets/qtabbar.cpp2005-02-27 18:07:41.000000000 -0600 | ||
296 | +++ qt-2.3.10/src/widgets/qtabbar.cpp2005-02-28 11:16:56.444377440 -0600 | ||
297 | @@ -260,7 +260,6 @@ | ||
298 | lstatic->insert( index, newTab ); | ||
299 | |||
300 | layoutTabs(); | ||
301 | - updateArrowButtons(); | ||
302 | makeVisible( tab( currentTab() ) ); | ||
303 | |||
304 | #ifndef QT_NO_ACCEL | ||
305 | @@ -282,7 +281,6 @@ | ||
306 | l->remove( t ); | ||
307 | lstatic->remove( t ); | ||
308 | layoutTabs(); | ||
309 | - updateArrowButtons(); | ||
310 | makeVisible( tab( currentTab() ) ); | ||
311 | update(); | ||
312 | } | ||
313 | @@ -887,6 +885,7 @@ | ||
314 | } | ||
315 | for ( t = lstatic->first(); t; t = lstatic->next() ) | ||
316 | t->r.setHeight( r.height() ); | ||
317 | + updateArrowButtons(); | ||
318 | } | ||
319 | |||
320 | /*! | ||
321 | @@ -977,7 +976,6 @@ | ||
322 | d->leftB->setGeometry( width() - 2*arrowWidth, 0, arrowWidth, height() ); | ||
323 | #endif | ||
324 | layoutTabs(); | ||
325 | - updateArrowButtons(); | ||
326 | makeVisible( tab( currentTab() )); | ||
327 | } | ||