VR-Exchange 2.6 API Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
genericListView.h
Go to the documentation of this file.
1 /****************************************************************************
2  * Copyright (c) 2015 VT MAK
3  * All rights reserved.
4  ****************************************************************************/
5 
9 
10 #pragma once
11 
12 #include <widgets/dllExport.h>
13 #include <QWidget>
14 
15 class QTreeWidget;
16 class QLabel;
17 
18 namespace MAKVrExchange
19 {
20 
24  { Q_OBJECT;
25  public:
26 
27  DtGenericListView( QWidget* parent = 0, Qt::WindowFlags flags = 0 );
28 
29  QTreeWidget* listView() { return myListView; }
30 
31  QLabel* titleLabel() { return myTitleLabel; }
32 
33  protected:
34 
35  void setupGui();
36 
37  protected:
38 
39  QLabel* myTitleLabel;
40  QTreeWidget* myListView;
41 
42  };
43 
44 }

Document ID: Generated on Wed Jan 30 18:15:18 EST 2019 from SVN revision 195534
Copyright © 2005-2019 VT MÄK. All Rights Reserved (www.mak.com)