File: toolboxScripts.c

package info (click to toggle)
open-vm-tools 1%3A8.4.2-261024-1%2Bbuild1
  • links: PTS, VCS
  • area: contrib
  • in suites: squeeze-lts
  • size: 20,376 kB
  • ctags: 30,043
  • sloc: ansic: 164,785; sh: 10,713; cpp: 6,525; makefile: 3,386
file content (884 lines) | stat: -rw-r--r-- 28,318 bytes parent folder | download | duplicates (2)
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
/*********************************************************
 * Copyright (C) 2005 VMware, Inc. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation version 2.1 and no 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 Lesser GNU General Public
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser 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.
 *
 *********************************************************/

/*
 * toolboxScripts.c --
 *
 *     The scripts tab for the linux gtk toolbox
 */

#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#if defined(__FreeBSD__)
#include <sys/param.h>
#include <sys/syslimits.h>
#endif

#include "toolboxGtkInt.h"
#include "guestApp.h"
#include "conf.h"
#include "debug.h"
#include "str.h"
#include "posix.h"
#include "procMgr.h"
#include "file.h"
#include "util.h"

/*
 * From toolboxInt.h
 */
GtkWidget *scriptsApply;


/*
 * Globals
 */
/* X terminal application and option (to launch vi to edit scripts). */
static char *termApp;
static char *termAppOption;
static GKeyFile *confDict;
static GtkWidget *scriptsUseScript;
static GtkWidget *scriptsDefaultScript;
static GtkWidget *scriptsCustomScript;
static GtkWidget *scriptsEdit;
static GtkWidget *scriptsRun;
static GtkWidget *scriptsPath;
static GtkWidget *scriptsBrowse;
static GtkWidget *scriptsFileDlg;
static GtkWidget *scriptsCombo;

static int scriptsUseFileDlg;

