ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/prefs_editor_gtk.cpp
(Generate patch)

Comparing BasiliskII/src/Unix/prefs_editor_gtk.cpp (file contents):
Revision 1.18 by cebix, 2001-07-12T19:48:27Z vs.
Revision 1.28 by gbeauche, 2005-06-19T15:52:09Z

# Line 1 | Line 1
1   /*
2   *  prefs_editor_gtk.cpp - Preferences editor, Unix implementation using GTK+
3   *
4 < *  Basilisk II (C) 1997-2001 Christian Bauer
4 > *  Basilisk II (C) 1997-2005 Christian Bauer
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
# Line 28 | Line 28
28   #include <net/if.h>
29   #include <net/if_arp.h>
30  
31 + #ifdef HAVE_GNOMEUI
32 + #include <gnome.h>
33 + #endif
34 +
35   #include "user_strings.h"
36   #include "version.h"
37   #include "cdrom.h"
# Line 48 | Line 52 | static void create_graphics_pane(GtkWidg
52   static void create_input_pane(GtkWidget *top);
53   static void create_serial_pane(GtkWidget *top);
54   static void create_memory_pane(GtkWidget *top);
55 + static void create_jit_pane(GtkWidget *top);
56   static void read_settings(void);
57  
58  
# Line 60 | Line 65 | struct opt_desc {
65          GtkSignalFunc func;
66   };
67  
68 + struct combo_desc {
69 +        int label_id;
70 + };
71 +
72   static void add_menu_item(GtkWidget *menu, int label_id, GtkSignalFunc func)
73   {
74          GtkWidget *item = gtk_menu_item_new_with_label(GetString(label_id));
# Line 150 | Line 159 | static GtkWidget *make_option_menu(GtkWi
159          return menu;
160   }
161  
162 < static GtkWidget *make_entry(GtkWidget *top, int label_id, const char *prefs_item)
162 > static GtkWidget *make_file_entry(GtkWidget *top, int label_id, const char *prefs_item, bool only_dirs = false)
163   {
164          GtkWidget *box, *label, *entry;
165  
# Line 162 | Line 171 | static GtkWidget *make_entry(GtkWidget *
171          gtk_widget_show(label);
172          gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 0);
173  
165        entry = gtk_entry_new();
166        gtk_widget_show(entry);
174          const char *str = PrefsFindString(prefs_item);
175          if (str == NULL)
176                  str = "";
177 +
178 + #ifdef HAVE_GNOMEUI
179 +        entry = gnome_file_entry_new(NULL, GetString(label_id));
180 +        if (only_dirs)
181 +                gnome_file_entry_set_directory(GNOME_FILE_ENTRY(entry), true);
182 +        gtk_entry_set_text(GTK_ENTRY(gnome_file_entry_gtk_entry(GNOME_FILE_ENTRY(entry))), str);
183 + #else
184 +        entry = gtk_entry_new();
185          gtk_entry_set_text(GTK_ENTRY(entry), str);
186 + #endif
187 +        gtk_widget_show(entry);
188          gtk_box_pack_start(GTK_BOX(box), entry, TRUE, TRUE, 0);
189          return entry;
190   }
191  
192 + static const gchar *get_file_entry_path(GtkWidget *entry)
193 + {
194 + #ifdef HAVE_GNOMEUI
195 +        return gnome_file_entry_get_full_path(GNOME_FILE_ENTRY(entry), false);
196 + #else
197 +        return gtk_entry_get_text(GTK_ENTRY(entry));
198 + #endif
199 + }
200 +
201   static GtkWidget *make_checkbox(GtkWidget *top, int label_id, const char *prefs_item, GtkSignalFunc func)
202   {
203          GtkWidget *button = gtk_check_button_new_with_label(GetString(label_id));
# Line 182 | Line 208 | static GtkWidget *make_checkbox(GtkWidge
208          return button;
209   }
210  
211 + static GtkWidget *make_combobox(GtkWidget *top, int label_id, const char *prefs_item, const combo_desc *options)
212 + {
213 +        GtkWidget *box, *label, *combo;
214 +        char str[32];
215 +
216 +        box = gtk_hbox_new(FALSE, 4);
217 +        gtk_widget_show(box);
218 +        gtk_box_pack_start(GTK_BOX(top), box, FALSE, FALSE, 0);
219 +
220 +        label = gtk_label_new(GetString(label_id));
221 +        gtk_widget_show(label);
222 +        gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 0);
223 +
224 +        GList *glist = NULL;
225 +        while (options->label_id) {
226 +                glist = g_list_append(glist, (void *)GetString(options->label_id));
227 +                options++;
228 +        }
229 +        
230 +        combo = gtk_combo_new();
231 +        gtk_widget_show(combo);
232 +        gtk_combo_set_popdown_strings(GTK_COMBO(combo), glist);
233 +        
234 +        sprintf(str, "%d", PrefsFindInt32(prefs_item));
235 +        gtk_entry_set_text(GTK_ENTRY(GTK_COMBO(combo)->entry), str);
236 +        gtk_box_pack_start(GTK_BOX(box), combo, TRUE, TRUE, 0);
237 +        
238 +        return combo;
239 + }
240  
241 +
242   /*
243   *  Show preferences editor
244   *  Returns true when user clicked on "Start", false otherwise
# Line 225 | Line 281 | static void dl_quit(GtkWidget *dialog)
281   // "About" selected
282   static void mn_about(...)
283   {
284 <        GtkWidget *dialog, *label, *button;
284 >        GtkWidget *dialog;
285 >
286 > #ifdef HAVE_GNOMEUI
287 >
288 >        char version[32];
289 >        sprintf(version, "Version %d.%d", VERSION_MAJOR, VERSION_MINOR);
290 >        const char *authors[] = {
291 >                "Christian Bauer",
292 >                "Orlando Bassotto",
293 >                "Gwenolé Beauchesne",
294 >                "Marc Chabanas",
295 >                "Marc Hellwig",
296 >                "Biill Huey",
297 >                "Brian J. Johnson",
298 >                "Jürgen Lachmann",
299 >                "Samuel Lander",
300 >                "David Lawrence",
301 >                "Lauri Pesonen",
302 >                "Bernd Schmidt",
303 >                "and others",
304 >                NULL
305 >        };
306 >        dialog = gnome_about_new(
307 >                "Basilisk II",
308 >                version,
309 >                "Copyright (C) 1997-2004 Christian Bauer",
310 >                authors,
311 >                "Basilisk II comes with ABSOLUTELY NO WARRANTY."
312 >                "This is free software, and you are welcome to redistribute it"
313 >                "under the terms of the GNU General Public License.",
314 >                NULL
315 >        );
316 >        gnome_dialog_set_parent(GNOME_DIALOG(dialog), GTK_WINDOW(win));
317 >
318 > #else
319 >
320 >        GtkWidget *label, *button;
321  
322          char str[512];
323          sprintf(str,
324                  "Basilisk II\nVersion %d.%d\n\n"
325 <                "Copyright (C) 1997-2001 Christian Bauer et al.\n"
325 >                "Copyright (C) 1997-2004 Christian Bauer et al.\n"
326                  "E-mail: Christian.Bauer@uni-mainz.de\n"
327                  "http://www.uni-mainz.de/~bauec002/B2Main.html\n\n"
328                  "Basilisk II comes with ABSOLUTELY NO\n"
# Line 256 | Line 348 | static void mn_about(...)
348          gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->action_area), button, FALSE, FALSE, 0);
349          GTK_WIDGET_SET_FLAGS(button, GTK_CAN_DEFAULT);
350          gtk_widget_grab_default(button);
351 +
352 + #endif
353 +
354          gtk_widget_show(dialog);
355   }
356  
# Line 292 | Line 387 | bool PrefsEditor(void)
387          GtkAccelGroup *accel_group = gtk_accel_group_new();
388          GtkItemFactory *item_factory = gtk_item_factory_new(GTK_TYPE_MENU_BAR, "<main>", accel_group);
389          gtk_item_factory_create_items(item_factory, sizeof(menu_items) / sizeof(menu_items[0]), menu_items, NULL);
390 + #if GTK_CHECK_VERSION(1,3,15)
391 +        gtk_window_add_accel_group(GTK_WINDOW(win), accel_group);
392 + #else
393          gtk_accel_group_attach(accel_group, GTK_OBJECT(win));
394 + #endif
395          GtkWidget *menu_bar = gtk_item_factory_get_widget(item_factory, "<main>");
396          gtk_widget_show(menu_bar);
397          gtk_box_pack_start(GTK_BOX(box), menu_bar, FALSE, TRUE, 0);
# Line 309 | Line 408 | bool PrefsEditor(void)
408          create_input_pane(notebook);
409          create_serial_pane(notebook);
410          create_memory_pane(notebook);
411 +        create_jit_pane(notebook);
412  
413          static const opt_desc buttons[] = {
414                  {STR_START_BUTTON, GTK_SIGNAL_FUNC(cb_start)},
# Line 346 | Line 446 | struct file_req_assoc {
446   // Volume selected for addition
447   static void add_volume_ok(GtkWidget *button, file_req_assoc *assoc)
448   {
449 <        char *file = gtk_file_selection_get_filename(GTK_FILE_SELECTION(assoc->req));
449 >        gchar *file = (gchar *)gtk_file_selection_get_filename(GTK_FILE_SELECTION(assoc->req));
450          gtk_clist_append(GTK_CLIST(volume_list), &file);
451          gtk_widget_destroy(assoc->req);
452          delete assoc;
# Line 355 | Line 455 | static void add_volume_ok(GtkWidget *but
455   // Volume selected for creation
456   static void create_volume_ok(GtkWidget *button, file_req_assoc *assoc)
457   {
458 <        char *file = gtk_file_selection_get_filename(GTK_FILE_SELECTION(assoc->req));
458 >        gchar *file = (gchar *)gtk_file_selection_get_filename(GTK_FILE_SELECTION(assoc->req));
459  
460 <        char *str = gtk_entry_get_text(GTK_ENTRY(assoc->entry));
460 >        const gchar *str = gtk_entry_get_text(GTK_ENTRY(assoc->entry));
461          int size = atoi(str);
462  
463          char cmd[1024];
# Line 431 | Line 531 | static void read_volumes_settings(void)
531                  PrefsAddString("disk", str);
532          }
533  
534 <        PrefsReplaceString("extfs", gtk_entry_get_text(GTK_ENTRY(w_extfs)));
534 >        PrefsReplaceString("extfs", get_file_entry_path(w_extfs));
535   }
536  
537   // Create "Volumes" pane
# Line 452 | Line 552 | static void create_volumes_pane(GtkWidge
552          gtk_signal_connect(GTK_OBJECT(volume_list), "select_row", GTK_SIGNAL_FUNC(cl_selected), NULL);
553          char *str;
554          int32 index = 0;
555 <        while ((str = (char *)PrefsFindString("disk", index++)) != NULL)
555 >        while ((str = const_cast<char *>(PrefsFindString("disk", index++))) != NULL)
556                  gtk_clist_append(GTK_CLIST(volume_list), &str);
557          gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scroll), volume_list);
558          gtk_box_pack_start(GTK_BOX(box), scroll, TRUE, TRUE, 0);
# Line 467 | Line 567 | static void create_volumes_pane(GtkWidge
567          make_button_box(box, 0, buttons);
568          make_separator(box);
569  
570 <        w_extfs = make_entry(box, STR_EXTFS_CTRL, "extfs");
570 >        w_extfs = make_file_entry(box, STR_EXTFS_CTRL, "extfs", true);
571  
572          static const opt_desc options[] = {
573                  {STR_BOOT_ANY_LAB, GTK_SIGNAL_FUNC(mn_boot_any)},
# Line 486 | Line 586 | static void create_volumes_pane(GtkWidge
586  
587  
588   /*
589 + *  "JIT Compiler" pane
590 + */
591 +
592 + static GtkWidget *w_jit_fpu;
593 + static GtkWidget *w_jit_atraps;
594 + static GtkWidget *w_jit_cache_size;
595 + static GtkWidget *w_jit_lazy_flush;
596 + static GtkWidget *w_jit_follow_const_jumps;
597 +
598 + // Set sensitivity of widgets
599 + static void set_jit_sensitive(void)
600 + {
601 +        const bool jit_enabled = PrefsFindBool("jit");
602 +        gtk_widget_set_sensitive(w_jit_fpu, jit_enabled);
603 +        gtk_widget_set_sensitive(w_jit_cache_size, jit_enabled);
604 +        gtk_widget_set_sensitive(w_jit_lazy_flush, jit_enabled);
605 +        gtk_widget_set_sensitive(w_jit_follow_const_jumps, jit_enabled);
606 + }
607 +
608 + // "Use JIT Compiler" button toggled
609 + static void tb_jit(GtkWidget *widget)
610 + {
611 +        PrefsReplaceBool("jit", GTK_TOGGLE_BUTTON(widget)->active);
612 +        set_jit_sensitive();
613 + }
614 +
615 + // "Compile FPU Instructions" button toggled
616 + static void tb_jit_fpu(GtkWidget *widget)
617 + {
618 +        PrefsReplaceBool("jitfpu", GTK_TOGGLE_BUTTON(widget)->active);
619 + }
620 +
621 + // "Lazy translation cache invalidation" button toggled
622 + static void tb_jit_lazy_flush(GtkWidget *widget)
623 + {
624 +        PrefsReplaceBool("jitlazyflush", GTK_TOGGLE_BUTTON(widget)->active);
625 + }
626 +
627 + // "Translate through constant jumps (inline blocks)" button toggled
628 + static void tb_jit_follow_const_jumps(GtkWidget *widget)
629 + {
630 +        PrefsReplaceBool("jitinline", GTK_TOGGLE_BUTTON(widget)->active);
631 + }
632 +
633 + // Read settings from widgets and set preferences
634 + static void read_jit_settings(void)
635 + {
636 + #if USE_JIT
637 +        bool jit_enabled = PrefsFindBool("jit");
638 +        if (jit_enabled) {
639 +                const char *str = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(w_jit_cache_size)->entry));
640 +                PrefsReplaceInt32("jitcachesize", atoi(str));
641 +        }
642 + #endif
643 + }
644 +
645 + // Create "JIT Compiler" pane
646 + static void create_jit_pane(GtkWidget *top)
647 + {
648 + #if USE_JIT
649 +        GtkWidget *box, *table, *label, *menu;
650 +        char str[32];
651 +        
652 +        box = make_pane(top, STR_JIT_PANE_TITLE);
653 +        make_checkbox(box, STR_JIT_CTRL, "jit", GTK_SIGNAL_FUNC(tb_jit));
654 +        
655 +        w_jit_fpu = make_checkbox(box, STR_JIT_FPU_CTRL, "jitfpu", GTK_SIGNAL_FUNC(tb_jit_fpu));
656 +        
657 +        // Translation cache size
658 +        static const combo_desc options[] = {
659 +                STR_JIT_CACHE_SIZE_2MB_LAB,
660 +                STR_JIT_CACHE_SIZE_4MB_LAB,
661 +                STR_JIT_CACHE_SIZE_8MB_LAB,
662 +                STR_JIT_CACHE_SIZE_16MB_LAB,
663 +                0
664 +        };
665 +        w_jit_cache_size = make_combobox(box, STR_JIT_CACHE_SIZE_CTRL, "jitcachesize", options);
666 +        
667 +        // Lazy translation cache invalidation
668 +        w_jit_lazy_flush = make_checkbox(box, STR_JIT_LAZY_CINV_CTRL, "jitlazyflush", GTK_SIGNAL_FUNC(tb_jit_lazy_flush));
669 +
670 +        // Follow constant jumps (inline basic blocks)
671 +        w_jit_follow_const_jumps = make_checkbox(box, STR_JIT_FOLLOW_CONST_JUMPS, "jitinline", GTK_SIGNAL_FUNC(tb_jit_follow_const_jumps));
672 +
673 +        set_jit_sensitive();
674 + #endif
675 + }
676 +
677 + /*
678   *  "SCSI" pane
679   */
680  
# Line 497 | Line 686 | static void read_scsi_settings(void)
686          for (int id=0; id<7; id++) {
687                  char prefs_name[32];
688                  sprintf(prefs_name, "scsi%d", id);
689 <                const char *str = gtk_entry_get_text(GTK_ENTRY(w_scsi[id]));
689 >                const char *str = get_file_entry_path(w_scsi[id]);
690                  if (str && strlen(str))
691                          PrefsReplaceString(prefs_name, str);
692                  else
# Line 515 | Line 704 | static void create_scsi_pane(GtkWidget *
704          for (int id=0; id<7; id++) {
705                  char prefs_name[32];
706                  sprintf(prefs_name, "scsi%d", id);
707 <                w_scsi[id] = make_entry(box, STR_SCSI_ID_0 + id, prefs_name);
707 >                w_scsi[id] = make_file_entry(box, STR_SCSI_ID_0 + id, prefs_name);
708          }
709   }
710  
# Line 541 | Line 730 | static GtkWidget *l_fbdev_name, *l_fbdev
730   static char fbdev_name[256];
731   #endif
732  
733 + static GtkWidget *w_dspdevice_file, *w_mixerdevice_file;
734 +
735   // Hide/show graphics widgets
736   static void hide_show_graphics_widgets(void)
737   {
# Line 587 | Line 778 | static void mn_30hz(...) {PrefsReplaceIn
778   static void mn_60hz(...) {PrefsReplaceInt32("frameskip", 1);}
779   static void mn_dynamic(...) {PrefsReplaceInt32("frameskip", 0);}
780  
781 + // Set sensitivity of widgets
782 + static void set_graphics_sensitive(void)
783 + {
784 +        const bool sound_enabled = !PrefsFindBool("nosound");
785 +        gtk_widget_set_sensitive(w_dspdevice_file, sound_enabled);
786 +        gtk_widget_set_sensitive(w_mixerdevice_file, sound_enabled);
787 + }
788 +
789   // "Disable Sound Output" button toggled
790   static void tb_nosound(GtkWidget *widget)
791   {
792          PrefsReplaceBool("nosound", GTK_TOGGLE_BUTTON(widget)->active);
793 +        set_graphics_sensitive();
794   }
795  
796   // Read graphics preferences
# Line 645 | Line 845 | static void read_graphics_settings(void)
845                          return;
846          }
847          PrefsReplaceString("screen", pref);
848 +
849 + #ifdef ENABLE_FBDEV_DGA
850 +        str = get_file_entry_path(w_fbdevice_file);
851 +        if (str && strlen(str))
852 +                PrefsReplaceString("fbdevicefile", str);
853 +        else
854 +                PrefsRemoveItem("fbdevicefile");
855 + #endif
856 +        PrefsReplaceString("dsp", get_file_entry_path(w_dspdevice_file));
857 +        PrefsReplaceString("mixer", get_file_entry_path(w_mixerdevice_file));
858   }
859  
860   // Create "Graphics/Sound" pane
# Line 760 | Line 970 | static void create_graphics_pane(GtkWidg
970          gtk_entry_set_text(GTK_ENTRY(w_fbdev_name), fbdev_name);
971          gtk_table_attach(GTK_TABLE(table), w_fbdev_name, 1, 2, 4, 5, (GtkAttachOptions)0, (GtkAttachOptions)0, 4, 4);
972  
973 <        w_fbdevice_file = make_entry(box, STR_FBDEVICE_FILE_CTRL, "fbdevicefile");
973 >        w_fbdevice_file = make_file_entry(box, STR_FBDEVICE_FILE_CTRL, "fbdevicefile");
974   #endif
975  
976          make_separator(box);
977          make_checkbox(box, STR_NOSOUND_CTRL, "nosound", GTK_SIGNAL_FUNC(tb_nosound));
978 +        w_dspdevice_file = make_file_entry(box, STR_DSPDEVICE_FILE_CTRL, "dsp");
979 +        w_mixerdevice_file = make_file_entry(box, STR_MIXERDEVICE_FILE_CTRL, "mixer");
980 +
981 +        set_graphics_sensitive();
982  
983          hide_show_graphics_widgets();
984   }
# Line 798 | Line 1012 | static void mn_wheel_cursor(...) {PrefsR
1012   // Read settings from widgets and set preferences
1013   static void read_input_settings(void)
1014   {
1015 <        const char *str = gtk_entry_get_text(GTK_ENTRY(w_keycode_file));
1015 >        const char *str = get_file_entry_path(w_keycode_file);
1016          if (str && strlen(str))
1017                  PrefsReplaceString("keycodefile", str);
1018          else
# Line 816 | Line 1030 | static void create_input_pane(GtkWidget
1030          box = make_pane(top, STR_INPUT_PANE_TITLE);
1031  
1032          make_checkbox(box, STR_KEYCODES_CTRL, "keycodes", GTK_SIGNAL_FUNC(tb_keycodes));
1033 <        w_keycode_file = make_entry(box, STR_KEYCODE_FILE_CTRL, "keycodefile");
1033 >        w_keycode_file = make_file_entry(box, STR_KEYCODE_FILE_CTRL, "keycodefile");
1034  
1035          make_separator(box);
1036  
# Line 964 | Line 1178 | static GList *add_ether_names(void)
1178                  }
1179                  close(s);
1180          }
1181 + #ifdef HAVE_SLIRP
1182 +        static char s_slirp[] = "slirp";
1183 +        glist = g_list_append(glist, s_slirp);
1184 + #endif
1185          if (glist)
1186                  g_list_sort(glist, gl_str_cmp);
1187          else
# Line 1056 | Line 1274 | static void create_serial_pane(GtkWidget
1274   static GtkObject *w_ramsize_adj;
1275   static GtkWidget *w_rom_file;
1276  
1277 + // "Ignore SEGV" button toggled
1278 + #ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION
1279 + static void tb_ignoresegv(GtkWidget *widget)
1280 + {
1281 +        PrefsReplaceBool("ignoresegv", GTK_TOGGLE_BUTTON(widget)->active);
1282 + }
1283 + #endif
1284 +
1285   // Model ID selected
1286   static void mn_modelid_5(...) {PrefsReplaceInt32("modelid", 5);}
1287   static void mn_modelid_14(...) {PrefsReplaceInt32("modelid", 14);}
# Line 1072 | Line 1298 | static void read_memory_settings(void)
1298   {
1299          PrefsReplaceInt32("ramsize", int(GTK_ADJUSTMENT(w_ramsize_adj)->value) << 20);
1300  
1301 <        const char *str = gtk_entry_get_text(GTK_ENTRY(w_rom_file));
1301 >        const char *str = get_file_entry_path(w_rom_file);
1302          if (str && strlen(str))
1303                  PrefsReplaceString("rom", str);
1304          else
# Line 1157 | Line 1383 | static void create_memory_pane(GtkWidget
1383          make_option_menu(box, STR_CPU_CTRL, cpu_options, active);
1384   #endif
1385  
1386 <        w_rom_file = make_entry(box, STR_ROM_FILE_CTRL, "rom");
1386 >        w_rom_file = make_file_entry(box, STR_ROM_FILE_CTRL, "rom");
1387 >
1388 > #ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION
1389 >        make_checkbox(box, STR_IGNORESEGV_CTRL, "ignoresegv", GTK_SIGNAL_FUNC(tb_ignoresegv));
1390 > #endif
1391   }
1392  
1393  
# Line 1173 | Line 1403 | static void read_settings(void)
1403          read_input_settings();
1404          read_serial_settings();
1405          read_memory_settings();
1406 +        read_jit_settings();
1407   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines