aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/global.h.in
Commit message (Collapse)AuthorAgeFilesLines
* huge change on project layout.Christian Tismer2015-09-211-446/+0
| | | | | | | | | | | The intention is to have PySide2 and Shiboken2 as project names, to allow for co-existence of PySide and PySide2. This is the first version that builds with these settings on OS X: $ python3 setup.py build --debug --no-examples --ignore-git --qmake=/usr/local/Cellar/qt5/5.5.0/bin/qmake --jobs=9 This is not yet tested.
* fix again some variables which have been renamed in Qt5.Christian Tismer2015-08-141-3/+3
| | | | This influences the windows build quite a bit!
* support QtConcurrent, in order to do nothing more than QtCore did before.Christian Tismer2015-07-251-0/+1
| | | | Not working, yet. I hope not to open a can of worms...
* add QtPrintSupport. This has been part of QtGui and is now revived.Christian Tismer2015-07-241-1/+2
|
* start the splitting into QtWebKit and QtWebKitWidgetsChristian Tismer2015-07-241-0/+4
|
* fix naming problem with QtWebKitChristian Tismer2015-07-161-2/+1
| | | | | | | | | | This was a tricky bug concerning CamelCase and cmake-caching. cmake has the habit of remembering the case of variables as they have been used in a script. The bad effect is that when a wrong case is tried once, cmake remembers this and no longer finds the variable with the correct case! I was about to report a bug, when I finally found the cache file.
* better macro names, support QtXmlPatterns.Christian Tismer2015-07-151-0/+1
| | | | | | | | | | | | | | | | | QtOpenGL is also started, but takes more time. Currently compiling modules: QtCore QtGui QtWidgets QtSvg QtSql QtNetwork QtXml QtXmlPatterns QtTest QtWebKit
* make QtWebKit compile. See Note!!Christian Tismer2015-07-151-1/+2
| | | | | | | | | Note: This is a bad example of a Qt5 bug that must be reported. QtWebKit is not consequent in naming its variables, which causes real problems. QtWebkit_FOUND, but QtWebKit_INCLUDE_DIRS watch the case of the 'kK'
* move the find_package() calls *before* the preparation of include files.Christian Tismer2015-07-101-4/+4
| | | | | | This struck me, after I did not understand why certain variables from globals.h.in seemed not to work. Now it is clear how it works: The variables are set in the find_package() call, and then are spliced into the include files by configure_file().
* remove Qt5 magic from global.h.in that was removed from Qt4 as well. (from ↵Christian Tismer2015-07-051-133/+1
| | | | qobjectdefs.h)
* Removed the Q_QDOC definition, this is no more correct in Qt5. lots of ↵Christian Tismer2015-06-171-2/+2
| | | | progress with compiling QtCore, 95 % builds now.
* this was a small change in the headers (from qdoc to Q_QDOC) that had a huge ↵Christian Tismer2015-06-171-2/+2
| | | | effect, getting closer to a build
* still hacking on the basics: QObject was changed - the worst possible ↵Christian Tismer2015-06-171-0/+4
| | | | | | | | condition for my tasks :-( I will anyway try to keep to the schedule, and work on the things with the biggest impact. Actually that means: Ignore the incompatible signal layout and simply give a message. We need time to do this right -- any short-thinking attempt is a bad idea.
* trying to create new headers. (crashing right now)Christian Tismer2015-06-161-38/+240
|
* try to compile as much as possible, remove phonon, edit many files.Christian Tismer2015-06-131-60/+6
| | | | | | | Right now, the compiling/breaking ratio on QtCore looks like 50%. There are a couple of errors which seem to repeat all the time. This is still work in progress, takes many hours and will hopefully result in a build, tomorrow.
* revert to the include structure before the below checkinChristian Tismer2015-06-131-15/+15
| | | | | | | | | | | | | Commit: 82335c46141201269abadf3fc05943c122ffb59e [82335c4] Parents: c1f05a0624 Author: Hugo Parente Lima <hugo.pl@gmail.com> Date: 13. Mai 2011 00:05:44 MESZ Commit Date: 8. März 2012 20:54:22 MEZ Always use the local Qt headers + global.h.in cleanup. Reviewer: Lauro Moura <lauro.neto@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* finishing this explorative branch with success.Christian Tismer2015-06-131-5/+5
| | | | | | | | | The problem with missing wrappers was in global.h.in . This file was changed to use "@QT_QTXXX_INCLUDE_DIR@/xxx.h" macros all the time instead of using <QtXXX/xxx.h> . The new Qt5XXX_INCLUDE_DIRS variables can not simply be used, because they are lists of folders. I cannot find the reason for this change, but will revert this, in the hope that the new include structure of Qt5 is better than Qt4's.
* Replaced Nokia copyrights and contact detailsTeemu Kaukoranta2013-05-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replaced Nokia copyrights with correct Digia copyrights. Text in front of copyright is now retained: ** File is part of Foo, Copyright Nokia... -> ** File is part of Foo, Copyright Digia... Replaced Nokia contact details with Digia's. Removing "All Rights Reserved" no longer leaves an empty line. Used the following command: find . -path '*/3rdparty/*' -prune -o -exec grep -ilI -E '.*Copyright.*Nokia.*|.*Contact.*' {} \; | tee >(xargs sed -i -r '1,50 { /INdT|copy[a-z]*[ ]*=/ !{ s/(^[ \t:#*]*)([a-z ]*) (Copyright.*Nokia.*)/ \1\2Copyright \(C\) 2013 Digia Plc and\/or its subsidiary\(-ies\)\./I }}') >(xargs sed -i -r '1,50 s/(^[ \t:#*]*)(.*info@qt\.nokia\.com.* |.*INSERT EMAIL ADDRESS.*|.*qt-info@nokia\.com.* |.*qt-label1@nokia\.com.*|.*http:\/\/qt\.nokia\.com\/contact.* |.*qt-sales@nokia\.com.*|.*http:\/\/www\.qt-project\.org\/.*)/ \1Contact: http:\/\/www\.qt-project\.org\/legal/I') >(xargs sed -i -r '1,50{/(^[ \t:#*]*)(all rights reserved.*)/Id}') Command now finds command details that point to qt-project.org and changes them to qt-project.org/legal Also no longer wrongly replaces code snippet "copyright = ..". Need to fix these case-by-case later. Change-Id: I4456c00202c4a2264a400bdc18c19cd097876861 Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
* Implemented support to MSG type on windows.Renato Filho2012-03-081-0/+1
|
* Always use the local Qt headers + global.h.in cleanup.Hugo Parente Lima2012-03-081-1137/+55
| | | | | Reviewer: Lauro Moura <lauro.neto@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed QSysInfo.Endian enum detection on MacOs.Renato Filho2012-03-081-0/+1
| | | | | | | Fixes bug #809. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Included QMacStyle class check.Renato Filho2012-03-081-0/+2
| | | | | | | | | Included QMacStyle header on global include. Fixes bug #840 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Implemented QTestTouch functions.Renato Filho2012-03-081-1/+2
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fix bug#623 - "QGLWidget.bindTexture(QPixmap, GLenum, GLenum) is missing"Hugo Parente Lima2012-03-081-0/+1
|
* Added missing classes.renatofilho2010-09-291-0/+2
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Change the license boiler plates of all LGPL files removing the special ↵Hugo Parente Lima2010-09-091-19/+0
| | | | exception.
* Fix bug#125 - "QAbstractTextDocumentLayout.registerHandler apparently not ↵Hugo Parente Lima2010-09-021-0/+1
| | | | | | | | | | working" Added class QPyTextObject which inherits from QObject and QTextObjectInterface to solve the issue with registerHandler, the same approach used by PyQt. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fixed generated global.h.Renato Filho2010-09-011-3/+3
|
* Use Cmake detected vars to generete global.h file.Renato Filho2010-09-011-3/+3
| | | | | | | | | | | This make PySide independent of Qt Macros in some cases these macros return invalid value because the module can be compiled separated from Qt. Fixes bug #326. Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Lauro Neto <lauro.neto@openbossa.org>
* Fixed Mac OS buildRenato Filho2010-08-261-0/+2
| | | | | | | | | Fix parser of QApplication header. Fixes bug #318 Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Add Qt Simulator supportAnderson Lizardo2010-08-261-0/+2
| | | | | Reviewed-by: Luciano Wolf <luciano.wolf@openbossa.org> Reviewed-by: Hugo Parente Lima <hugo.lima@openbossa.org>
* Fixed typestyste to windows.Renato Filho2010-08-201-1/+1
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Initial bindings for QtDeclarative module.Hugo Parente Lima2010-05-241-0/+1
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Implemented SO detection support.Renato Filho2010-05-191-0/+1506
Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>