void Scripts_UpdateEnabled(void);
void Scripts_OnComboChanged(gpointer entry, gpointer data);
void Scripts_OnUseScriptToggled(gpointer entry, gpointer data);
void Scripts_OnDefaultScriptToggled(gpointer btn, gpointer data);
void Scripts_OnBrowse(gpointer btn, gpointer data);
void Scripts_OnEdit(gpointer btn, gpointer data);
void Scripts_OnRun(gpointer btn, gpointer data);
void Scripts_BrowseOnOk(gpointer btn, gpointer data);
void Scripts_BrowseOnCancel(gpointer btn, gpointer data);
gint Scripts_BrowseOnClose(GtkWidget *widget, GdkEvent *event, gpointer data);
void Scripts_BrowseOnChanged(gpointer entry, gpointer data);
void Scripts_PathOnChanged(GtkEditable *editable, gpointer data);


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_Create  --
 *
 *      Create, layout, and init the Scripts tab UI and all its widgets.
 *
 * Results:
 *      The Scripts tab widget (it's a vbox).
 *
 * Side effects:
 *      None.
 *
 *-----------------------------------------------------------------------------
 */

GtkWidget*
Scripts_Create(GtkWidget* mainWnd)
{
   GtkWidget* scriptstab;
   GtkWidget* hbox;
   GtkWidget* label;
   GList *items = NULL;
   GSList *radiobtn_group = NULL;

   confDict = Toolbox_LoadToolsConf();

   scriptstab = gtk_vbox_new(FALSE, 10);
   gtk_widget_show(scriptstab);
   gtk_container_set_border_width(GTK_CONTAINER(scriptstab), 10);

   /* Only root can edit scripts. */
   if (geteuid() != 0) {
      label =
         gtk_label_new("This option is enabled only if you run VMware Tools as root.");
      gtk_widget_show(label);
      gtk_box_pack_start(GTK_BOX(scriptstab), label, FALSE, FALSE, 0);
   } else {
      hbox = gtk_hbox_new(FALSE, 10);
      gtk_widget_show(hbox);
      gtk_box_pack_start(GTK_BOX(scriptstab), hbox, FALSE, FALSE, 0);

#ifdef GTK2
      label = gtk_label_new_with_mnemonic("Script Even_t");
#else
      label = gtk_label_new("Script Event");
#endif
      gtk_widget_show(label);
      gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);

      scriptsCombo = gtk_combo_new();
      gtk_widget_show(scriptsCombo);
      gtk_box_pack_start(GTK_BOX(hbox), scriptsCombo, TRUE, TRUE, 0);
      items = g_list_append(items, SCRIPT_SUSPEND);
      items = g_list_append(items, SCRIPT_RESUME);
      items = g_list_append(items, SCRIPT_OFF);
      items = g_list_append(items, SCRIPT_ON);
      gtk_combo_set_popdown_strings(GTK_COMBO(scriptsCombo), items);
      gtk_combo_set_use_arrows(GTK_COMBO(scriptsCombo), TRUE);
      gtk_combo_set_use_arrows_always(GTK_COMBO(scriptsCombo), TRUE);
      gtk_entry_set_editable(GTK_ENTRY(GTK_COMBO(scriptsCombo)->entry), FALSE);
      gtk_signal_connect(GTK_OBJECT(GTK_COMBO(scriptsCombo)->entry), "changed",
                         GTK_SIGNAL_FUNC(Scripts_OnComboChanged), NULL);
#ifdef GTK2
      gtk_label_set_mnemonic_widget(GTK_LABEL(label), GTK_COMBO(scriptsCombo)->entry);

      scriptsUseScript = gtk_check_button_new_with_mnemonic("Use Scr_ipt");
#else
      scriptsUseScript = gtk_check_button_new_with_label("Use Script");
#endif
      gtk_widget_show(scriptsUseScript);
      gtk_box_pack_start(GTK_BOX(scriptstab), scriptsUseScript, FALSE, FALSE, 0);
      gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(scriptsUseScript), TRUE);
      gtk_label_set_justify(GTK_LABEL(GTK_BIN(GTK_BUTTON(scriptsUseScript))->child),
                            GTK_JUSTIFY_LEFT);
      gtk_signal_connect(GTK_OBJECT(scriptsUseScript), "toggled",
                         GTK_SIGNAL_FUNC(Scripts_OnUseScriptToggled), NULL);

      /*
       * Try to find an available x terminal app to launch a text editor.
       *
       * Options with different X terminal apps to launch the editor:
       *    xterm -e [app] foo.txt
       *    rxvt -e [app] foo.txt
       *    konsole -e [app] foo.txt
       *    gnome-terminal -x [app] foo.txt
       */
      termApp = NULL;
      termAppOption = "-e";
      if (getenv("GNOME_DESKTOP_SESSION_ID") != NULL &&
          GuestApp_FindProgram("gnome-terminal")) {
         termApp = "gnome-terminal";
         termAppOption = "-x";
      } else if (getenv("KDE_FULL_SESSION") != NULL &&
                 !strcmp(getenv("KDE_FULL_SESSION"), "true") &&
                 GuestApp_FindProgram("konsole")) {
         termApp = "konsole";
      } else if (GuestApp_FindProgram("xterm")) {
         termApp = "xterm";
      } else if (GuestApp_FindProgram("rxvt")) {
         termApp = "rxvt";
      } else if (GuestApp_FindProgram("konsole")) {
         termApp = "konsole";
      } else if (GuestApp_FindProgram("gnome-terminal")) {
         termApp = "gnome-terminal";
         termAppOption = "-x";
      }

#ifdef GTK2
      scriptsDefaultScript =
         gtk_radio_button_new_with_mnemonic(NULL,("_Default Script"));
#else
      scriptsDefaultScript =
         gtk_radio_button_new_with_label(NULL,("Default Script"));
#endif
      gtk_widget_show(scriptsDefaultScript);
      gtk_box_pack_start(GTK_BOX(scriptstab), scriptsDefaultScript, FALSE, FALSE, 0);
      radiobtn_group  =
         gtk_radio_button_group(GTK_RADIO_BUTTON(scriptsDefaultScript));
      gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(scriptsDefaultScript), TRUE);
      gtk_signal_connect(GTK_OBJECT(scriptsDefaultScript), "toggled",
                         GTK_SIGNAL_FUNC(Scripts_OnDefaultScriptToggled), NULL);

#ifdef GTK2
      scriptsCustomScript = gtk_radio_button_new_with_mnemonic(NULL,("Cu_stom Script"));
#else
      scriptsCustomScript = gtk_radio_button_new_with_label(NULL,("Custom Script"));
