blob: 8bbc8605c7439ab90c00a9663faa6280913fa3bc (
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 <kmessagebox.h>
#include <klocale.h>
#include <kstandarddirs.h>
extern "C"
{
Plugin *create_plugin()
{
KGlobal::locale()->insertCatalogue("nexscope");
return new NexPlugin();
}
}
NexPlugin::NexPlugin()
{
connect(&process, SIGNAL(processExited(KProcess *)), this, SLOT(processExited(KProcess *)));
}
NexPlugin::~NexPlugin()
{
process.kill();
}
void NexPlugin::init()
{
process << KStandardDirs::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(KProcess::NotifyOnExit, (KProcess::Communication)(KProcess::Stdin | KProcess::Stdout)))
{
KMessageBox::error(0, i18n("Unable to start noatunNex. Check your installation."));
unload();
}
}
void NexPlugin::processExited(KProcess *)
{
unload();
}
#include "noatunplugin.moc"
|