MagicSmoke  $VERSION$
listview.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_LISTVIEW_H
14 #define MAGICSMOKE_LISTVIEW_H
15 
16 #include <QListView>
17 
18 #include "commonexport.h"
19 
21 class MAGICSMOKE_COMMON_EXPORT MListView:public QListView
22 {
23  public:
24  MListView(QWidget*w=0):QListView(w){}
25  protected:
26  void keyPressEvent(QKeyEvent *event);
27 
28 };
29 
30 #endif
#define MAGICSMOKE_COMMON_EXPORT
Definition: commonexport.h:7
MListView(QWidget *w=0)
Definition: listview.h:24
enhances QTreeView to react a bit friendlier on clicks
Definition: listview.h:21