#endif
      gtk_widget_show(scriptsCustomScript);
      gtk_box_pack_start(GTK_BOX(scriptstab), scriptsCustomScript, FALSE, FALSE, 0);
      gtk_radio_button_set_group(GTK_RADIO_BUTTON(scriptsCustomScript),
                                 radiobtn_group);

      hbox = gtk_hbox_new(FALSE, 10);
      gtk_widget_show(hbox);
      gtk_box_pack_start(GTK_BOX(scriptstab), hbox, FALSE, FALSE, 0);

      scriptsPath = gtk_entry_new();
      gtk_widget_show(scriptsPath);
      gtk_box_pack_start(GTK_BOX(hbox), scriptsPath, TRUE, TRUE, 0);
      gtk_widget_set_sensitive(scriptsPath, FALSE);
      gtk_signal_connect(GTK_OBJECT(scriptsPath), "changed",
                         GTK_SIGNAL_FUNC(Scripts_PathOnChanged), NULL);

#ifdef GTK2
      scriptsBrowse = gtk_button_new_with_mnemonic("_Browse...");
#else
      scriptsBrowse = gtk_button_new_with_label("Browse...");
#endif
      gtk_widget_show(scriptsBrowse);
      if (termApp) {
         gtk_box_pack_start(GTK_BOX(hbox), scriptsBrowse, FALSE, FALSE, 0);
      } else {
         gtk_box_pack_end(GTK_BOX(hbox), scriptsBrowse, FALSE, FALSE, 0);
      }
      gtk_widget_set_sensitive(scriptsBrowse, FALSE);
      gtk_signal_connect(GTK_OBJECT(scriptsBrowse), "clicked",
                         GTK_SIGNAL_FUNC(Scripts_OnBrowse), NULL);

      /* Only create edit button if there is an available X terminal app. */
      if (termApp) {
#ifdef GTK2
         scriptsEdit = gtk_button_new_with_mnemonic("_Edit...");
#else
         scriptsEdit = gtk_button_new_with_label("Edit...");
#endif
         gtk_widget_show(scriptsEdit);
         gtk_box_pack_end(GTK_BOX(hbox), scriptsEdit, FALSE, FALSE, 0);
         gtk_signal_connect(GTK_OBJECT(scriptsEdit), "clicked",
                            GTK_SIGNAL_FUNC(Scripts_OnEdit), NULL);
      }

      hbox = gtk_hbox_new(FALSE, 10);
      gtk_widget_show(hbox);
      gtk_box_pack_end(GTK_BOX(scriptstab), hbox, FALSE, FALSE, 0);

#ifdef GTK2
      scriptsRun = gtk_button_new_with_mnemonic("_Run Now");
#else
      scriptsRun = gtk_button_new_with_label("Run Now");
#endif
      gtk_widget_show(scriptsRun);
      gtk_box_pack_end(GTK_BOX(hbox), scriptsRun, FALSE, FALSE, 0);
      gtk_signal_connect(GTK_OBJECT(scriptsRun), "clicked",
                         GTK_SIGNAL_FUNC(Scripts_OnRun), NULL);

#ifdef GTK2
      scriptsApply = gtk_button_new_with_mnemonic("_Apply");
#else
      scriptsApply = gtk_button_new_with_label("Apply");
#endif
      gtk_widget_show(scriptsApply);
      gtk_box_pack_end(GTK_BOX(hbox), scriptsApply, FALSE, FALSE, 0);
      gtk_widget_set_sensitive(scriptsApply, FALSE);
      gtk_signal_connect(GTK_OBJECT(scriptsApply), "clicked",
                         GTK_SIGNAL_FUNC(Scripts_OnApply), NULL);

      gtk_signal_emit_by_name(GTK_OBJECT(GTK_COMBO(scriptsCombo)->entry), "changed");

   }
   return scriptstab;
}


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_UpdateEnabled --
 *
 *      Update the enabled/disabled state of the widgets on the Scripts tab.
 *
 * Results:
 *      None.
 *
 * Side effects:
 *      None.
 *
 *-----------------------------------------------------------------------------
 */

