blob: ddca7ef1c483e9952f28490ce9ee17234f51cda2 (
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
26
|
//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 <tqwidget.h>
class SummaryWidget : public TQWidget
{
Q_OBJECT
public:
SummaryWidget( TQWidget *parent, const char *name );
~SummaryWidget();
signals:
void activated( const KURL& );
private:
void createDiskMaps();
};
#endif
|