File: treeview.hh

package info (click to toggle)
goldendict-webengine 23.02.05-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 19,148 kB
  • sloc: cpp: 58,537; javascript: 9,942; ansic: 9,242; xml: 41; makefile: 15; sh: 9
file content (20 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* This file is (c) 2008-2018 Abs62
 * Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */

#ifndef __TREEVIEW_HH__INCLUDED
#define __TREEVIEW_HH__INCLUDED

#include <QTreeView>

class TreeView : public QTreeView
{
public:
  TreeView( QWidget * parent = 0 ) :
    QTreeView( parent )
  {}

protected:
  virtual void dropEvent( QDropEvent * event );
};

#endif // TREEVIEW_HH