summaryrefslogtreecommitdiffstats
path: root/src/part/summaryWidget.h
blob: 7f201538550809858f58537f0f70895b1484435c (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
25
//Author:    Max Howell <max.howell@methylblue.com>, (C) 2004
//Copyright: See COPYING file that comes with this distribution

#ifndef FILELIGHTSUMMARY_H
#define FILELIGHTSUMMARY_H

#include <qwidget.h>


class SummaryWidget : public QWidget
{
    Q_OBJECT

public:
    SummaryWidget( QWidget *parent, const char *name );
    ~SummaryWidget();

signals:
    void activated( const KURL& );

private:
    void createDiskMaps();
};

#endif