blob: 92bb7e3cf3bf871522bd6bdf80878c4c9a67f4cf (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// Author: Max Howell <max.howell@methylblue.com>, (C) 2003-4
// Copyright: See COPYING file that comes with this distribution
#ifndef FILELIGHTPART_H
#define FILELIGHTPART_H
#include <kparts/browserextension.h>
#include <kparts/statusbarextension.h>
#include <kparts/part.h>
#include <kurl.h>
class KAboutData;
using KParts::StatusBarExtension;
namespace RadialMap { class Widget; }
class Directory;
namespace Filelight
{
class Part;
class BrowserExtension : public KParts::BrowserExtension
{
public:
BrowserExtension( Part*, const char * = 0 );
};
class Part : public KParts::ReadOnlyPart
{
Q_OBJECT
TQ_OBJECT
public:
Part( TQWidget *, const char *, TQObject *, const char *, const TQStringList& );
virtual bool openFile() { return false; } //pure virtual in base class
virtual bool closeURL();
TQString prettyURL() const { return m_url.protocol() == "file" ? m_url.path() : m_url.prettyURL(); }
static KAboutData *createAboutData();
public slots:
virtual bool openURL( const KURL& );
void configFilelight();
void rescan();
private slots:
void postInit();
void scanCompleted( Directory* );
void mapChanged( const Directory* );
private:
KStatusBar *statusBar() { return m_statusbar->statusBar(); }
BrowserExtension *m_ext;
StatusBarExtension *m_statusbar;
RadialMap::Widget *m_map;
class ScanManager *m_manager;
bool m_started;
private:
bool start( const KURL& );
private slots:
void updateURL( const KURL & );
};
}
#endif
|