C++ (Qt)void QFileSystemModel::setIconProvider(QFileIconProvider *provider){ Q_D(QFileSystemModel); d->fileInfoGatherer.setIconProvider(provider); qApp->processEvents(); d->root.updateIcon(provider, QString());}
C++ (Qt)treeView->setDisabled(true);...treeView->setEnabled(true);
C++ (Qt)...bool isBlocked = trmodel->blockSignals(true);trmodel->removeRow(index.row(), index.parent());trmodel->blockSignals(isBlocked);...
C++ (Qt) mainwindow->setDisabled(true); mainwindow->blockSignals(true); ... mainwindow->setEnabled(true); mainwindow->blockSignals(false);
C++ (Qt) // Загрузка модели в представление recordview->setModel(mod); // Сигнал для обработки движения стрелок в списке конечных записей connect(recordview->selectionModel(), SIGNAL(currentRowChanged (const QModelIndex&, const QModelIndex&)), this, SLOT(select(const QModelIndex&))); // Сигналы для обновления панели инструментов connect(recordview->selectionModel(), SIGNAL(currentChanged (const QModelIndex&, const QModelIndex&)), this, SLOT(tools_update(void))); connect(recordview->selectionModel(), SIGNAL(selectionChanged (const QItemSelection&, const QItemSelection&)), this, SLOT(tools_update(void)));