blob: fe4d569989dd47a5f04d590ccaa7a68d8f3370bb (
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
|
#include "nex.h"
#include "noatunplugin.h"
#include <kprocess.h>
#include <tdemessagebox.h>
#include <tdelocale.h>
#include <kstandarddirs.h>
extern "C"
{
KDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("nexscope");
return new NexPlugin();
}
}
NexPlugin::NexPlugin()
{
connect(&process, TQ_SIGNAL(processExited(TDEProcess *)), this, TQ_SLOT(processExited(TDEProcess *)));
}
NexPlugin::~NexPlugin()
{
process.kill();
}
void NexPlugin::init()
{
process << TDEStandardDirs::findExe("nexscope.bin");
// Note that process.start() will fail if findExe fails, so there's no real need
// for two separate checks.
if(!process.start(TDEProcess::NotifyOnExit, (TDEProcess::Communication)(TDEProcess::Stdin | TDEProcess::Stdout)))
{
KMessageBox::error(0, i18n("Unable to start noatunNex. Check your installation."));
unload();
}
}
void NexPlugin::processExited(TDEProcess *)
{
unload();
}
#include "noatunplugin.moc"
|