Browse Source

- Clearing of fiels list in properties was a bit too efficient (it removed header too)

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
d86cb62dc0
  1. 3
      src/PropListDelegate.h
  2. 4
      src/propertieswidget.cpp

3
src/PropListDelegate.h

@ -113,6 +113,7 @@ class PropListDelegate: public QItemDelegate {
} }
QWidget* createEditor(QWidget *parent, const QStyleOptionViewItem &/* option */, const QModelIndex & index) const { QWidget* createEditor(QWidget *parent, const QStyleOptionViewItem &/* option */, const QModelIndex & index) const {
qDebug("CreateEditor called");
if(index.column() != PRIORITY) return 0; if(index.column() != PRIORITY) return 0;
QComboBox* editor = new QComboBox(parent); QComboBox* editor = new QComboBox(parent);
editor->setFocusPolicy(Qt::StrongFocus); editor->setFocusPolicy(Qt::StrongFocus);
@ -124,6 +125,7 @@ class PropListDelegate: public QItemDelegate {
} }
void setEditorData(QWidget *editor, const QModelIndex &index) const { void setEditorData(QWidget *editor, const QModelIndex &index) const {
qDebug("setEditorData called");
unsigned short val = index.model()->data(index, Qt::DisplayRole).toInt(); unsigned short val = index.model()->data(index, Qt::DisplayRole).toInt();
QComboBox *combobox = static_cast<QComboBox*>(editor); QComboBox *combobox = static_cast<QComboBox*>(editor);
qDebug("Set Editor data: Prio is %d", val); qDebug("Set Editor data: Prio is %d", val);
@ -213,6 +215,7 @@ class PropListDelegate: public QItemDelegate {
} }
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &/* index */) const { void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &/* index */) const {
qDebug("UpdateEditor Geometry called");
editor->setGeometry(option.rect); editor->setGeometry(option.rect);
} }

4
src/propertieswidget.cpp

@ -161,7 +161,7 @@ void PropertiesWidget::clear() {
dlTotal->clear(); dlTotal->clear();
shareRatio->clear(); shareRatio->clear();
listWebSeeds->clear(); listWebSeeds->clear();
PropListModel->clear(); PropListModel->removeRows(0, PropListModel->rowCount());
setEnabled(false); setEnabled(false);
} }
@ -207,7 +207,7 @@ void PropertiesWidget::loadTorrentInfos(QTorrentHandle &_h) {
std::vector<int> files_priority = loadFilesPriorities(); std::vector<int> files_priority = loadFilesPriorities();
// List files in torrent // List files in torrent
arborescence *arb = new arborescence(h.get_torrent_info(), fp, files_priority); arborescence *arb = new arborescence(h.get_torrent_info(), fp, files_priority);
PropListModel->clear(); PropListModel->removeRows(0, PropListModel->rowCount());
addFilesToTree(arb->getRoot(), PropListModel->invisibleRootItem()); addFilesToTree(arb->getRoot(), PropListModel->invisibleRootItem());
// Increase first column width // Increase first column width
//filesList->resizeColumnToContents(0); // does not work //filesList->resizeColumnToContents(0); // does not work

Loading…
Cancel
Save