summaryrefslogtreecommitdiff
path: root/noncore/apps/tinykate/libkate/microkde/klistview.h
blob: 008acbcc3829c6b91d5f0539e9bcbbd49762b2f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef MICROKDE_KLISTVIEW_H
#define MICROKDE_KLISTVIEW_H

#include <qlistview.h>
#include <qpoint.h>
#include <qstring.h>

class KConfig;

class KListView : public QListView
{
    Q_OBJECT
  public:
    KListView( QWidget *parent=0, const char *name=0 )
      : QListView( parent, name ) {}

    void saveLayout( KConfig *, const QString & ) {}
    void restoreLayout( KConfig *, const QString & ) {}

  signals:
    void doubleClicked( QListViewItem *, QPoint, int );
};

#endif