void
Scripts_UpdateEnabled(void)
{
   Bool enabledUse, enabledCustom;

   enabledUse = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(scriptsUseScript));
   enabledCustom =
      gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(scriptsCustomScript));
   gtk_widget_set_sensitive(scriptsDefaultScript, enabledUse);
   gtk_widget_set_sensitive(scriptsCustomScript, enabledUse);
   if (termApp) {
      gtk_widget_set_sensitive(scriptsEdit, enabledUse && enabledCustom);
   }
   gtk_widget_set_sensitive(scriptsRun, enabledUse);
   gtk_widget_set_sensitive(scriptsPath, enabledUse && enabledCustom);
   gtk_widget_set_sensitive(scriptsBrowse, enabledUse && enabledCustom);
}


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_OnComboChanged --
 *
 *      Callback for the gtk signal "changed" on the Scripts tab's combo box.
 *      Lookup the script paths based on the entry selected and update the UI
 *      to match the contents of confDict. It temporarily blocks the  "toggled"
 *      signals because the callbacks for those signal should only be called
 *      if a user makes a change, not when the state is changed internally
 *
 * Results:
 *      None.
 *
 * Side effects:
 *      The internal state of a bunch of widget is changed.
 *
 *-----------------------------------------------------------------------------
 */

void
Scripts_OnComboChanged(gpointer entry, // IN: the entry selected
                       gpointer data)  // IN: unused
{
   const char *defaultPath;
   const char *currentState;
   const char *confName = NULL;
   gchar *path;

   currentState = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(scriptsCombo)->entry));
   if (strcmp(currentState, SCRIPT_SUSPEND) == 0) {
      confName = CONFNAME_SUSPENDSCRIPT;
   } else if (strcmp(currentState, SCRIPT_RESUME) == 0) {
      confName = CONFNAME_RESUMESCRIPT;
   } else if (strcmp(currentState, SCRIPT_OFF) == 0) {
      confName = CONFNAME_POWEROFFSCRIPT;
   } else if (strcmp(currentState, SCRIPT_ON) == 0) {
      confName = CONFNAME_POWERONSCRIPT;
   }

   if (confName != NULL) {
      path = g_key_file_get_string(confDict, "powerops", confName, NULL);
      defaultPath = GuestApp_GetDefaultScript(confName);
      if (path == NULL) {
         if (g_key_file_has_key(confDict, "powerops", confName, NULL)) {
            path = g_strdup("");
         } else {
            path = g_strdup(defaultPath);
         }
      }
   } else {
      path = g_strdup("");
      defaultPath = "";
   }
   
   gtk_signal_handler_block_by_func(GTK_OBJECT(scriptsUseScript),
                                    GTK_SIGNAL_FUNC(Scripts_OnUseScriptToggled),
                                    NULL);
   gtk_signal_handler_block_by_func(GTK_OBJECT(scriptsDefaultScript),
                                    GTK_SIGNAL_FUNC(Scripts_OnDefaultScriptToggled),
                                    NULL);
   if (strcmp(path, "") == 0) {
      gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(scriptsUseScript), FALSE);
      path = g_strdup(defaultPath);
   } else {
      gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(scriptsUseScript), TRUE);
   }

   if (strcmp(path, defaultPath) == 0) {
      gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(scriptsDefaultScript),
                                   TRUE);
      gtk_entry_set_text(GTK_ENTRY(scriptsPath), (char*)defaultPath);
   }
   else {
      gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(scriptsCustomScript),
                                   TRUE);
      gtk_entry_set_text(GTK_ENTRY(scriptsPath), (char*)path);
   }

   gtk_signal_handler_unblock_by_func(GTK_OBJECT(scriptsDefaultScript),
                                      GTK_SIGNAL_FUNC(Scripts_OnDefaultScriptToggled),
                                      NULL);
   gtk_widget_set_sensitive(scriptsApply, FALSE);

   gtk_signal_handler_unblock_by_func(GTK_OBJECT(scriptsUseScript),
                                      GTK_SIGNAL_FUNC(Scripts_OnUseScriptToggled),
                                      NULL);
   Scripts_UpdateEnabled();
   g_free(path);
}


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_OnDefaultScriptToggled --
 *
 *      Callback for the gtk signal "toggled" on the Scripts tab's default
 *      checkbox. This is a passthru to Scripts_UpdateEnabled.
 *
 * Results:
 *      None.
 *
 * Side effects:
 *      Scripts_UpdateEnabled is called, it will affect the state of various widgets.
 *
 *-----------------------------------------------------------------------------
 */

