~ubuntu-branches/ubuntu/oneiric/gnome-system-monitor/oneiric-proposed

« back to all changes in this revision

Viewing changes to src/procdialogs.h

  • Committer: Bazaar Package Importer
  • Author(s): Loic Minier
  • Date: 2005-08-26 18:38:24 UTC
  • Revision ID: james.westby@ubuntu.com-20050826183824-zh2978nxikpkfxyd
Tags: upstream-2.8.1
ImportĀ upstreamĀ versionĀ 2.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Procman - dialogs
 
2
 * Copyright (C) 2001 Kevin Vandersloot
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Library General Public
 
15
 * License along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 
17
 *
 
18
 */
 
19
#ifndef _PROCDIALOGS_H_
 
20
#define _PROCDIALOGS_H_
 
21
 
 
22
 
 
23
#include <gnome.h>
 
24
#include <procman.h>
 
25
 
 
26
extern int kill_signal;
 
27
 
 
28
void                    procdialog_create_hide_dialog (ProcData *data);
 
29
void                    procdialog_create_kill_dialog (ProcData *data, int signal);
 
30
void                    procdialog_create_renice_dialog (ProcData *data);
 
31
void                    procdialog_create_root_password_dialog (gint type, 
 
32
                                                                ProcData *procdata,
 
33
                                                                gint pid, gint extra_value,
 
34
                                                                gchar *text);
 
35
void                    procdialog_create_memmaps_dialog (ProcData *data);
 
36
void                    procdialog_create_preferences_dialog (ProcData *data);
 
37
 
 
38
#endif
 
39