Arrow
ArrowJan. 9, 2017, 9:42 p.m.

Работа с QFileSystemModel

QFileSystemModel, QTableView

Для работы с QFileSystemModel использую QTableView. В нем отображаются заголовки колонок: name, size и т.д.

Как можно изменить отображаемые имена заголовков?

И второй вопрос как установить растягивание одной из колонок, чтобы она занимала все сободное пространство?

Для работы с шириной колонок нашел только метод

setColumnWidth()
We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

6
Evgenii Legotckoi
  • Jan. 9, 2017, 11:03 p.m.
  • The answer was marked as a solution.

1 Вопрос - наследоваться от QFileSystemModel и переопределить метод headerData

QVariant MyFileSystemModel::headerData(int section, Qt::Orientation orientation, int role) const
{

    if ((section == 0) && (role == Qt::DisplayRole) && (orientation == Qt::Horizontal))
    {
        return "Folder";
    } else {
        return QFileSystemModel::headerData(section, orientation, role);
    }
}

2 Вопрос - Установить растяжение колонки у самого QTableView, например у колонки под индексом 1:

ui->tableView->horizontalHeader()->setSectionResizeMode(1, QHeaderView::Stretch);
    Arrow
    • Jan. 10, 2017, 1:48 a.m.

    Спасибо.

      Arrow
      • Jan. 10, 2017, 2:16 a.m.

      Решил первый вопрос по другому и очень не правильно:

      QTableWidget *tbl = new QTableWidget(this);
      QStringList strList;
      strList << "Имя" << "Размер" << "Тип" << "Дата";
      tbl->setColumnCount(4);
      tbl->setHorizontalHeaderLabels(strList);
      QHeaderView *header = tbl->horizontalHeader();
      ui->leftTableView->setHorizontalHeader(header);
      // Без этого отображается полоса прокрутки в ненужно месте
      tbl->setVisible(false);
      

      Замена заголовка своей таблицей.

        Evgenii Legotckoi
        • Jan. 10, 2017, 9:58 a.m.

        Да. Вы правы. Решение не правильное. С архитектурной точки зрения не правильное.

        Вот это данные:

        QStringList strList;
        strList << "Имя" << "Размер" << "Тип" << "Дата";
        

        А данные следует хранить в модели данных, а не в представлении, как Вы сделали. В небольшом проекте это не будет проблемой, а вот в крупном проекте такой подход может создать проблемы. Всё-таки интерфейс должен быть более менее унифицирован и всю подобную информацию необходимо забирать из модели данных.

          Arrow
          • Jan. 11, 2017, 12:20 a.m.

          Спасибо. Знаю, что нужно разделять, но так не хотелось наследоваться.

            AR
            • June 6, 2023, 11:35 p.m.

            Вопросик по теме QFileSystemModel в Linux.
            Он, как и положено, обновляется самостоятельно, если директория локальная. Но, вот, сетевая папка (у меня шара samba) не обновляется. Как её можно дёрнуть самостоятельно?
            Создаю model в конструкторе:

                model = new QFileSystemModel(this);
                model->setFilter(QDir::AllEntries);
                model->setRootPath("");
                ui->listView->setModel(model);
            

            Затем, обрабатываю клики:

            void TWgtFileList::on_listView_clicked(const QModelIndex &index)
            {
                QFileInfo fileInfo = model->fileInfo(index);
                if (fileInfo.fileName() == "..")
                {
                    QDir dir = fileInfo.dir();
                    dir.cdUp();
                    ui->listView->setRootIndex(model->index(dir.absolutePath()));
                    ui->lblPath->setText(model->filePath(ui->listView->rootIndex()));
                }
                else if (fileInfo.fileName() == ".")
                {
                    ui->listView->setRootIndex(model->index(""));
                    ui->lblPath->setText(model->filePath(ui->listView->rootIndex()));
                }
                else if (fileInfo.isDir())
                {
                    QString str = model->filePath(ui->listView->rootIndex());
                    ui->listView->setRootIndex(index);
                    ui->lblPath->setText(str);
                }
                else if (fileInfo.isFile())
                    fName = fileInfo.absoluteFilePath();
            }
            

            Если одновременно записать файл в сетевую папку, она в модели не обновляется. Что надо "дёрнуть"?

              Comments

              Only authorized users can post comments.
              Please, Log in or Sign up
              AD

              C ++ - Test 004. Pointers, Arrays and Loops

              • Result:50points,
              • Rating points-4
              m

              C ++ - Test 004. Pointers, Arrays and Loops

              • Result:80points,
              • Rating points4
              m

              C ++ - Test 004. Pointers, Arrays and Loops

              • Result:20points,
              • Rating points-10
              Last comments
              i
              innorwallNov. 11, 2024, 10:12 p.m.
              Django - Tutorial 055. How to write auto populate field functionality Freckles because of several brand names retin a, atralin buy generic priligy
              i
              innorwallNov. 11, 2024, 6:23 p.m.
              QML - Tutorial 035. Using enumerations in QML without C ++ priligy cvs 24 Together with antibiotics such as amphotericin B 10, griseofulvin 11 and streptomycin 12, chloramphenicol 9 is in the World Health Organisation s List of Essential Medici…
              i
              innorwallNov. 11, 2024, 3:50 p.m.
              Qt/C++ - Lesson 052. Customization Qt Audio player in the style of AIMP It decreases stress, supports hormone balance, and regulates and increases blood flow to the reproductive organs buy priligy online safe Promising data were reported in a PDX model re…
              i
              innorwallNov. 11, 2024, 2:19 p.m.
              Heap sorting algorithm The role of raloxifene in preventing breast cancer priligy precio
              i
              innorwallNov. 11, 2024, 1:55 p.m.
              PyQt5 - Lesson 006. Work with QTableWidget buy priligy 60 mg 53 have been reported by Javanovic Santa et al
              Now discuss on the forum
              i
              innorwallNov. 11, 2024, 8:56 p.m.
              добавить qlineseries в функции buy priligy senior brother Chu He, whom he had known for many years
              i
              innorwallNov. 11, 2024, 10:55 a.m.
              Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
              9
              9AnonimOct. 25, 2024, 9:10 a.m.
              Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

              Follow us in social networks