aboutsummaryrefslogtreecommitdiffstats
path: root/PySide
Commit message (Collapse)AuthorAgeFilesLines
* make QtWidgets compile.Christian Tismer2015-07-213-163/+75
| | | | | | | Actually, two methods from QGraphicsScene stuff don't compile (see cmake file). This looks like a shiboken bug, but it is not clear why this ever worked. Anyway, I consider pyside2 far enough to start the debugging phase.
* fix the matrix handling of QtGui.Christian Tismer2015-07-203-77/+90
| | | | | | | This was pretty hairy for me, but finally I found a solution this timer. See comment on "HAIRY TRICK" in typesystem_gui_common.xml Took more than half the day to figure this out.
* getting closer to completion of QtWidgetsChristian Tismer2015-07-207-70/+33
|
* remove the shiboken wrapper from QtCore and QtGui, because everything builds ↵Christian Tismer2015-07-192-88/+2
| | | | now.
* make all of QtGui compile.Christian Tismer2015-07-193-75/+29
|
* fix QtUiTools by switching dependency to QtWidgetsChristian Tismer2015-07-191-1/+1
|
* fix QtHelp typesystem hierarchy (gui -> widgets)Christian Tismer2015-07-161-1/+1
|
* add a comment about QtMultimedia and stop hacking.Christian Tismer2015-07-161-1/+1
| | | | | QtMultimedia crashes shiboken, as soon as the type 'QAbstractVideoBuffer' is touched. Should be fixed when there is time ...
* support QtMultimedia. Crashes shiboken.Christian Tismer2015-07-163-12/+17
| | | | No idea what makes shiboken crash. I had to comment this module out.
* fix naming problem with QtWebKitChristian Tismer2015-07-162-10/+5
| | | | | | | | | | 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.
* fix QtHelp in connection with pyside-setup ↵Christian Tismer2015-07-161-2/+6
| | | | 5acd8ae260af22950024dd40f2e65da253cb6e26
* support plugins (to a cerain limit), Designer, UiTools, Scripts, ↵Christian Tismer2015-07-167-50/+71
| | | | Declarative. A few do not work.
* drop support for QtOpenGLChristian Tismer2015-07-151-4/+9
| | | | This is a deprecated module. QtGui has a replacement that we need to implement (later)
* better macro names, support QtXmlPatterns.Christian Tismer2015-07-154-33/+52
| | | | | | | | | | | | | | | | | 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-152-38/+75
| | | | | | | | | 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'
* introduce a new macro "make_path"Christian Tismer2015-07-157-10/+40
| | | | | This was crucial, because I repeatedly got these huge lines wrong. Now this is readable.
* make QtSql compileChristian Tismer2015-07-145-23/+34
| | | | QtSvg is not yet working, temp check-in.
* QtWidgets builds by 95% and now links correctly - still crashes due to ↵Christian Tismer2015-07-141-44/+45
| | | | unresolved warnings
* QtWidgets builds by over 95 percent.Christian Tismer2015-07-147-10/+214
| | | | Something is missing for linking staticMetaObject. Intermediate check-in
* progress on QtWidgets, fixing the last warnings, only 28 left. Does not compile.Christian Tismer2015-07-137-207/+129
|
* progress on QtWidgets, fixing duplicates, nothing is ready.Christian Tismer2015-07-133-564/+67
|
* error status when started QtWidgets editing (2 hours ago)Christian Tismer2015-07-131-0/+133
|
* edited the QtWidgets Xml, things start to fit together. Not yet compiling...Christian Tismer2015-07-1311-2875/+66
|
* Support QtTest and the special PySideQTouchEventSequenceChristian Tismer2015-07-103-63/+149
| | | | | | | | | | This was a bit difficult to understand. After I realized, that the code is mostly a copy of Qt code, things became clearer: The modules corrected a bit in Qt 4.6 and also turned the sequence into heap-based. I did the same for Qt5 (the correction was no longer needed). I tried very hard, but still cannot find out why signature 'generateTouchEvent(QWindow*,QTouchDevice*,bool)' is not found. May somebody enlighten me.
* start to prepare the new QtWidgetsChristian Tismer2015-07-101-423/+48
|
* add the new QWindow class to QtGui and the things that are pulled in by this.Christian Tismer2015-07-102-1/+29
|
* move the find_package() calls *before* the preparation of include files.Christian Tismer2015-07-102-18/+20
| | | | | | 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().
* move and rename QtGui things that belong to QtWidgets, nowChristian Tismer2015-07-107-0/+0
|
* after the last shiboken fix (70afb33fd3e9e87ac86f635ba88e005af5eabf86) QtGui ↵Christian Tismer2015-07-081-1/+0
| | | | | | compiles and runs. This will be tested after QtWidgets and QtTest are there.
* QtGui compiles. Only problem is that QTextFrame seems to register a wrong ↵Christian Tismer2015-07-073-75/+25
| | | | iterator size
* QtGui compiles almost, just 2 methods missing (and matrices avoided so far)Christian Tismer2015-07-076-237/+18
|
* big reduction of the QtGui warnings. Still undecided on Matrix things, will ↵Christian Tismer2015-07-074-109/+78
| | | | | | real the mailing list in depth at https://groups.google.com/forum/#!topic/qt-project-list-development/dPcP3NASY1k
* current warnings/errors list: progressChristian Tismer2015-07-062-74/+72
|
* current warnings/errors listChristian Tismer2015-07-061-88/+76
|
* QtGui builds by over 90 percent, but crashes on run.Christian Tismer2015-07-061-381/+180
| | | | This was to be expected. A quite great result for a single (but very long) day!
* QtGui is starting to build!Christian Tismer2015-07-066-4222/+470
| | | | | | | | After a huge session of manually determining what belongs here and what goes to QtWigets, QtGui now has its first small success. There was also a hard to understand problem with Q_INTERFACES in qpytextobject.h that refused to compile. No idea what has changed...
* start porting QtGui and QtWidgetsChristian Tismer2015-07-0515-17/+7979
|
* simplify the QtCore file structureChristian Tismer2015-07-051-41/+28
|
* no idea why this path is need, see comment!Christian Tismer2015-07-051-0/+4
|
* remove Qt5 magic from global.h.in that was removed from Qt4 as well. (from ↵Christian Tismer2015-07-051-133/+1
| | | | qobjectdefs.h)
* QtCore builds now completely!Christian Tismer2015-07-042-14/+10
| | | | | | | There are a few warnings left. The real omission is the signal support, which I disabled for the moment. Tests are not yet working, because QtGui (and QtWidgets, probably) need to be built as well.
* only abstracteventdispatcher does not compile, everything else is compiling.Christian Tismer2015-07-032-4/+4
|
* many more fixes. QCoreApplication builds now as well, just the abstract ↵Christian Tismer2015-07-032-4/+23
| | | | things are missing.
* lots of lots of small changes today, from 60+ warnings down to 27Christian Tismer2015-07-031-26/+37
|
* silence annoying warningsChristian Tismer2015-07-021-1/+1
|
* QtCore builds almost, only five wrappers missingChristian Tismer2015-07-022-3/+7
|
* add the new primitive types, which has a lot of effect.Christian Tismer2015-07-022-6/+15
| | | | | Now certain code branches are generated again that were missing. We are slowly getting close to 100 percent of QtCore compilation !
* *** no success with the four QAbstract* wrappers. Ask for help!Christian Tismer2015-07-011-3/+1
| | | | | These implementations look very similar to the generated 4.8 code, and I don't find the reason why they are treated as pure virtual. Does somebody understand more?
* with right QFlag support, init errors are all gone.Christian Tismer2015-07-012-4/+5
| | | | Added QConcurrent which was split from QtCore
* all QFlag related errors are gone with the last shiboken changeChristian Tismer2015-07-012-13/+12
|