void
Scripts_OnDefaultScriptToggled(gpointer btn,  // IN: unused
                               gpointer data) // IN: unused
{
   Scripts_UpdateEnabled();
   gtk_widget_set_sensitive(scriptsApply, TRUE);
}


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_OnUseScriptToggled --
 *
 *      Callback for the gtk signal "toggled" on the Scripts tab's use
 *      checkbox. This is a passthru to Scripts_UpdateEnabled.
 *
 * Results:
 *      None.
 *
 * Side effects:
 *      Scripts_UpdateEnabled is called, it will affect the state of various widgets.
 *
 *-----------------------------------------------------------------------------
 */

void
Scripts_OnUseScriptToggled(gpointer btn,  // IN: unused
                           gpointer data) // IN: unused
{
   Scripts_UpdateEnabled();
   gtk_widget_set_sensitive(scriptsApply, TRUE);
}


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_OnApply --
 *
 *      Callback for the gtk signal "clicked" on the Scripts tab's apply
 *      button. This updates the confdict both in memory and on disk with
 *      the user's changes.
 *
 * Results:
 *      None.
 *
 * Side effects:
 *      tools.conf is changed on disk
 *
 *-----------------------------------------------------------------------------
 */

void
Scripts_OnApply(gpointer btn,  // IN: unused
                gpointer data) // IN: unused
{
   const char *path;
   const char *defaultPath;
   const char *currentState;
   const char *confName = NULL;
   Bool enabledUse, enabledDef;

   currentState = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(scriptsCombo)->entry));
   if (strcmp(currentState, SCRIPT_SUSPEND) == 0) {
      confName = CONFNAME_SUSPENDSCRIPT;
   } else if (strcmp(currentState, SCRIPT_RESUME) == 0) {
      confName = CONFNAME_RESUMESCRIPT;
   } else if (strcmp(currentState, SCRIPT_OFF) == 0) {
      confName = CONFNAME_POWEROFFSCRIPT;
   } else if (strcmp(currentState, SCRIPT_ON) == 0) {
      confName = CONFNAME_POWERONSCRIPT;
   } else {
      /* Not reached? */
      return;
   }

   defaultPath = GuestApp_GetDefaultScript(confName);
   enabledUse = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(scriptsUseScript));
   enabledDef = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(scriptsDefaultScript));

   if (!enabledUse) {
      path = "";
   } else {
      if (enabledDef) {
         path = defaultPath;
      } else {
         path = gtk_editable_get_chars(GTK_EDITABLE(scriptsPath), 0, -1);
      }
   }

   g_key_file_set_string(confDict, "powerops", confName, path);

   Toolbox_SaveToolsConf(confDict);
   Scripts_UpdateEnabled();
   gtk_widget_set_sensitive(scriptsApply, FALSE);

   gtk_signal_handler_block_by_func(GTK_OBJECT(scriptsPath),
                                    GTK_SIGNAL_FUNC(Scripts_PathOnChanged),
                                    NULL);
   gtk_entry_set_text(GTK_ENTRY(scriptsPath), (char *)path);
   gtk_signal_handler_unblock_by_func(GTK_OBJECT(scriptsPath),
                                      GTK_SIGNAL_FUNC(Scripts_PathOnChanged),
                                      NULL);
}


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_OnEdit --
 *
 *      Callback for the gtk signal "clicked" on the Scripts tab's edit
 *      button. This will fork and exec an  editor.
 *
 * Results:
 *      None.
 *
 * Side effects:
 *      An editor is started.
 *
 *-----------------------------------------------------------------------------
 */

