aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtGui
Commit message (Collapse)AuthorAgeFilesLines
* Fix bug PYSIDE-172: multiple rules for fileMatthew Woehlke2014-04-151-2/+1
| | | | | | | | | | Remove moc_qpytextobject.cxx from the list of Shiboken-generated files, as it is properly generated by MOC, and being in both places causes some generators (e.g. Ninja) to be unhappy about having multiple rules that (claim to) generate it. Change-Id: I2458502852f792661120f561a59ad9a198286005 Reviewed-by: John Ehresman <jpe@wingware.com>
* Replaced Nokia copyrights and contact detailsTeemu Kaukoranta2013-05-287-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* Invalidate invisibleRootItem in clear() methodJohn Ehresman2012-07-311-0/+6
| | | | | | | Fixes PYSIDE-56 Change-Id: If0529a289e6d9613fdd85bd9d37ccf438d4e92ca Reviewed-by: Hugo Parente Lima <hugo.lima@openbossa.org>
* Fix bug 1041 - "QAbstractItemModel has wrong ownership policy for ↵Hugo Parente Lima2012-04-201-0/+7
| | | | | | | selectionModel()" Change-Id: I1dbe6d3cd69774dfa18f15d83794396f17b769f0 Reviewed-by: Hugo Parente Lima <hugo.lima@openbossa.org>
* Fix BUG #1091 - "PixmapFragment and drawPixmapFragments are not bound"Paulo Alcantara2012-03-082-74/+85
| | | | | | | | | See http://bugs.pyside.org/show_bug.cgi?id=1091. Also minor coding style fixes in QtGui's typesystem. Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewed-by: Marcelo Lira <marcelo.lira@openbossa.org>
* No more training wheels. The last occurrences of the old template Converter ↵Marcelo Lira2012-03-089-144/+40
| | | | | | where removed. Also related fixes here and there.
* Fixes custom code for QtCore's HWND on win32.Marcelo Lira2012-03-081-8/+1
|
* Qt::HANDLE is declared only in QtCore, and its specifics depend on the ↵Marcelo Lira2012-03-082-2/+2
| | | | architecture.
* Fixed converter for win32's WId type.Marcelo Lira2012-03-081-1/+4
|
* Replaced TypeResolver by SbkConverter and SpecificConverter.Marcelo Lira2012-03-081-1/+19
| | | | Also updated QtGui's WId conversion to Python 3.
* Removed the remaining occurrences of Shiboken::makeTuple.Marcelo Lira2012-03-081-23/+43
|
* Added converter for primitive type QModelIndexList.Marcelo Lira2012-03-081-1/+0
|
* Fixes conversion rule for QGraphicsView::drawItems array argument.Marcelo Lira2012-03-081-2/+3
|
* Updated various function removals and modifications.Marcelo Lira2012-03-081-2/+43
|
* New converters for primitive types.Marcelo Lira2012-03-081-1/+10
|
* Turned QStyleOptionViewItem into value type, for it has a public copy ↵Marcelo Lira2012-03-081-8/+8
| | | | | | | | constructor. It is passed around by value in many places, like the return value of QAbstractItemView::viewOptions(). I did the same to the variations: QStyleOptionViewItemV2, QStyleOptionViewItemV3, etc.
* Signature of various added and modified functions modified to use non-const ↵Marcelo Lira2012-03-081-9/+9
| | | | | | | references. The API Extractor signature normalizer removes const& from argument types, but it leaves non-const references unchanged.
* Fix bug 1083 - "winId returns a PyCObject making it impossible to compare ↵Hugo Parente Lima2012-03-082-23/+4
| | | | two winIds"
* Fix BUG #1077 - "Application exit crash when call QSyntaxHighlighter.document()"Paulo Alcantara2012-03-081-0/+5
| | | | | | Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fix BUG #1034 - "Error compiling PySide with Python 3.2.2 32bit on Windows"Paulo Alcantara2012-03-081-1/+25
| | | | | | Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix BUG #1048Paulo Alcantara2012-03-081-0/+3
| | | | | | Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewer: Willer Moreira <willer.moreira@openbossa.org> Hugo Parente Lima <hugo.lima@openbossa.org>
* Only removes actions bounded to PyObjects on QMenu::clear.Hugo Parente Lima2012-03-081-4/+9
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Initial update typesystem for support Qt 4.8 (beta).Renato Filho2012-03-081-1/+9
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fixes win32's HWND converter.Marcelo Lira2012-03-081-0/+2
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Updated QtGui modue to works with python 2.x and 3.xRenato Filho2012-03-081-4/+4
|
* Initia QtCore port to python3.Renato Filho2012-03-083-19/+19
|
* Fixed layout policy.Renato Filho2012-03-082-6/+74
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix QLayout.itemAt and QGridLayout.itemAtPosition return policy.Renato Filho2012-03-082-2/+9
| | | | | | | Fixes bug #1006. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed QWidget.window() return policy.Renato Filho2012-03-081-0/+6
| | | | | | | Fixes bug #1002 Reviewer: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug 966 - "QX11Info.display() missing"Hugo Parente Lima2012-03-081-4/+15
|
* Fixed QColor reduce function.Renato Filho2012-03-081-10/+11
| | | | | | | Fixes bug #989. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed QMenu, QMenuBar, QToolBar clear function.Renato Filho2012-03-081-0/+42
| | | | | | | During the clear function all QActions need be destroyed. Reviewed by: Hugo Parente <hugo.lima@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix QColor __reduce__ function.Renato Filho2012-03-081-2/+8
| | | | | | | Fixes bug #983. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Fix QGraphicsProxyWidget.setWidget return policy.Renato Filho2012-03-081-3/+7
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Updated QtGui's type system.Marcelo Lira2012-03-081-67/+98
|
* Fix bug 964 - "QAbstractItemView.moveCursor() method is missing"Hugo Parente Lima2012-03-081-2/+0
| | | | | Reviewer: Marcelo Lira <marcelol.lira@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fixed QColor.__reduce__ function.Renato Filho2012-03-081-5/+5
| | | | | | | Fixes bug #960. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented QColor.__repr__ and QColor.__str__ functions.Renato Filho2012-03-081-0/+51
| | | | | | | Fixes bug #961. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fixes Bug #944: Segfault on QIcon(None).pixmap()Marcelo Lira2012-03-081-0/+2
| | | | | | | http://bugs.pyside.org/show_bug.cgi?id=944 Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Moved AutoArrayPointer from libpyside to libshiboken.Marcelo Lira2012-03-081-6/+2
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Replaced hard coded variables by type system variables in QtCore and QtGui.Marcelo Lira2012-03-081-1/+1
|
* Fix typo on function modification signature.Renato Filho2012-03-081-1/+1
|
* Fix bug 890 - "Add signal connection example for valueChanged(int) on ↵Hugo Parente Lima2012-03-081-1/+30
| | | | | | | QSpinBox to the docs" Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug 821 - "Mapping interface for QPixmapCache"Hugo Parente Lima2012-03-081-1/+11
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix argument name on QStyle functions, and modify default value.Renato Filho2012-03-081-0/+18
| | | | | | | Fixes bug #919. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fixed QGraphicsView.scene return policy.Renato Filho2012-03-081-7/+16
| | | | | | | Fixes bug #915. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fixed QMainWindow ownership control.Renato Filho2012-03-081-1/+5
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fixed QWidget.parentWidget return policy.Renato Filho2012-03-081-3/+9
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fill qApp is any QApplication is active during the QtGui moude import.Renato Filho2012-03-081-2/+8
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Updated PySide type systems to use the new type system variables: ↵Marcelo Lira2012-03-081-3/+3
| | | | | | | %ISCONVERTIBLE and %CHECKTYPE. Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araujo <renato.filho@openbossa.org>