~ubuntu-branches/ubuntu/warty/kdebase/warty

« back to all changes in this revision

Viewing changes to kicker/applets/naughty/NaughtyProcessMonitor.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-09-16 04:51:45 UTC
  • Revision ID: james.westby@ubuntu.com-20040916045145-9vr63kith3k1cpza
Tags: upstream-3.2.2
ImportĀ upstreamĀ versionĀ 3.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Naughty applet - Runaway process monitor for the KDE panel
 
3
 
 
4
    Copyright 2000 Rik Hemsley (rikkus) <rik@kde.org>
 
5
 
 
6
    This program is free software; you can redistribute it and/or modify
 
7
    it under the terms of the GNU General Public License as published by
 
8
    the Free Software Foundation; either version 2 of the License, or
 
9
    (at your option) any later version.
 
10
 
 
11
    This program is distributed in the hope that it will be useful,
 
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
14
    GNU General Public License for more details.
 
15
 
 
16
    You should have received a copy of the GNU General Public License
 
17
    along with this program; if not, write to the Free Software
 
18
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
19
*/
 
20
 
 
21
#ifndef NAUGHTY_PROCESS_MONITOR_H
 
22
#define NAUGHTY_PROCESS_MONITOR_H
 
23
 
 
24
#include <qobject.h>
 
25
 
 
26
class NaughtyProcessMonitorPrivate;
 
27
 
 
28
class NaughtyProcessMonitor : public QObject
 
29
{
 
30
  Q_OBJECT
 
31
 
 
32
  public:
 
33
 
 
34
    NaughtyProcessMonitor
 
35
      (
 
36
       uint interval,
 
37
       uint triggerLevel,
 
38
       QObject * parent = 0,
 
39
       const char * name = 0
 
40
      );
 
41
 
 
42
    virtual ~NaughtyProcessMonitor();
 
43
 
 
44
    void start();
 
45
    void stop();
 
46
 
 
47
    uint triggerLevel() const;
 
48
    void setTriggerLevel(uint);
 
49
    uint interval() const;
 
50
    void setInterval(uint);
 
51
 
 
52
    virtual uint cpuLoad() const;
 
53
    virtual QValueList<ulong> pidList() const;
 
54
    virtual bool getLoad(ulong pid, uint & load) const;
 
55
    virtual QString processName(ulong pid) const;
 
56
    virtual bool canKill(ulong pid) const;
 
57
    virtual bool kill(ulong pid) const;
 
58
 
 
59
  protected slots:
 
60
 
 
61
    void slotTimeout();
 
62
 
 
63
  signals:
 
64
 
 
65
    void load(uint);
 
66
    void runawayProcess(ulong pid, const QString & name);
 
67
 
 
68
  private:
 
69
 
 
70
    void _process(ulong pid, uint load);
 
71
 
 
72
    NaughtyProcessMonitorPrivate * d;
 
73
};
 
74
 
 
75
#endif
 
76