void
Scripts_OnEdit(gpointer btn,  // IN: unused
               gpointer data) // IN: unused
{
   char *editor;
   char *scriptName;
   const char *argv[5];
   size_t idx = 0;

   if (!termApp) {
      ToolsMain_MsgBox("Error", "Unable to locate terminal application in "
                       "which to edit script.");
      return;
   }

   editor = Posix_Getenv("EDITOR");
   if (editor == NULL || strlen(editor) == 0) {
      Debug("EDITOR not set, defaulting to vi.\n");
      editor = g_find_program_in_path("vi");
      if (editor == NULL) {
         ToolsMain_MsgBox("Error",
                          "Cannot edit script because the an editor was not found.");
         return;
      } else {
         /*
          * Make sure "editor" is allocated with malloc(), so that the call to
          * free() later does the right thing.
          */
         char *tmp = editor;
         editor = Util_SafeStrdup(tmp);
         g_free(tmp);
      }
   } else {
      /*
       * Strings retuned by Posix_Getenv should not be freed
       * so we make a duplicate that can be freed so we can
       * have a common code path below.
       */
      editor = Util_SafeStrdup(editor);
   }

   scriptName = Toolbox_GetScriptPath(gtk_entry_get_text(GTK_ENTRY(scriptsPath)));
   argv[idx++] = termApp;
   if (termAppOption != NULL && strlen(termAppOption) > 0) {
      argv[idx++] = termAppOption;
   }
   argv[idx++] = editor;
   argv[idx++] = scriptName;
   argv[idx++] = NULL;

   /* Restore the original LD_LIBRARY_PATH before invoking external apps. */
   if (!g_spawn_sync(NULL, (gchar **) argv, (gchar **) gNativeEnviron,
                     G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, NULL, NULL, NULL)) {
      gchar *msg = g_strdup_printf("Cannot edit script: failed to execute editor %s.",
                                   editor);
      ToolsMain_MsgBox("Error", msg);
      g_free(msg);
   }

   g_free(scriptName);
   free(editor);
}


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_OnRun --
 *
 *      Callback for the gtk signal "clicked" on the Scripts tab's run
 *      button. This forks and execs a script
 *
 * Results:
 *      None.
 *
 * Side effects:
 *      A script is run as root. It may have many side effects.
 *
 *-----------------------------------------------------------------------------
 */

void
Scripts_OnRun(gpointer btn,  // IN: unused
              gpointer data) // IN: unused
{
   char *scriptName;

   scriptName = Toolbox_GetScriptPath(gtk_entry_get_text(GTK_ENTRY(scriptsPath)));
   if (!ProcMgr_ExecSync(scriptName, NULL)) {
      ToolsMain_MsgBox("Error", "Failure executing script, please ensure the "
                       "file exists and is executable.");
   }

   g_free(scriptName);
}


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_OnBrowse --
 *
 *      Callback for the gtk signal "clicked" on the Scripts tab's browse
 *      button. Creates a file selection dialog and puts the resutls in
 *      the Scripts edit box when done. This function blocks the caller
 *      until the user closes the file dialog.
 *
 * Results:
 *      None.
 *
 * Side effects:
 *      None.
 *
 *-----------------------------------------------------------------------------
 */

void
Scripts_OnBrowse(gpointer btn,  // IN: unused
                 gpointer data) // IN: unused
{
   char path[PATH_MAX];
   const char *defaultPath;
   struct stat statBuf;

   scriptsFileDlg = gtk_file_selection_new("Select a file");

   scriptsUseFileDlg = TRUE;

   gtk_window_set_modal(GTK_WINDOW(scriptsFileDlg), TRUE);
   gtk_widget_show(scriptsFileDlg);

   defaultPath = gtk_entry_get_text(GTK_ENTRY(scriptsPath));
   Str_Strcpy(path, defaultPath, sizeof path);

   /*
    * If the filename represents a directory but does not end with a path
    * separator, append a path separator to it so that the file chooser will
    * start off in that directory instead of its parent.
    */
   if (path[strlen(path) - 1] != '/' &&
       stat(path, &statBuf) == 0 &&
       S_ISDIR(statBuf.st_mode)) {
      Str_Strcat(path, "/", sizeof path);
   }

   gtk_file_selection_set_filename(GTK_FILE_SELECTION(scriptsFileDlg),
                                   path);
   gtk_file_selection_hide_fileop_buttons(GTK_FILE_SELECTION(scriptsFileDlg));
   gtk_widget_set_sensitive(GTK_FILE_SELECTION(scriptsFileDlg)->ok_button, FALSE);
#ifdef GTK2
   gtk_file_selection_set_select_multiple(GTK_FILE_SELECTION(scriptsFileDlg), FALSE);
#else
   gtk_clist_set_selection_mode(GTK_CLIST(GTK_FILE_SELECTION(scriptsFileDlg)->
                                          file_list),
                                GTK_SELECTION_BROWSE);
#endif
   gtk_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(scriptsFileDlg)->ok_button),
                      "clicked", GTK_SIGNAL_FUNC(Scripts_BrowseOnOk), &path);
   gtk_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(scriptsFileDlg)->cancel_button),
                      "clicked", GTK_SIGNAL_FUNC(Scripts_BrowseOnCancel), NULL);
   gtk_signal_connect(GTK_OBJECT(scriptsFileDlg),
                      "delete_event", GTK_SIGNAL_FUNC(Scripts_BrowseOnClose), NULL);
   gtk_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(scriptsFileDlg)->selection_entry),
                      "changed", GTK_SIGNAL_FUNC(Scripts_BrowseOnChanged), 
                      GTK_FILE_SELECTION(scriptsFileDlg)->ok_button);


   /* Block here and pump messages */
   while (gtk_events_pending() || scriptsUseFileDlg) {
      gtk_main_iteration();
   }

   if (scriptsFileDlg != NULL) {
      gtk_widget_destroy(scriptsFileDlg);
   }

   if (*path != 0 && strcmp(path, defaultPath) != 0) {
      gtk_entry_set_text(GTK_ENTRY(scriptsPath), path);
      gtk_widget_set_sensitive(scriptsApply, TRUE);
   }
}


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_BrowseOnChanged --
 *
 *      Callback for the gtk signal "changes" on the Scripts file browser text
 *      entry. Enable/disable the OK button based on whether the entry is NULL.
 *
 * Results:
 *      None.
 *
 * Side effects:
 *      None.
 *
 *-----------------------------------------------------------------------------
 */

