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
83
84
85
86
87
88
89
90
91
92
93
|
/*
* Mini-Commander Applet
* Copyright (C) 1998 Oliver Maruhn <oliver@maruhn.com>
*
* Author: Oliver Maruhn <oliver@maruhn.com>
*
* 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 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
*/
#include <config.h>
#include <string.h>
#include <glib.h>
#include <gdk/gdk.h>
#include <gtk/gtk.h>
#include <mateconf/mateconf-client.h>
#include "exec.h"
#include "macro.h"
#include "preferences.h"
#include "history.h"
#define KEY_AUDIBLE_BELL "/apps/marco/general/audible_bell"
static void beep (void);
void
mc_exec_command (MCData *mc,
const char *cmd)
{
GError *error = NULL;
char command [1000];
char **argv = NULL;
gchar *str;
strncpy (command, cmd, sizeof (command));
command [sizeof (command) - 1] = '\0';
mc_macro_expand_command (mc, command);
if (!g_shell_parse_argv (command, NULL, &argv, &error)) {
if (error != NULL) {
g_error_free (error);
error = NULL;
}
return;
}
if(!gdk_spawn_on_screen (gtk_widget_get_screen (GTK_WIDGET (mc->applet)),
g_get_home_dir (), argv, NULL,
G_SPAWN_SEARCH_PATH,
NULL, NULL, NULL,
&error)) {
str = g_strconcat ("(?)", command, NULL);
gtk_entry_set_text (GTK_ENTRY (mc->entry), str);
//gtk_editable_set_position (GTK_EDITABLE (mc->entry), 0);
mc->error = TRUE;
beep ();
g_free (str);
} else {
gtk_entry_set_text (GTK_ENTRY (mc->entry), (gchar *) "");
append_history_entry (mc, cmd, FALSE);
}
g_strfreev (argv);
if (error != NULL)
g_error_free (error);
}
static void beep (void)
{
MateConfClient *default_client;
gboolean audible_bell_set;
default_client = mateconf_client_get_default ();
audible_bell_set = mateconf_client_get_bool (default_client, KEY_AUDIBLE_BELL, NULL);
if (audible_bell_set) {
gdk_beep ();
}
}
|