blob: 1975f99823f810c619c646d0b6e69b1309d6d587 (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/***************************************************************************
newstuff.h - description
-------------------
begin : Tue Jun 22 12:19:55 2004
copyright : (C) 2004 by Andras Mantia <amantia@kde.org>
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; version 2 of the License. *
* *
***************************************************************************/
#ifndef NEWSTUFF_H
#define NEWSTUFF_H
//qt includes
#include <tqobject.h>
//kde includes
#include <knewstuff/knewstuffsecure.h>
/**
Makes possible downloading and installing a DTEP resource files from a server.
@author Andras Mantia
*/
class KURL;
class QNewDTEPStuff: public KNewStuffSecure
{
Q_OBJECT
public:
QNewDTEPStuff(const TQString &type, TQWidget *parentWidget=0)
:KNewStuffSecure(type, parentWidget){};
~QNewDTEPStuff() {};
private:
virtual void installResource();
};
/**
Makes possible downloading and installing a Toolbar resource files from a server.
@author Andras Mantia
*/
class QNewToolbarStuff: public KNewStuffSecure
{
Q_OBJECT
public:
QNewToolbarStuff(const TQString &type, TQWidget *parentWidget=0);
~QNewToolbarStuff() {};
signals:
void loadToolbarFile(const KURL&);
private:
virtual void installResource();
};
/**
Makes possible downloading and installing a template resource files from a server.
@author Andras Mantia
*/
class QNewTemplateStuff: public KNewStuffSecure
{
Q_OBJECT
public:
QNewTemplateStuff(const TQString &type, TQWidget *parentWidget=0);
~QNewTemplateStuff() {};
signals:
void openFile(const KURL&);
private:
virtual void installResource();
};
/**
Makes possible downloading and installing a script resource files from a server.
@author Andras Mantia
*/
class QNewScriptStuff: public KNewStuffSecure
{
Q_OBJECT
public:
QNewScriptStuff(const TQString &type, TQWidget *parentWidget=0)
:KNewStuffSecure(type, parentWidget){};
~QNewScriptStuff() {};
private:
virtual void installResource();
};
/**
Makes possible downloading and installing a documentation resource files from a server.
@author Andras Mantia
*/
class QNewDocStuff: public KNewStuffSecure
{
Q_OBJECT
public:
QNewDocStuff(const TQString &type, TQWidget *parentWidget=0)
:KNewStuffSecure(type, parentWidget){};
~QNewDocStuff() {};
private:
virtual void installResource();
};
#endif
|