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  QWidget wgt;
18 
19  QStringListModel model;
20  model.setStringList(QStringList() << "Xandria"
21  << "Epica"
22  << "Therion"
23  << "Evanescence"
24  << "Nightwish"
25  );
26 
27  QSortFilterProxyModel proxyModel;
28  proxyModel.setSourceModel(&model);
29  proxyModel.setFilterWildcard("E*");
30 
31  QListView* pListView1 = new QListView;
32  pListView1->setModel(&model);
33 
34  QListView* pListView2 = new QListView;
35  pListView2->setModel(&proxyModel);
36 
37  //Layout setup
38  QHBoxLayout* phbxLayout = new QHBoxLayout;
39  phbxLayout->addWidget(pListView1);
40  phbxLayout->addWidget(pListView2);
41  wgt.setLayout(phbxLayout);
42 
43  wgt.show();
44 
45  return app.exec();
46 }
int main(int argc, char **argv)
Definition: main.cpp:15