void
Scripts_BrowseOnChanged(gpointer entry, // IN: selection_entry
                        gpointer data)  // IN: ok_button
{
   gchar *text = gtk_editable_get_chars(GTK_EDITABLE(entry), 0, -1);
   gtk_widget_set_sensitive(GTK_WIDGET(data), (strlen(text) > 0));
   g_free(text);
}


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_BrowseOnOk --
 *
 *      Callback for the gtk signal "clicked" on the Scripts File Browser OK
 *      button. We save the selected path, hide the File Browser and set the
 *      flag for File Browser use to FALSE so that to quit looping.
 *
 * Results:
 *      None.
 *
 * Side effects:
 *      None.
 *
 *-----------------------------------------------------------------------------
*/

void
Scripts_BrowseOnOk(gpointer btn,  // IN: OK button
                   gpointer data) // IN: path
{
   const char *ret;

   gtk_widget_hide(scriptsFileDlg);

   scriptsUseFileDlg = FALSE;

   ret = gtk_file_selection_get_filename(GTK_FILE_SELECTION(scriptsFileDlg));
   strncpy((char*)data, ret, PATH_MAX);
}


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_BrowseOnCancel --
 *
 *      Callback for the gtk signal "clicked" on the Scripts File Browser 
 *      Cancel button. We hide the File Browser and set the flag for 
 *      File Browser use to FALSE so that to quit looping.
 *
 * Results:
 *      None.
 *
 * Side effects:
 *      None.
 *
 *-----------------------------------------------------------------------------
 */

void
Scripts_BrowseOnCancel(gpointer btn,  // IN: OK button
                       gpointer data) // IN: data
{
   gtk_widget_hide(scriptsFileDlg);

   scriptsUseFileDlg = FALSE;
}


/*
 *-----------------------------------------------------------------------------
 *
 * Scripts_BrowseOnClose --
 *
 *      Callback for the gtk signal "delete_event" on the Scripts File Browser 
 *      Close button from titlebar. We hide the File Browser and set the flag 
 *      for File Browser use to FALSE so that to quit looping and return TRUE
 *      so that not to destroy the window object until we get out of events
 *      loop, after that we will destroy the window.
 *
 * Results:
 *      FALSE if you want the widget to be destroyed or TRUE otherwise.
 *
 * Side effects:
 *      None.
 *
 *-----------------------------------------------------------------------------
 */

gint
Scripts_BrowseOnClose(GtkWidget *widget, GdkEvent *event, gpointer data)
{
   gtk_widget_hide(scriptsFileDlg);

   scriptsUseFileDlg = FALSE;

   return TRUE;
}

/*
 *----------------------------------------------------------------------------
 *
 * Scripts_PathOnChanged --
 *
 *   Callback for gtk signal "changed" on the Scripts path GtkEntry.  This
 *   resets the Apply button back to sensitive mode since the text in the entry
 *   has changed.
 *
 * Results:
 *   None.
 *
 * Side effects:
 *   None.
 *
 *----------------------------------------------------------------------------
 */

void
Scripts_PathOnChanged(GtkEditable *editable, // IN: editable that has changed
                      gpointer data)         // IN: unused
{
   if (editable != (GtkEditable *)scriptsPath) {
      return;
   }

   gtk_widget_set_sensitive(scriptsApply, TRUE);
}