Magellan Linux

Annotation of /trunk/qt4/patches/qt-4.6.1-kde-qt-b6caee7f97502502e175ff889d717ea1fd3052fa.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 978 - (hide annotations) (download)
Wed Feb 10 11:04:31 2010 UTC (14 years, 4 months ago) by niro
File size: 21210 byte(s)
-kde-qt patch for qt-4.6.1

1 niro 978 diff --git a/README.kde-qt b/README.kde-qt
2     new file mode 100644
3     index 0000000..cbbd970
4     --- /dev/null
5     +++ b/README.kde-qt
6     @@ -0,0 +1,269 @@
7     +This is a patched version of Qt. It may include changes made by KDE
8     +and Qt developers that have either not been accepted for inclusion
9     +into Qt, or have been accepted for a later version of Qt than this
10     +one.
11     +
12     +1. Configuring Qt
13     +=================
14     +
15     +The recommended compile line is:
16     +
17     +--default-config-begin--
18     +
19     + ./configure -qt-gif -debug -fast -no-separate-debug-info \
20     + -system-libpng -system-libjpeg -system-zlib \
21     + -dbus -webkit -plugin-sql-mysql \
22     + -nomake examples -nomake demos -prefix <installdir>
23     +
24     +--default-config-end--
25     +
26     +It contains "-debug", which greatly improves the use for backtraces (but
27     +also needs a lot more disk space and makes things slower). To build in
28     +release mode, replace it with "-release".
29     +
30     +It also contains "-no-separate-debug-info", which disables separate .debug
31     +files. Instead, the debug information will be built into the libraries.
32     +This option is needed when you install Qt.
33     +
34     +If you don't install Qt, it can be useful to disable this option,
35     +thus having separate debug symbol files. With separate debug files, you can
36     +just move those debug files to another directory to remove Qt debug symbols.
37     +Moving the files back will enable Qt debug symbols again.
38     +This is useful if you rarely need to step into Qt functions during debugging,
39     +because GDB loads much faster and uses less memory without Qt debug symbols.
40     +In the rare case you need to step into Qt code, you can temporarily enable
41     +debug symbols again by moving the debug files back. You can even load the Qt
42     +debug symbols from within GDB on demand, using the "symbol-file" command.
43     +
44     +If you are planning to compile Qt using an Icecream cluster you have to
45     +pass the option -no-pch (no precompiled headers) to configure to make
46     +distributed compilation work.
47     +
48     +2. Compiling Qt
49     +===============
50     +
51     +To compile Qt on a Unix platform, run:
52     +
53     + export MAKEFLAGS=-j2
54     + make
55     + make install
56     +
57     +If your computer has more than one core or processor, you may consider
58     +increasing the "2" above. If you've got a compile farm available, you
59     +should adjust the -j argument to match the number of slots in that
60     +farm.
61     +
62     +3. Modifying & rebuilding Qt
63     +============================
64     +
65     +If you make modifications to the Qt source code, you don't need to
66     +build everything again. Simply go to the directory containing the
67     +Makefile closest to the files you changed and run "make" again.
68     +
69     +For example, if you've modified src/corelib/io/qiodevice.cpp, do:
70     +
71     + cd src/corelib
72     + make
73     +
74     +If you make a change that is not temporary, you should create a Git
75     +commit out of it. However, you shouldn't push those changes to
76     +kde-qt.git. If you have a fix that benefit others, see the "Creating
77     +kde-qt.git modifications" section below.
78     +
79     +4. Building Qt examples and demos
80     +=================================
81     +
82     +The "-nomake examples -nomake demos" arguments to the configure script
83     +mean that those two sections will not be configured for building,
84     +which is unneeded for usage of the library. If you want to compile
85     +the examples or demos later, just enter either directory and type:
86     +
87     + qmake
88     + make
89     +
90     +5. Build Qt tests
91     +=================
92     +
93     +(Official information: http://qt.gitorious.org/qt/pages/QtAutotestsEnvironment)
94     +
95     +In order to run Qt tests, you must have a "developer build" of Qt. For
96     +that, you need to reconfigure Qt and add the "-developer-build"
97     +option. That option is technically equivalent to the options:
98     +
99     + -debug -prefix $PWD -DQT_BUILD_INTERNAL
100     +
101     +To run a test, go to its source dir in tests/auto/testname. Type
102     +"make" to build it, then run it (either ./tst_testname, or "make install").
103     +
104     +6. Building Qt documentation
105     +============================
106     +
107     +To build and install the documentation, run:
108     +
109     + make docs
110     + ./config.status
111     + make install
112     +
113     +It is necessary to do this once only, even if you rebuild Qt later.
114     +
115     +7. Using Qt uninstalled
116     +=======================
117     +
118     +To use without having to install it, configure it as follows:
119     +
120     + ./configure <other configure options> -prefix $PWD
121     + make sub-src
122     + make sub-tools
123     +
124     +Attention: DO NOT run
125     +
126     + make install
127     +
128     +If you do, Qt will overwrite your include/ directory with its
129     +installation.
130     +
131     +8. Creating kde-qt.git modifications
132     +====================================
133     +
134     +If you have fixed a bug in Qt or modified it in any way that may
135     +benefit others, please share your change in the form of a patch. Do
136     +not commit your changes directly to the main branch because they
137     +may be lost in a future update if they have not been added to the
138     +official Qt release.
139     +
140     +The exception to the above rule is that if the fix has been accepted
141     +by the Qt developers (and so will appear in the very next release of
142     +Qt), then it should be simply cherry-picked from the Qt development
143     +branch. Note that you shouldn't do this for changes that have been
144     +accepted into a release which is not the very next. In this case, you
145     +should use the following command:
146     +
147     + git cherry-pick -x SHA1_OF_THE_FIX
148     +where SHA1_OF_THE_FIX is the SHA-1 of the commit that you want to
149     +introduce. Then push the change to the server.
150     +
151     +In all other cases, before creating a patch, it is recommended to
152     +contact the Qt developers via a new task in
153     +http://bugreports.qt.nokia.com and explain the situation. There may be
154     +a solution for the problem already or a new direction that should be
155     +accounted for.
156     +
157     +To create a patch, do the following:
158     + a) look at the listing of branches in
159     + http://qt.gitorious.org/+kde-developers/qt/kde-qt/commits/HEAD and
160     + select the next number.
161     +
162     + b) create a new branch out of a clean, released version of Qt, (for
163     + example, 4.5.1), using the number above and a brief description of
164     + your fix. For example:
165     + git checkout -b patches/0180-window-role v4.5.1
166     + You can see the available released versions of Qt with:
167     + git tag
168     +
169     + c) make your changes to the Qt source code and verify that it
170     + compiles, links and works (please run the respective unit tests from
171     + tests/auto in the source tree).
172     +
173     + c) commit your changes to Git, using the "git commit" command. Please
174     + see http://qt.gitorious.org/qt/pages/GitIntroductionWithQt and
175     + http://qt.gitorious.org/qt/pages/QtCodingStyle for information on
176     + how to create commits
177     +
178     + Note that you are allowed to create as many commits as necessary to
179     + accomplish a working change that can be easily reviewed.
180     +
181     + e) merge the change to the patch branch, for example, 4.5.1-patched:
182     + git checkout 4.5.1-patched
183     + git merge patches/0180-window-role
184     +
185     + f) merge the patch branch to master:
186     + git checkout master
187     + git merge 4.5.1-patched
188     +
189     + g) push the changes you made to your branch and to the main server:
190     + git push git@gitorious.org:qt/kde-qt.git master 4.5.1-patched patches/0180-window-role
191     + (Don't forget to list all 3 branch names)
192     +
193     +Don't forget to submit your patch to using the Qt Contribution Model,
194     +along with the long description of the issue found. See
195     +http://qt.gitorious.org/qt/pages/QtContributionGuidelines for
196     +information how. You can submit the branch you've just sent to the
197     +server.
198     +
199     +9. Troubleshooting: Re-configuring and re-compiling
200     +===================================================
201     +
202     +For those updating the source in a directory where Qt has already
203     +been compiled, you may need to run the following commands from the
204     +top directory of your Qt sources:
205     +
206     + find . -name '*.moc' | xargs rm
207     +
208     +Sometimes ./configure will refuse to run. You may need to:
209     + rm .qmake.cache
210     +
211     +If you think you may have run "make install" on an install-less Qt
212     +(srcdir == $QTDIR), run:
213     +
214     + rm -rf include
215     + bin/syncqt
216     +
217     +10. Maintenance: updating kde-qt to a newer Qt version
218     +======================================================
219     +
220     +When a new version of Qt is released, do the following to update the
221     +repository (assuming Qt 4.6.1 is the release you're updating to):
222     +
223     + a) rebase each of the individual patches against this new version.
224     + for branch in patches/*; do
225     + git checkout -b $branch origin/$branch
226     + git rebase v4.6.1
227     + resolve conflicts
228     + done # Note: pseudo-shell, don't try to run this
229     +
230     + If a given branch is no longer valid (it's been applied to this Qt
231     + version), then delete it on the server:
232     + git push origin :$branch
233     +
234     + b) create a new "patched" branch locally, starting on the release tag:
235     + git checkout -b 4.6.1-patched v4.6.1
236     +
237     + c) merge the patch branches and the README branch, one by one. There
238     + should be no conflicts at this stage; if there are, it indicates
239     + one patch conflicts with another.
240     + git merge patches/0997-patch1
241     + git merge patches/0998-patch2
242     + git merge patches/0999-patch3
243     + # etc.
244     + git merge README
245     +
246     + d) overwrite the master branch's contents with the new branch. If the
247     + Git merge strategy "theirs" exist (it doesn't as of Git 1.6), use
248     + it:
249     + git checkout master
250     + git merge -s theirs 4.6.1-patched
251     +
252     + If it doesn't exist, do the equivalent by inverting the point of
253     + view:
254     + git checkout -b tmp 4.6.1-patched
255     + git merge -s ours master
256     + git checkout master
257     + git merge tmp
258     + git branch -d tmp
259     +
260     + Also possible using Git plumbing:
261     + git checkout master
262     + git merge -s ours --no-commit 4.6.1-patched
263     + rm .git/index
264     + git read-tree 4.6.1-patched
265     + git commit
266     +
267     + e) push everything to kde-qt.git, including the new Qt. Note that
268     + the individiual patch branches will require force, because they
269     + have been rebased (that is, the new branch tip is no longer a
270     + direct descendant of the previous tip).
271     +
272     + # Push the individual patch branches with force
273     + git push -f origin patches/0997-patch1 patches/0998-patch2 patches/0999-patch3 etc
274     + # Push the tag, the new patched branch and master
275     + git push v4.6.1 4.6.1-patched master
276     diff --git a/bin/syncqt b/bin/syncqt
277     index 620256e..e2998fd 100755
278     --- a/bin/syncqt
279     +++ b/bin/syncqt
280     @@ -366,9 +366,13 @@ sub fixPaths {
281     $match_dir = $tmp;
282     $i = $slash;
283     }
284     + my $cnt_ofs = 0;
285     + if($match_dir =~ /^[a-zA-Z]:$/) {
286     + $cnt_ofs = 1;
287     + }
288     if($match_dir) {
289     my $after = substr($dir, length($match_dir));
290     - my $count = ($after =~ tr,/,,);
291     + my $count = ($after =~ tr,/,,) - $cnt_ofs;
292     my $dots = "";
293     for(my $i = 0; $i < $count; $i++) {
294     $dots .= "../";
295     diff --git a/configure b/configure
296     index 033f415..09cd81f 100755
297     --- a/configure
298     +++ b/configure
299     @@ -1029,6 +1029,11 @@ while [ "$#" -gt 0 ]; do
300     VAL=`echo $1 | sed 's,-D,,'`
301     fi
302     ;;
303     + -isystem)
304     + VAR="add_isystempath"
305     + shift
306     + VAL="$1"
307     + ;;
308     -I?*|-I)
309     VAR="add_ipath"
310     if [ "$1" = "-I" ]; then
311     @@ -2047,6 +2052,9 @@ while [ "$#" -gt 0 ]; do
312     add_ipath)
313     I_FLAGS="$I_FLAGS -I\"${VAL}\""
314     ;;
315     + add_isystempath)
316     + I_FLAGS="$I_FLAGS -isystem \"${VAL}\""
317     + ;;
318     add_lpath)
319     L_FLAGS="$L_FLAGS -L\"${VAL}\""
320     ;;
321     diff --git a/projects.pro b/projects.pro
322     index d405a5b..7ad3b58 100644
323     --- a/projects.pro
324     +++ b/projects.pro
325     @@ -154,6 +154,9 @@ unix {
326     DEFAULT_QMAKESPEC ~= s,^.*mkspecs/,,g
327     mkspecs.commands += $(DEL_FILE) $(INSTALL_ROOT)$$mkspecs.path/default; $(SYMLINK) $$DEFAULT_QMAKESPEC $(INSTALL_ROOT)$$mkspecs.path/default
328     }
329     +win32 {
330     + mkspecs.files += $$QT_BUILD_TREE/mkspecs/default
331     +}
332     INSTALLS += mkspecs
333    
334     false:macx { #mac install location
335     diff --git a/qmake/property.cpp b/qmake/property.cpp
336     index ea4842a..ac54854 100644
337     --- a/qmake/property.cpp
338     +++ b/qmake/property.cpp
339     @@ -81,29 +81,32 @@ QMakeProperty::keyBase(bool version) const
340     QString
341     QMakeProperty::value(QString v, bool just_check)
342     {
343     + QString ret;
344     if(v == "QT_INSTALL_PREFIX")
345     - return QLibraryInfo::location(QLibraryInfo::PrefixPath);
346     + ret = QLibraryInfo::location(QLibraryInfo::PrefixPath);
347     else if(v == "QT_INSTALL_DATA")
348     - return QLibraryInfo::location(QLibraryInfo::DataPath);
349     + ret = QLibraryInfo::location(QLibraryInfo::DataPath);
350     else if(v == "QT_INSTALL_DOCS")
351     - return QLibraryInfo::location(QLibraryInfo::DocumentationPath);
352     + ret = QLibraryInfo::location(QLibraryInfo::DocumentationPath);
353     else if(v == "QT_INSTALL_HEADERS")
354     - return QLibraryInfo::location(QLibraryInfo::HeadersPath);
355     + ret = QLibraryInfo::location(QLibraryInfo::HeadersPath);
356     else if(v == "QT_INSTALL_LIBS")
357     - return QLibraryInfo::location(QLibraryInfo::LibrariesPath);
358     + ret = QLibraryInfo::location(QLibraryInfo::LibrariesPath);
359     else if(v == "QT_INSTALL_BINS")
360     - return QLibraryInfo::location(QLibraryInfo::BinariesPath);
361     + ret = QLibraryInfo::location(QLibraryInfo::BinariesPath);
362     else if(v == "QT_INSTALL_PLUGINS")
363     - return QLibraryInfo::location(QLibraryInfo::PluginsPath);
364     + ret = QLibraryInfo::location(QLibraryInfo::PluginsPath);
365     else if(v == "QT_INSTALL_TRANSLATIONS")
366     - return QLibraryInfo::location(QLibraryInfo::TranslationsPath);
367     + ret = QLibraryInfo::location(QLibraryInfo::TranslationsPath);
368     else if(v == "QT_INSTALL_CONFIGURATION")
369     - return QLibraryInfo::location(QLibraryInfo::SettingsPath);
370     + ret = QLibraryInfo::location(QLibraryInfo::SettingsPath);
371     else if(v == "QT_INSTALL_EXAMPLES")
372     - return QLibraryInfo::location(QLibraryInfo::ExamplesPath);
373     + ret = QLibraryInfo::location(QLibraryInfo::ExamplesPath);
374     else if(v == "QT_INSTALL_DEMOS")
375     - return QLibraryInfo::location(QLibraryInfo::DemosPath);
376     - else if(v == "QMAKE_MKSPECS")
377     + ret = QLibraryInfo::location(QLibraryInfo::DemosPath);
378     + if(!ret.isEmpty())
379     + return QDir::toNativeSeparators(ret);
380     + if(v == "QMAKE_MKSPECS")
381     return qmake_mkspec_paths().join(Option::target_mode == Option::TARG_WIN_MODE ? ";" : ":");
382     else if(v == "QMAKE_VERSION")
383     return qmake_version();
384     @@ -116,7 +119,7 @@ QMakeProperty::value(QString v, bool just_check)
385     int slash = v.lastIndexOf('/');
386     QVariant var = settings->value(keyBase(slash == -1) + v);
387     bool ok = var.isValid();
388     - QString ret = var.toString();
389     + ret = var.toString();
390     if(!ok) {
391     QString version = qmake_version();
392     if(slash != -1) {
393     diff --git a/src/corelib/kernel/qobject.cpp b/src/corelib/kernel/qobject.cpp
394     index fc6ac33..dae38b0 100644
395     --- a/src/corelib/kernel/qobject.cpp
396     +++ b/src/corelib/kernel/qobject.cpp
397     @@ -1124,8 +1124,16 @@ void QObject::setObjectName(const QString &name)
398     {
399     Q_D(QObject);
400     d->objectName = name;
401     +#if defined(Q_WS_X11)
402     + d->checkWindowRole();
403     +#endif
404     }
405    
406     +#if defined(Q_WS_X11)
407     +void QObjectPrivate::checkWindowRole()
408     +{
409     +}
410     +#endif
411    
412     #ifdef QT3_SUPPORT
413     /*! \internal
414     diff --git a/src/corelib/kernel/qobject_p.h b/src/corelib/kernel/qobject_p.h
415     index 7e7cbf8..5a312d1 100644
416     --- a/src/corelib/kernel/qobject_p.h
417     +++ b/src/corelib/kernel/qobject_p.h
418     @@ -83,7 +83,9 @@ void Q_CORE_EXPORT qt_register_signal_spy_callbacks(const QSignalSpyCallbackSet
419    
420     extern QSignalSpyCallbackSet Q_CORE_EXPORT qt_signal_spy_callback_set;
421    
422     -enum { QObjectPrivateVersion = QT_VERSION };
423     +// add 0x1000000 to mark it as qt-copy version, with possible modifications
424     +// in some Q*Private class
425     +enum { QObjectPrivateVersion = QT_VERSION + 0x1000000 };
426    
427     class Q_CORE_EXPORT QDeclarativeData
428     {
429     @@ -157,6 +159,9 @@ public:
430     void sendPendingChildInsertedEvents();
431     void removePendingChildInsertedEvents(QObject *child);
432     #endif
433     +#if defined(Q_WS_X11)
434     + virtual void checkWindowRole();
435     +#endif
436    
437     static Sender *setCurrentSender(QObject *receiver,
438     Sender *sender);
439     diff --git a/src/gui/kernel/qwidget_p.h b/src/gui/kernel/qwidget_p.h
440     index 98d3001..d3a386b 100644
441     --- a/src/gui/kernel/qwidget_p.h
442     +++ b/src/gui/kernel/qwidget_p.h
443     @@ -691,6 +691,7 @@ public:
444     static QWidget *keyboardGrabber;
445    
446     void setWindowRole();
447     + virtual void checkWindowRole();
448     void sendStartupMessage(const char *message) const;
449     void setNetWmWindowTypes();
450     void x11UpdateIsOpaque();
451     diff --git a/src/gui/kernel/qwidget_x11.cpp b/src/gui/kernel/qwidget_x11.cpp
452     index 87c9885..73600fc 100644
453     --- a/src/gui/kernel/qwidget_x11.cpp
454     +++ b/src/gui/kernel/qwidget_x11.cpp
455     @@ -763,6 +763,11 @@ void QWidgetPrivate::create_sys(WId window, bool initializeWindow, bool destroyO
456     Q_ASSERT(id);
457     XChangeWindowAttributes(dpy, id, CWOverrideRedirect | CWSaveUnder,
458     &wsa);
459     + XClassHint class_hint;
460     + QByteArray appName = qAppName().toLatin1();
461     + class_hint.res_name = appName.data(); // application name
462     + class_hint.res_class = const_cast<char *>(QX11Info::appClass()); // application class
463     + XSetWMProperties(dpy, id, 0, 0, 0, 0, 0, 0, &class_hint);
464     } else if (topLevel && !desktop) { // top-level widget
465     if (!X11->wm_client_leader)
466     create_wm_client_leader();
467     @@ -816,32 +821,40 @@ void QWidgetPrivate::create_sys(WId window, bool initializeWindow, bool destroyO
468     // set EWMH window types
469     setNetWmWindowTypes();
470    
471     + // when we create a toplevel widget, the frame strut should be dirty
472     + data.fstrut_dirty = 1;
473     +
474     + } else {
475     + // non-toplevel widgets don't have a frame, so no need to
476     + // update the strut
477     + data.fstrut_dirty = 0;
478     + }
479     +
480     + if (initializeWindow && (popup || (topLevel && !desktop))) { // properties set on all toplevel windows
481     // set _NET_WM_PID
482     long curr_pid = getpid();
483     XChangeProperty(dpy, id, ATOM(_NET_WM_PID), XA_CARDINAL, 32, PropModeReplace,
484     (unsigned char *) &curr_pid, 1);
485    
486     - // when we create a toplevel widget, the frame strut should be dirty
487     - data.fstrut_dirty = 1;
488    
489     // declare the widget's window role
490     + QByteArray windowRole;
491     if (QTLWExtra *topData = maybeTopData()) {
492     - if (!topData->role.isEmpty()) {
493     - QByteArray windowRole = topData->role.toUtf8();
494     - XChangeProperty(dpy, id,
495     - ATOM(WM_WINDOW_ROLE), XA_STRING, 8, PropModeReplace,
496     - (unsigned char *)windowRole.constData(), windowRole.length());
497     - }
498     + if (!topData->role.isEmpty())
499     + windowRole = topData->role.toUtf8();
500     + }
501     + if (windowRole.isEmpty()) // use object name as a fallback
502     + windowRole = objectName.toUtf8();
503     + if (!windowRole.isEmpty()) {
504     + XChangeProperty(dpy, id,
505     + ATOM(WM_WINDOW_ROLE), XA_STRING, 8, PropModeReplace,
506     + (unsigned char *)windowRole.constData(), windowRole.length());
507     }
508    
509     // set client leader property
510     XChangeProperty(dpy, id, ATOM(WM_CLIENT_LEADER),
511     XA_WINDOW, 32, PropModeReplace,
512     (unsigned char *)&X11->wm_client_leader, 1);
513     - } else {
514     - // non-toplevel widgets don't have a frame, so no need to
515     - // update the strut
516     - data.fstrut_dirty = 0;
517     }
518    
519     if (initializeWindow && q->internalWinId()) {
520     @@ -2919,6 +2932,17 @@ void QWidgetPrivate::setWindowRole()
521     (unsigned char *)windowRole.constData(), windowRole.length());
522     }
523    
524     +void QWidgetPrivate::checkWindowRole()
525     +{
526     + Q_Q(QWidget);
527     + if( !q->windowRole().isEmpty() || !q->internalWinId())
528     + return;
529     + QByteArray windowRole = objectName.toUtf8(); // use as a fallback
530     + XChangeProperty(X11->display, q->internalWinId(),
531     + ATOM(WM_WINDOW_ROLE), XA_STRING, 8, PropModeReplace,
532     + (unsigned char *)windowRole.constData(), windowRole.length());
533     +}
534     +
535     Q_GLOBAL_STATIC(QX11PaintEngine, qt_widget_paintengine)
536     QPaintEngine *QWidget::paintEngine() const
537     {
538     diff --git a/src/gui/widgets/qtabbar.cpp b/src/gui/widgets/qtabbar.cpp
539     index 9f03ff6..a9e4974 100644
540     --- a/src/gui/widgets/qtabbar.cpp
541     +++ b/src/gui/widgets/qtabbar.cpp
542     @@ -678,8 +678,8 @@ void QTabBarPrivate::refresh()
543     layoutTabs();
544     makeVisible(currentIndex);
545     q->update();
546     - q->updateGeometry();
547     }
548     + q->updateGeometry();
549     }
550    
551     /*!
552     diff --git a/src/tools/moc/main.cpp b/src/tools/moc/main.cpp
553     index 8e033b7..b5b2edd 100644
554     --- a/src/tools/moc/main.cpp
555     +++ b/src/tools/moc/main.cpp
556     @@ -94,7 +94,13 @@ static QByteArray combinePath(const char *infile, const char *outfile)
557     inSplitted.prepend(QLatin1String(".."));
558     }
559     inSplitted.append(inFileInfo.fileName());
560     +#ifdef Q_WS_WIN
561     + const QString rel = inSplitted.join(QLatin1String("/"));
562     + const QString abs = inFileInfo.absoluteFilePath();
563     + return QFile::encodeName(rel.length() < abs.length() ? rel : abs);
564     +#else
565     return QFile::encodeName(inSplitted.join(QLatin1String("/")));
566     +#endif
567     }
568    
569