Qt 5.10 Book Examples
main.cpp
Go to the documentation of this file.
1 // ======================================================================
2 // main.cpp
3 // ======================================================================
4 // This file is a part of the book
5 // "Qt 5.10 Professional programming with C++"
6 // http://qt-book.com
7 // ======================================================================
8 // Copyright (c) 2017 by Max Schlee
9 // ======================================================================
10 
11 #include <QtWidgets>
12 
13 // ----------------------------------------------------------------------
14 int main(int argc, char** argv)
15 {
16  QApplication app(argc, argv);
17  QSplitter spl(Qt::Horizontal);
18  QFileSystemModel model;
19 
20  model.setRootPath(QDir::rootPath());
21 
22  QTreeView* pTreeView = new QTreeView;
23  pTreeView->setModel(&model);
24 
25  QTableView* pTableView = new QTableView;
26  pTableView->setModel(&model);
27 
28  QObject::connect(pTreeView, SIGNAL(clicked(const QModelIndex&)),
29  pTableView, SLOT(setRootIndex(const QModelIndex&))
30  );
31  QObject::connect(pTableView, SIGNAL(activated(const QModelIndex&)),
32  pTreeView, SLOT(setCurrentIndex(const QModelIndex&))
33  );
34  QObject::connect(pTableView, SIGNAL(activated(const QModelIndex&)),
35  pTableView, SLOT(setRootIndex(const QModelIndex&))
36  );
37 
38  spl.addWidget(pTreeView);
39  spl.addWidget(pTableView);
40  spl.show();
41 
42  return app.exec();
43 }
int main(int argc, char **argv)
Definition: main.cpp:15