summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Refactor the QtGraphicsTableView layout function.Marius Bugge Monsen2009-05-293-44/+123
|
* Let the spreadsheet example use the updated QtGraphicsTableView API.Marius Bugge Monsen2009-05-291-1/+1
|
* 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-2811-72/+262
|\ | | | | | | | | | | Conflicts: src/qgraphicsheader.cpp src/qgraphicsheader.h
| * Merge branch 'abinader/master'Marius Bugge Monsen2009-05-280-0/+0
| |\
| | * QListFromTreeAdaptor: Only children items from the current item should emit ↵Bruno Abinader2009-05-282-22/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
| * | 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.
| * | The photoAlbum example will rely on animations, so don't build it if ↵Marius Bugge Monsen2009-05-281-1/+5
| | | | | | | | | | | | animations are not available.
| * | 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
| | |
| * | Start expanding the photoAlbum example to include a grid view too.Marius Bugge Monsen2009-05-281-21/+102
| | |
| * | QListFromTreeAdaptor: Only children items from the current item should emit ↵Bruno Abinader2009-05-262-22/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-263-18/+8
| | | | | | | | | | | | 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-228-81/+73
|
* 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-224-14/+14
|
* Refactor the doLayout() function; unify vertical and horizontal layout.Marius Bugge Monsen2009-05-221-109/+72
|
* Change IconRole to Qt::DecorationRole and TectRole to Qt::DisplayRole for now.Marius Bugge Monsen2009-05-221-6/+6
|
* 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
|
* Register the QList<int> metatype.Marius Bugge Monsen2009-05-201-0/+1
|
* Rename QListFromTreeAdaptor to QtListFromTreeAdaptor to avoid symbol clashes ↵Marius Bugge Monsen2009-05-204-64/+64
| | | | 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-2013-207/+814
|\ | | | | | | | | Conflicts: src/qtablecontroller.cpp
| * Merge branch 'tableItemLayout'Thomas Zander2009-05-2011-202/+781
| |\
| | * 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.
| | * Transplant the example code into a new qprintertableview classThomas Zander2009-05-186-111/+530
| | |
| | * Merge branch 'master' into tableItemLayoutThomas Zander2009-05-1825-120/+162
| | |\
| | * | Make printing work properly when there is a column wider than our paperThomas Zander2009-05-181-27/+42
| | | |
| | * | Fix column count to be what I set it to beThomas Zander2009-05-141-1/+1
| | | |
| | * | Fixes the problem that the horizontal scrollbar didn't properly inialize its ↵Thomas Zander2009-05-141-1/+1
| | | | | | | | | | | | | | | | length
| | * | Remove lots of duplicate code, instead just use the similar code that lives ↵Thomas Zander2009-05-141-54/+6
| | | | | | | | | | | | | | | | in the view.
| | * | Various fixes in tablesThomas Zander2009-05-141-4/+3
| | | |
| | * | Make printing work again using a somewhat odd approach that we scroll and ↵Thomas Zander2009-05-141-6/+46
| | | | | | | | | | | | | | | | | | | | | | | | resize the view and then print it, once for each page.
| | * | Fixes resizing a table to be less wide to cause painting to incorrectThomas Zander2009-05-142-8/+19
| | | | | | | | | | | | | | | | Make the relayout to not leave behind any unneeded cells
| | * | Make the reported cell size be width-x-height instead of the other way around.Thomas Zander2009-05-131-1/+1
| | | |