mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Moved the code that handles DiveList column sizes to its correct file.
I got a bit lost trying to find the code that handled DiveList columns today, so I thought it was better to move it to its file, after all we do have a divelistview.h :) Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
ba638cae05
commit
7dbf76384f
3 changed files with 40 additions and 21 deletions
|
@ -47,6 +47,42 @@ DiveListView::DiveListView(QWidget *parent) : QTreeView(parent), mouseClickSelec
|
|||
connect(showSearchBox, SIGNAL(triggered(bool)), this, SLOT(showSearchEdit()));
|
||||
connect(searchBox, SIGNAL(textChanged(QString)), model, SLOT(setFilterFixedString(QString)));
|
||||
selectedTrips.clear();
|
||||
|
||||
setupUi();
|
||||
}
|
||||
|
||||
DiveListView::~DiveListView()
|
||||
{
|
||||
QSettings settings;
|
||||
settings.beginGroup("ListWidget");
|
||||
for (int i = DiveTripModel::NR; i < DiveTripModel::COLUMNS; i++){
|
||||
if (isColumnHidden(i))
|
||||
continue;
|
||||
settings.setValue(QString("colwidth%1").arg(i), columnWidth(i));
|
||||
}
|
||||
settings.endGroup();
|
||||
}
|
||||
|
||||
void DiveListView::setupUi(){
|
||||
QSettings settings;
|
||||
settings.beginGroup("ListWidget");
|
||||
/* if no width are set, use the calculated width for each column;
|
||||
* for that to work we need to temporarily expand all rows */
|
||||
expandAll();
|
||||
for (int i = DiveTripModel::NR; i < DiveTripModel::COLUMNS; i++) {
|
||||
if(isColumnHidden(i))
|
||||
continue;
|
||||
QVariant width = settings.value(QString("colwidth%1").arg(i));
|
||||
if (width.isValid())
|
||||
setColumnWidth(i, width.toInt());
|
||||
else
|
||||
setColumnWidth(i, 100);
|
||||
|
||||
}
|
||||
settings.endGroup();
|
||||
collapseAll();
|
||||
expand(model()->index(0,0));
|
||||
scrollTo(model()->index(0,0), QAbstractItemView::PositionAtCenter);
|
||||
}
|
||||
|
||||
void DiveListView::fixMessyQtModelBehaviour()
|
||||
|
@ -178,6 +214,7 @@ void DiveListView::reload(DiveTripModel::Layout layout, bool forceSort)
|
|||
setCurrentIndex(firstDiveOrTrip);
|
||||
}
|
||||
}
|
||||
setupUi();
|
||||
}
|
||||
|
||||
void DiveListView::reloadHeaderActions()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue