MagicSmoke  $VERSION$
treeview.h
Go to the documentation of this file.
1 //
2 // C++ Interface: treeview
3 //
4 // Description:
5 //
6 //
7 // Author: Konrad Rosenbaum <konrad@silmor.de>, (C) 2009-2011
8 //
9 // Copyright: See README/COPYING.GPL files that come with this distribution
10 //
11 //
12 
13 #ifndef MAGICSMOKE_TREEVIEW_H
14 #define MAGICSMOKE_TREEVIEW_H
15 
16 #include <QTreeView>
17 
18 #include "commonexport.h"
19 
21 class MAGICSMOKE_COMMON_EXPORT MTreeView:public QTreeView
22 {
23  public:
24  MTreeView(QWidget*w=0):QTreeView(w){}
25  protected:
26  void keyPressEvent(QKeyEvent *event);
27 
28 };
29 
30 #endif
#define MAGICSMOKE_COMMON_EXPORT
Definition: commonexport.h:7
enhances QTreeView to react a bit friendlier on clicks
Definition: treeview.h:21
MTreeView(QWidget *w=0)
Definition: treeview.h:24