summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove some comments from the QtGraphicsTreeView header.Marius Bugge Monsen2009-06-071-2/+4
|
* Add some docs to QtGraphicsScrollBar.Marius Bugge Monsen2009-06-051-0/+97
|
* Remove a 'qDebug' that was not supposed to be there.Marius Bugge Monsen2009-06-051-1/+0
|
* Add limited support for wheel events in QtTreeController.Marius Bugge Monsen2009-06-051-2/+8
|
* Add scrollwheel support to QtGraphicsScrollBar. Also make sure that it is ↵Marius Bugge Monsen2009-06-051-2/+3
| | | | painted as active when the window is active.
* Update QtKineticListController to use QtGraphicsListView::itemForIndex(int).Marius Bugge Monsen2009-06-051-9/+1
|
* Add QtGraphicsTableView::itemForCell(int,int). Change the test to use this ↵Marius Bugge Monsen2009-06-052-3/+17
| | | | function when checking the item geometry.
* Replace QtGraphicsListView::visibleItems() with itemForIndex(int).Marius Bugge Monsen2009-06-042-4/+15
|
* Remove the index from QtGraphicsTreeViewItem. It is not needed and just ↵Marius Bugge Monsen2009-06-042-31/+9
| | | | clutters the api.
* Update the QtGraphicsTreeView::doLayout() to a slightly improved algorithm. ↵Marius Bugge Monsen2009-06-043-49/+33
| | | | It is still not optimal and is still a work-in-progress.
* Simplify the QtKienticListController API by removing the need to specify the ↵Marius Bugge Monsen2009-06-033-170/+94
| | | | orientation.
* Kill the timer in QtKineticListController when the view is hidden.Marius Bugge Monsen2009-06-024-0/+33
|
* Implement orientationThomas Zander2009-06-021-13/+19
|
* Support printing the headers/footersThomas Zander2009-06-021-8/+18
|
* Merge branch 'review/master'Marius Bugge Monsen2009-06-021-24/+9
|\
| * QListFromTreeAdaptor: Simplified signal interception.Bruno Abinader2009-05-311-24/+9
| | | | | | | | | | | | Removed unnecessary checks and variables. Signed-off-by: Bruno Abinader <bruno.abinader@openbossa.org>
* | Set the table default text elide mode to be Qt::ElideNone.Marius Bugge Monsen2009-06-021-3/+4
|/
* Refactor the QtGraphicsTableView layout function.Marius Bugge Monsen2009-05-293-44/+123
|
* Keep the QtGraphicsTreeViewItemCreator in sync with the API changes in the ↵Marius Bugge Monsen2009-05-282-10/+10
| | | | other creators.
* Merge branch 'master' of git@scm.dev.nokia.troll.no:research/itemviews-ngThomas Zander2009-05-288-43/+68
|\ | | | | | | | | | | Conflicts: src/qgraphicsheader.cpp src/qgraphicsheader.h
| * Add an argument to visibleSectionCount() so the QtGraphicsTableView is not ↵Marius Bugge Monsen2009-05-283-8/+7
| | | | | | | | dependent on the geometry of the QtGraphicsHeader when layout out the visible items.
| * Make sure that QtKineticListController continues scrolling when the user ↵Marius Bugge Monsen2009-05-281-4/+18
| | | | | | | | releases the mouse button after dragging.
| * Use the grid size rather than the viewport size when giving the constraints ↵Marius Bugge Monsen2009-05-281-4/+4
| | | | | | | | to the size hint function.
| * Remove unused variable in QtGraphicsTreeView.Marius Bugge Monsen2009-05-281-1/+0
| |
| * QListFromTreeAdaptor: Only children items from the current item should emit ↵Bruno Abinader2009-05-261-15/+37
| | | | | | | | | | | | | | | | | | | | | | signals. Fixed bug that children items from other layers of the tree model were also captured by the adaptor making it emit erroneous signals ahead, confusing the selection manager. Signed-off-by: Bruno Abinader <bruno.abinader@openbossa.org> Reviewed-by: Carlos Eduardo de S. Aguiar <carlos.aguiar@openbossa.org>
| * None of the classes uses QEasingCurve, so we don't need the check in src.pro.Marius Bugge Monsen2009-05-262-16/+6
| | | | | | | | The photoAlbum example doesn't use QEasingCurve, so it can be built together with the rest of the examples.
| * Fix bug where the QtTreeDefaultModel::rootItem() could get a valid iterator.Marius Bugge Monsen2009-05-251-2/+2
| |
* | The creators API flushed out a bit more;Thomas Zander2009-05-285-18/+18
| | | | | | | | | | * we should not make the methods const as the creators might want to do pooling of items. * rename the methods to clarify their purpose
* | Grid lines don't show up properly in some cases, or do when they should not. ↵Thomas Zander2009-05-281-2/+13
| | | | | | | | | | | | Some comments on how we want to do that properly
* | Its a new class starting...Thomas Zander2009-05-281-0/+2
| |
* | Having a method to give the visible Section count for the size of the viewThomas Zander2009-05-283-7/+6
|/ | | | | | and have that method live on the header is odd. We should at least pass in the size of the header.
* Rename setViewItemCreator() to setItemCreator(). Restructure doLayout() a bit.Marius Bugge Monsen2009-05-226-78/+70
|
* Add an item creator to QtGraphicsTableView. Remove an unnecessary function ↵Marius Bugge Monsen2009-05-225-45/+85
| | | | in QtTableController.
* Update to use visibleItems().Marius Bugge Monsen2009-05-221-1/+1
|
* Rename QtGraphicsListView::viewItems() to visibleItems().Marius Bugge Monsen2009-05-223-7/+7
|
* Refactor the doLayout() function; unify vertical and horizontal layout.Marius Bugge Monsen2009-05-221-109/+72
|
* Fix test failure for horizontal layout in the list view. Also, simplify the ↵Marius Bugge Monsen2009-05-226-99/+108
| | | | code a bit and get rid of some internal functions.
* Refactor the QtGraphicsTableView item layout code.Marius Bugge Monsen2009-05-217-404/+192
|
* Update some documentation.Marius Bugge Monsen2009-05-213-8/+79
|
* Remove iteratorAt() from the header.Marius Bugge Monsen2009-05-211-3/+0
|
* Rename QListFromTreeAdaptor to QtListFromTreeAdaptor to avoid symbol clashes ↵Marius Bugge Monsen2009-05-203-50/+50
| | | | if somebody uses the labs code with a version of Qt that will have the itemviews-ng classes integrated.
* QListFromTreeAdaptor: Move private function the private object.Marius Bugge Monsen2009-05-202-29/+37
|
* Add some documentation to the QtKineticListController.Marius Bugge Monsen2009-05-201-0/+62
|
* Rename QGraphicsHeader::setSectionState() to copySections() and add some ↵Marius Bugge Monsen2009-05-203-5/+8
| | | | documentation.
* Merge branch 'master' of git@scm.dev.nokia.troll.no:research/itemviews-ngMarius Bugge Monsen2009-05-2011-150/+766
|\ | | | | | | | | Conflicts: src/qtablecontroller.cpp
| * Merge branch 'tableItemLayout'Thomas Zander2009-05-2010-145/+768
| |\
| | * cleanup whitespacetableItemLayoutThomas Zander2009-05-202-8/+6
| | |
| | * Do an experiment; copy the header data and apply on our print view.Thomas Zander2009-05-203-3/+47
| | |
| | * CleanupThomas Zander2009-05-201-53/+3
| | |
| | * Don't initialize with a header. A header is just going to cause havoc if its ↵Thomas Zander2009-05-201-2/+0
| | | | | | | | | | | | | | | | | | not backed by a model so we should leave the init of the header to the controller.