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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* Procman - callbacks
* Copyright (C) 2001 Kevin Vandersloot
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef _PROCMAN_CALLBACKS_H_
#define _PROCMAN_CALLBACKS_H_
#include <gtk/gtk.h>
#include "procman.h"
#include "gsm_color_button.h"
void cb_show_memory_maps (GtkAction *action, gpointer data);
void cb_show_open_files (GtkAction *action, gpointer data);
void cb_show_lsof(GtkAction *action, gpointer data);
void cb_renice (GtkAction *action, GtkRadioAction *current, gpointer data);
void cb_end_process (GtkAction *action, gpointer data);
void cb_kill_process (GtkAction *action, gpointer data);
void cb_edit_preferences (GtkAction *action, gpointer data);
void cb_help_contents (GtkAction *action, gpointer data);
void cb_about (GtkAction *action, gpointer data);
void cb_app_exit (GtkAction *action, gpointer data);
gboolean cb_app_delete (GtkWidget *window, GdkEventAny *event, gpointer data);
void cb_end_process_button_pressed (GtkButton *button, gpointer data);
void cb_logout (GtkButton *button, gpointer data);
void cb_info_button_pressed (GtkButton *button, gpointer user_data);
void cb_cpu_color_changed (GSMColorButton *widget, gpointer user_data);
void cb_mem_color_changed (GSMColorButton *widget, gpointer user_data);
void cb_swap_color_changed (GSMColorButton *widget, gpointer user_data);
void cb_net_in_color_changed (GSMColorButton *widget, gpointer user_data);
void cb_net_out_color_changed (GSMColorButton *widget, gpointer user_data);
void cb_row_selected (GtkTreeSelection *selection, gpointer data);
gboolean cb_tree_popup_menu (GtkWidget *widget, gpointer data);
gboolean cb_tree_button_pressed (GtkWidget *widget, GdkEventButton *event,
gpointer data);
void cb_change_current_page (GtkNotebook *nb,
gint num, gpointer data);
void cb_switch_page (GtkNotebook *nb, GtkWidget *page,
gint num, gpointer data);
gint cb_update_disks (gpointer data);
gint cb_user_refresh (GtkAction* action, gpointer data);
gint cb_timeout (gpointer data);
void cb_radio_processes(GtkAction *action,
GtkRadioAction *current,
gpointer data);
void cb_kill_sigstop(GtkAction *action,
gpointer data);
void cb_kill_sigcont(GtkAction *action,
gpointer data);
#endif /* _PROCMAN_CALLBACKS_H_ */
|