You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
127 lines
2.9 KiB
127 lines
2.9 KiB
/***************************************************************************
|
|
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 <tdenewstuff/knewstuffsecure.h>
|
|
/**
|
|
Makes possible downloading and installing a DTEP resource files from a server.
|
|
|
|
@author Andras Mantia
|
|
*/
|
|
|
|
class KURL;
|
|
|
|
class QNewDTEPStuff: public TDENewStuffSecure
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
QNewDTEPStuff(const TQString &type, TQWidget *parentWidget=0)
|
|
:TDENewStuffSecure(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 TDENewStuffSecure
|
|
{
|
|
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 TDENewStuffSecure
|
|
{
|
|
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 TDENewStuffSecure
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
QNewScriptStuff(const TQString &type, TQWidget *parentWidget=0)
|
|
:TDENewStuffSecure(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 TDENewStuffSecure
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
QNewDocStuff(const TQString &type, TQWidget *parentWidget=0)
|
|
:TDENewStuffSecure(type, parentWidget){};
|
|
~QNewDocStuff() {};
|
|
|
|
private:
|
|
virtual void installResource();
|
|
};
|
|
|
|
#endif
|