aboutsummaryrefslogtreecommitdiffstats
path: root/PySide
Commit message (Collapse)AuthorAgeFilesLines
* Fix bug 663 - "Crash on exit when passing QNetworkAccessManager around"Hugo Parente Lima2012-03-081-0/+21
|
* Remove invalid function removals.Hugo Parente Lima2012-03-081-6/+0
|
* Fix bug 667 - "Crash on exit"Hugo Parente Lima2012-03-081-1/+16
|
* Fix QGLBuffer::map code injection and test.Hugo Parente Lima2012-03-081-6/+12
|
* Updated phonon typesystem to use the new pyside cmake macro syntax.Renato Araujo Oliveira Filho2012-03-081-2/+6
|
* Implemented support for iterator on QTextBlock.Renato Araujo Oliveira Filho2012-03-081-0/+17
| | | | | | | Fixes bug #662. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Separated class typesystem from the main typesystem.Renato Araujo Oliveira Filho2012-03-0823-119/+127
| | | | | | | | | | Remove class specification, detected during the compilation from the main typesystem to avoid errors during the generation. Fixes bug #661 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fix 666 - "QByteArray does not support slices"Hugo Parente Lima2012-03-081-0/+11
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug 660 - "QMimeData type deleted prematurely when overriding mime-type ↵Hugo Parente Lima2012-03-081-1/+2
| | | | in QStandardItemModel drag and drop"
* Fix bug 643 - "QTabWidget.insertTab not taking ownership"Hugo Parente Lima2012-03-081-1/+1
|
* The global header for PySide is now installed with the libpyside headers.Marcelo Lira2012-03-081-3/+5
| | | | | | | | | This is good for PySide derived bindings (like the ones for QtMobility), so they don't need to copy the PySide global headers to their source tree and end up with an outdated file. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Export QTranslator::translate and QTranslator::load.Hugo Parente Lima2012-03-081-2/+20
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Export method QCryptographicHash::addData.Hugo Parente Lima2012-03-081-1/+8
|
* Remove some ancient method removals from QtCore typesystem.Hugo Parente Lima2012-03-081-2/+0
| | | | | - QDir(QString,QString,QFlags<QDir::SortFlag>,QFlags<QDir::Filter>) - QBitArray::fill(bool, int)
* Use PyString_GET_SIZE instead of PyString_Size on some inject codes.Hugo Parente Lima2012-03-081-2/+2
|
* Export QSettings::iniCodec and QXmlStreamWriter::codec methods.Hugo Parente Lima2012-03-081-4/+11
|
* QPersistentModelIndex now have the same implementation of internalPointer of ↵Hugo Parente Lima2012-03-081-2/+10
| | | | QModelIndex.
* Fixed/implemented various QResources methods.Hugo Parente Lima2012-03-081-13/+39
| | | | | | - data() is now exported and returns a Python read-only buffer object. - (un)registerResourceData now accept buffers as arguments, and respects zeroes in the middle of data. - Improved unit test.
* Fix comparisson of QByteArray with Python strings that have zeroes inside.Hugo Parente Lima2012-03-082-0/+48
|
* Added comments to some function removals.Hugo Parente Lima2012-03-081-3/+23
|
* Fix bug 653 - "Crash after calling QWizardPage.wizard()"Hugo Parente Lima2012-03-081-1/+7
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug 652 - "Segfault when using QTextBlock::setUserData due to missing ↵Hugo Parente Lima2012-03-081-0/+5
| | | | ownership transfer"
* Removed the removal of some QApplication functions.Hugo Parente Lima2012-03-081-4/+0
| | | | | | | | | | | These functions were removed due to ancient bugs in shiboken generator, all them now fixed. Functions: font(const char*) setFont(QFont,const char*) palette(const char*)
* Fix bug 650 - "Missing bindings for QNetworkProxyFactory"Hugo Parente Lima2012-03-082-1/+8
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Updated QAbstractItemModel.createIndex documentation to warning aboutRenato Araujo Oliveira Filho2012-03-081-2/+18
| | | | | | | ptr argument life time. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug 656 - "cannot inherit from QCoreApplication"Hugo Parente Lima2012-03-081-1/+1
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug 565 - "QImage missing *data constructors"Hugo Parente Lima2012-03-081-26/+66
| | | | | | | | | | Fix bug 566 - "'PySide.QtGui.QImage' object has no attribute 'scanLine'" The constructors now accepts any PyObject which implements the buffer protocol, as the C++ and PyQt4 version the buffer must be alive during the life time of QImage because QImage *does not* copy the image data. scanLine() and bits() now return buffer objects pointing to the memory inside QImage.
* Implement __repr__ function for class with Float attributes.Renato Araujo Oliveira Filho2012-03-081-0/+27
|
* Implemented fuction __repr__ for base types.Renato Araujo Oliveira Filho2012-03-083-2/+278
| | | | | | | Fixes bug #593 Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed QFileDialog function calls with options in the last argument.Renato Araujo Oliveira Filho2012-03-081-1/+1
| | | | | | | Fixes bug #590 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Implement support to others color spec on deepcopy function.Renato Araujo Oliveira Filho2012-03-081-4/+38
| | | | | | | | | Created unit test QColor reduce function. Fixes bug #612. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed QLineEdit.getTextMargins return value.Renato Araujo Oliveira Filho2012-03-082-0/+21
| | | | | | | Fixes bug #632 Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug#552 - "Segmentation fault when using QUiLoader and QTabWidget"Hugo Parente Lima2012-03-081-1/+0
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Don't reject QGLWidget::setMouseTracking function.Hugo Parente Lima2012-03-081-1/+0
|
* Fix bug#623 - "QGLWidget.bindTexture(QPixmap, GLenum, GLenum) is missing"Hugo Parente Lima2012-03-083-2/+4
|
* Fixed Widget and Layout inject code to avoid problems in armel arch.Renato Araujo Oliveira Filho2012-03-082-2/+2
|
* Updates documentation of QUiLoader.registerCustomWidget method.Marcelo Lira2012-03-081-0/+34
| | | | | | | | | | The new documentation highlights the danger of duck punching virtual methods of widget objects produced by QUiLoader. Also named the argument of QUiLoader.registerCustomWidget as customWidgetType. Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Named the single argument of all "QWidget.*Event(arg)" methods as "event".Marcelo Lira2012-03-081-26/+78
| | | | Just to make the generated documentation more readable.
* Fix bug#584 - "python pickle module can't treat QByteArray object of PySide"Hugo Parente Lima2012-03-083-25/+22
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Removed useless rejectionsHugo Parente Lima2012-03-082-342/+11
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Remove protected fields of event classes.Hugo Parente Lima2012-03-081-2/+76
| | | | | | Event classes have a lot of non-documented protected fields, those fields are removed from PySide because they are Qt implementation details, besides the fact they are accessible by ordinary event methods.
* Fix documentation for QWidget.winId()Hugo Parente Lima2012-03-081-0/+13
|
* Add polymorphic-id-expression to QGraphicsObject and QDeclarativeItem.Hugo Parente Lima2012-03-082-2/+2
|
* Fix Qvariant to Cpp conversion.Renato Araujo Oliveira Filho2012-03-081-0/+2
| | | | | | | Fixes bug #589 Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixes the fix in the commit a1cf8f03.Marcelo Lira2012-03-081-1/+2
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Fixes connecting signal to decorated slot.Marcelo Lira2012-03-081-1/+12
| | | | | | | | | | | | Decorated methods on classes derived from QObject are not called when connected to Qt signals because they get a name different from the decorated method. To solve this decorated methods are registered as global slots. An unit test was added. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Fixed QTreeWidgetItem.parent function policy.Renato Araujo Oliveira Filho2012-03-081-2/+17
| | | | | | | Fixes bug #585 Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug#557 - "Segmentation fault in QDeclarativeComponent.loadUrl()"Hugo Parente Lima2012-03-081-0/+1
| | | | | | | | | The signature QDeclarativeComponent(QObject*) should not exist, it's not documented and just creates a useless QDeclarativeComponent when used, useless in the sense that it will segfault when used. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fixed QWidget.setParent signature on typesystem.Renato Araujo Oliveira Filho2012-03-081-1/+1
|
* Lock the gil on some hand written code to avoid crashes.Hugo Parente Lima2012-03-082-4/+10
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>