summaryrefslogtreecommitdiffstats
path: root/src/newstuff/newscript.cpp
blob: 697f44989ec69fa824ab1149067601d70e200327 (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
/***************************************************************************
    copyright            : (C) 2006 by Robby Stephenson
    email                : [email protected]
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of version 2 of the GNU General Public License as  *
 *   published by the Free Software Foundation;                            *
 *                                                                         *
 ***************************************************************************/

#include "newscript.h"
#include "manager.h"

#include <kurl.h>

#include <tqwidget.h>

using Tellico::NewStuff::NewScript;

NewScript::NewScript(Manager* manager_, TQWidget* parentWidget_)
#if KDE_IS_VERSION(3,3,90)
    : KNewStuffSecure(TQString::fromLatin1("tellico/data-source"), parentWidget_)
#else
    : TQObject(parentWidget_)
#endif
    , m_manager(manager_), m_success(false) {
}

void NewScript::installResource() {
  // m_tarName is protected in superclass
  KURL u;
  u.setPath(m_tarName);
  m_success = m_manager->installScript(u);
  m_url = u;
}

#if KDE_IS_VERSION(3,3,90)
#include <knewstuff/knewstuffsecure.h>
#define SUPERCLASS KNewStuffSecure
#else
#define SUPERCLASS TQObject
#endif

#include "newscript.moc"
#undef SUPERCLASS