annotate src/xs_config.c @ 1010:85ceec25b059

Silence some warnings.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 05 May 2014 23:01:03 +0300
parents 5711abf1ff39
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 /*
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
2 XMMS-SID - SIDPlay input plugin for X MultiMedia System (XMMS)
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 Configuration dialog
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5
324
dd201740a720 Changed copyright text.
Matti Hamalainen <ccr@tnsp.org>
parents: 308
diff changeset
6 Programmed and designed by Matti 'ccr' Hamalainen <ccr@tnsp.org>
723
9321ffa2ea7e Update copyright years.
Matti Hamalainen <ccr@tnsp.org>
parents: 722
diff changeset
7 (C) Copyright 1999-2009 Tecnic Software productions (TNSP)
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 This program is free software; you can redistribute it and/or modify
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 it under the terms of the GNU General Public License as published by
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 the Free Software Foundation; either version 2 of the License, or
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 (at your option) any later version.
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14 This program is distributed in the hope that it will be useful,
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17 GNU General Public License for more details.
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18
412
7f694e5a1493 Updated GNU GPL (new FSF address) and some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 402
diff changeset
19 You should have received a copy of the GNU General Public License along
7f694e5a1493 Updated GNU GPL (new FSF address) and some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 402
diff changeset
20 with this program; if not, write to the Free Software Foundation, Inc.,
7f694e5a1493 Updated GNU GPL (new FSF address) and some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 402
diff changeset
21 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
22 */
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
23 #include "xs_config.h"
533
9ca430524698 Audacious-related cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
24
9ca430524698 Audacious-related cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
25 #ifdef AUDACIOUS_PLUGIN
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
26 #include <audacious/plugin.h>
720
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
27 #define XS_CONFIG_FILE mcs_handle_t
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
28 #define XS_CONFIG_OPEN aud_cfg_db_open
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
29 #define XS_CONFIG_FREE aud_cfg_db_close
533
9ca430524698 Audacious-related cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
30
720
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
31 #define XS_CFG_SET_STRING(q,z) aud_cfg_db_set_string(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
32 #define XS_CFG_SET_FLOAT(q,z) aud_cfg_db_set_float(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
33 #define XS_CFG_SET_INT(q,z) aud_cfg_db_set_int(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
34 #define XS_CFG_SET_BOOL(q,z) aud_cfg_db_set_bool(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
35 #define XS_CFG_GET_STRING(q,z) aud_cfg_db_get_string(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
36 #define XS_CFG_GET_FLOAT(q,z) aud_cfg_db_get_float(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
37 #define XS_CFG_GET_INT(q,z) aud_cfg_db_get_int(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
38 #define XS_CFG_GET_BOOL(q,z) aud_cfg_db_get_bool(cfg, XS_CONFIG_IDENT, q, z)
533
9ca430524698 Audacious-related cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
39 #else
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
40 #include <xmms/configfile.h>
720
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
41 #define XS_CONFIG_FILE ConfigFile
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
42 #define XS_CONFIG_OPEN xmms_cfg_open_default_file
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
43 #define XS_CONFIG_FREE xmms_cfg_free
533
9ca430524698 Audacious-related cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
44
720
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
45 #define XS_CFG_SET_STRING(q,z) xmms_cfg_write_string(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
46 #define XS_CFG_SET_FLOAT(q,z) xmms_cfg_write_float(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
47 #define XS_CFG_SET_INT(q,z) xmms_cfg_write_int(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
48 #define XS_CFG_SET_BOOL(q,z) xmms_cfg_write_boolean(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
49 #define XS_CFG_GET_STRING(q,z) xmms_cfg_read_string(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
50 #define XS_CFG_GET_FLOAT(q,z) xmms_cfg_read_float(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
51 #define XS_CFG_GET_INT(q,z) xmms_cfg_read_int(cfg, XS_CONFIG_IDENT, q, z)
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
52 #define XS_CFG_GET_BOOL(q,z) xmms_cfg_read_boolean(cfg, XS_CONFIG_IDENT, q, z)
533
9ca430524698 Audacious-related cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
53 #endif
946
f8e1de328ac1 Fix various compilation related issues, make includes more POSIX compliant,
Matti Hamalainen <ccr@tnsp.org>
parents: 941
diff changeset
54 #include "xs_support.h"
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
55 #include "xs_glade.h"
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
56 #include "xs_interface.h"
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
57 #include "xs_backend.h"
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
58
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
59 /*
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
60 * Global widgets
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
61 */
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
62 static GtkWidget *xs_configwin = NULL,
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
63 *xs_sldb_fileselector = NULL,
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
64 *xs_stil_fileselector = NULL,
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
65 *xs_hvsc_selector = NULL,
871
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
66 *xs_rom_selector = NULL,
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
67 *xs_filt_importselector = NULL,
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
68 *xs_filt_exportselector = NULL;
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
69
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
70
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
71 #define LUW(x) lookup_widget(xs_configwin, x)
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
72
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
73
593
91ca76e6c23f More work towards filter configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 592
diff changeset
74 /* Samplerates
91ca76e6c23f More work towards filter configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 592
diff changeset
75 */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
76 static const gchar *xs_samplerates_table[] =
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
77 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
78 "8000", "11025", "22050",
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
79 "44100", "48000", "64000",
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
80 "96000"
593
91ca76e6c23f More work towards filter configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 592
diff changeset
81 };
91ca76e6c23f More work towards filter configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 592
diff changeset
82
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
83 static const gint xs_nsamplerates_table = sizeof(xs_samplerates_table) / sizeof(xs_samplerates_table[0]);
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
84
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
85 /*
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
86 * Configuration specific stuff
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
87 */
228
a9a5924eb10c Have and use a mutex for xs_cfg configuration structure.
Matti Hamalainen <ccr@tnsp.org>
parents: 224
diff changeset
88 XS_MUTEX(xs_cfg);
702
b5b6b13a6d85 Renamed some types.
Matti Hamalainen <ccr@tnsp.org>
parents: 684
diff changeset
89 struct xs_cfg_t xs_cfg;
228
a9a5924eb10c Have and use a mutex for xs_cfg configuration structure.
Matti Hamalainen <ccr@tnsp.org>
parents: 224
diff changeset
90
702
b5b6b13a6d85 Renamed some types.
Matti Hamalainen <ccr@tnsp.org>
parents: 684
diff changeset
91 static xs_cfg_item_t xs_cfgtable[] = {
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
92 { CTYPE_INT, &xs_cfg.audioBitsPerSample, "audioBitsPerSample" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
93 { CTYPE_INT, &xs_cfg.audioChannels, "audioChannels" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
94 { CTYPE_INT, &xs_cfg.audioFrequency, "audioFrequency" },
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
95
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
96 { CTYPE_BOOL, &xs_cfg.mos8580, "mos8580" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
97 { CTYPE_BOOL, &xs_cfg.forceModel, "forceModel" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
98 { CTYPE_BOOL, &xs_cfg.emulateFilters, "emulateFilters" },
713
06db79680afe Added new variables for distortion tunables and made few changes to SID1
Matti Hamalainen <ccr@tnsp.org>
parents: 712
diff changeset
99 { CTYPE_FLOAT, &xs_cfg.sid1Filter.fs, "filterFs" },
06db79680afe Added new variables for distortion tunables and made few changes to SID1
Matti Hamalainen <ccr@tnsp.org>
parents: 712
diff changeset
100 { CTYPE_FLOAT, &xs_cfg.sid1Filter.fm, "filterFm" },
06db79680afe Added new variables for distortion tunables and made few changes to SID1
Matti Hamalainen <ccr@tnsp.org>
parents: 712
diff changeset
101 { CTYPE_FLOAT, &xs_cfg.sid1Filter.ft, "filterFt" },
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
102 { CTYPE_INT, &xs_cfg.memoryMode, "memoryMode" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
103 { CTYPE_INT, &xs_cfg.clockSpeed, "clockSpeed" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
104 { CTYPE_BOOL, &xs_cfg.forceSpeed, "forceSpeed" },
75
653c9b0d1320 SIDPlay2 support "works" now. Borked problems with threads.
Matti Hamalainen <ccr@tnsp.org>
parents: 72
diff changeset
105
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
106 { CTYPE_INT, &xs_cfg.playerEngine, "playerEngine" },
190
e036ad3350d6 Cleanup
Matti Hamalainen <ccr@tnsp.org>
parents: 177
diff changeset
107
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
108 { CTYPE_INT, &xs_cfg.sid2Builder, "sid2Builder" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
109 { CTYPE_INT, &xs_cfg.sid2OptLevel, "sid2OptLevel" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
110 { CTYPE_INT, &xs_cfg.sid2NFilterPresets, "sid2NFilterPresets" },
75
653c9b0d1320 SIDPlay2 support "works" now. Borked problems with threads.
Matti Hamalainen <ccr@tnsp.org>
parents: 72
diff changeset
111
904
5d26b869a48e Add resampling configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 900
diff changeset
112 { CTYPE_INT, &xs_cfg.residSampling, "residSampling" },
5d26b869a48e Add resampling configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 900
diff changeset
113
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
114 { CTYPE_BOOL, &xs_cfg.playMaxTimeEnable, "playMaxTimeEnable" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
115 { CTYPE_BOOL, &xs_cfg.playMaxTimeUnknown, "playMaxTimeUnknown" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
116 { CTYPE_INT, &xs_cfg.playMaxTime, "playMaxTime" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
117 { CTYPE_BOOL, &xs_cfg.playMinTimeEnable, "playMinTimeEnable" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
118 { CTYPE_INT, &xs_cfg.playMinTime, "playMinTime" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
119 { CTYPE_BOOL, &xs_cfg.songlenDBEnable, "songlenDBEnable" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
120 { CTYPE_STR, &xs_cfg.songlenDBPath, "songlenDBPath" },
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
121
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
122 { CTYPE_BOOL, &xs_cfg.stilDBEnable, "stilDBEnable" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
123 { CTYPE_STR, &xs_cfg.stilDBPath, "stilDBPath" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
124 { CTYPE_STR, &xs_cfg.hvscPath, "hvscPath" },
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
125
871
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
126 { CTYPE_STR, &xs_cfg.romPath, "romPath" },
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
127
624
0bf32fa002bf Merge in some Aud-SID #ifs etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 621
diff changeset
128 #ifndef AUDACIOUS_PLUGIN
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
129 { CTYPE_INT, &xs_cfg.subsongControl, "subsongControl" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
130 { CTYPE_BOOL, &xs_cfg.detectMagic, "detectMagic" },
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
131 #endif
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
132
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
133 { CTYPE_BOOL, &xs_cfg.titleOverride, "titleOverride" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
134 { CTYPE_STR, &xs_cfg.titleFormat, "titleFormat" },
258
e255f23abf33 Automatic subtune changing options added to config.
Matti Hamalainen <ccr@tnsp.org>
parents: 245
diff changeset
135
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
136 { CTYPE_BOOL, &xs_cfg.subAutoEnable, "subAutoEnable" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
137 { CTYPE_BOOL, &xs_cfg.subAutoMinOnly, "subAutoMinOnly" },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
138 { CTYPE_INT, &xs_cfg.subAutoMinTime, "subAutoMinTime" },
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
139 };
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
140
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
141 static const gint xs_ncfgtable = sizeof(xs_cfgtable) / sizeof(xs_cfgtable[0]);
57
85811bcd049e Improved, re-written configuration code and lots of minor fixes
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
142
85811bcd049e Improved, re-written configuration code and lots of minor fixes
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
143
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
144 static xs_wid_item_t xs_cfgitems[] = {
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
145 { WTYPE_BGROUP, CTYPE_INT, "cfg_res_16bit", &xs_cfg.audioBitsPerSample, XS_RES_16BIT },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
146 { WTYPE_BGROUP, CTYPE_INT, "cfg_res_8bit", &xs_cfg.audioBitsPerSample, XS_RES_8BIT },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
147 { WTYPE_BGROUP, CTYPE_INT, "cfg_chn_mono", &xs_cfg.audioChannels, XS_CHN_MONO },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
148 { WTYPE_BGROUP, CTYPE_INT, "cfg_chn_stereo", &xs_cfg.audioChannels, XS_CHN_STEREO },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
149 { WTYPE_BGROUP, CTYPE_INT, "cfg_chn_autopan", &xs_cfg.audioChannels, XS_CHN_AUTOPAN },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
150 { WTYPE_COMBO, CTYPE_INT, "cfg_samplerate", &xs_cfg.audioFrequency, XS_AUDIO_FREQ },
57
85811bcd049e Improved, re-written configuration code and lots of minor fixes
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
151
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
152 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_sidplay1", &xs_cfg.playerEngine, XS_ENG_SIDPLAY1 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
153 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_sidplay2", &xs_cfg.playerEngine, XS_ENG_SIDPLAY2 },
850
82e759a5c7e6 Disable FP backend item in configuration when not available.
Matti Hamalainen <ccr@tnsp.org>
parents: 848
diff changeset
154 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_sidplayfp", &xs_cfg.playerEngine, XS_ENG_SIDPLAYFP },
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
155 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_mem_real", &xs_cfg.memoryMode, XS_MPU_REAL },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
156 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_mem_banksw", &xs_cfg.memoryMode, XS_MPU_BANK_SWITCHING },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
157 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_mem_transrom", &xs_cfg.memoryMode, XS_MPU_TRANSPARENT_ROM },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
158 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_mem_playsid", &xs_cfg.memoryMode, XS_MPU_PLAYSID_ENVIRONMENT },
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
159
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
160 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_emu_mos8580", &xs_cfg.mos8580, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
161 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_emu_sid_force", &xs_cfg.forceModel, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
162 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_clock_ntsc", &xs_cfg.clockSpeed, XS_CLOCK_NTSC },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
163 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_clock_pal", &xs_cfg.clockSpeed, XS_CLOCK_PAL },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
164 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_emu_clock_force", &xs_cfg.forceSpeed, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
165 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_emu_sp2_opt", &xs_cfg.sid2OptLevel, 0 },
87
94497283affa Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
166
773
45108b3d88db Add resid-fp and resid backend to sidplay2fp support.
Matti Hamalainen <ccr@tnsp.org>
parents: 761
diff changeset
167 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_sp2_resid_fp", &xs_cfg.sid2Builder, XS_BLD_RESID_FP },
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
168 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_sp2_resid", &xs_cfg.sid2Builder, XS_BLD_RESID },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
169 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_sp2_hardsid", &xs_cfg.sid2Builder, XS_BLD_HARDSID },
57
85811bcd049e Improved, re-written configuration code and lots of minor fixes
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
170
904
5d26b869a48e Add resampling configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 900
diff changeset
171 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_resid_interpolate", &xs_cfg.residSampling, XS_RESID_INTERPOLATE },
5d26b869a48e Add resampling configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 900
diff changeset
172 { WTYPE_BGROUP, CTYPE_INT, "cfg_emu_resid_resample_fir", &xs_cfg.residSampling, XS_RESID_RESAMPLE_FIR },
5d26b869a48e Add resampling configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 900
diff changeset
173
5d26b869a48e Add resampling configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 900
diff changeset
174 { WTYPE_TEXT, CTYPE_STR, "cfg_emu_rom_path", &xs_cfg.romPath, 0 },
871
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
175
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
176 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_emu_filters", &xs_cfg.emulateFilters, 0 },
713
06db79680afe Added new variables for distortion tunables and made few changes to SID1
Matti Hamalainen <ccr@tnsp.org>
parents: 712
diff changeset
177 { WTYPE_SCALE, CTYPE_FLOAT, "cfg_sp1_filter_fs", &xs_cfg.sid1Filter.fs, 0 },
06db79680afe Added new variables for distortion tunables and made few changes to SID1
Matti Hamalainen <ccr@tnsp.org>
parents: 712
diff changeset
178 { WTYPE_SCALE, CTYPE_FLOAT, "cfg_sp1_filter_fm", &xs_cfg.sid1Filter.fm, 0 },
06db79680afe Added new variables for distortion tunables and made few changes to SID1
Matti Hamalainen <ccr@tnsp.org>
parents: 712
diff changeset
179 { WTYPE_SCALE, CTYPE_FLOAT, "cfg_sp1_filter_ft", &xs_cfg.sid1Filter.ft, 0 },
64
d3bb914e3af3 Fixes for sidplay2 stuff
Matti Hamalainen <ccr@tnsp.org>
parents: 63
diff changeset
180
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
181 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_maxtime_enable", &xs_cfg.playMaxTimeEnable, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
182 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_maxtime_unknown", &xs_cfg.playMaxTimeUnknown, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
183 { WTYPE_SPIN, CTYPE_INT, "cfg_maxtime", &xs_cfg.playMaxTime, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
184 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_mintime_enable", &xs_cfg.playMinTimeEnable, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
185 { WTYPE_SPIN, CTYPE_INT, "cfg_mintime", &xs_cfg.playMinTime, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
186 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_sld_enable", &xs_cfg.songlenDBEnable, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
187 { WTYPE_TEXT, CTYPE_STR, "cfg_sld_dbpath", &xs_cfg.songlenDBPath, 0 },
57
85811bcd049e Improved, re-written configuration code and lots of minor fixes
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
188
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
189 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_stil_enable", &xs_cfg.stilDBEnable, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
190 { WTYPE_TEXT, CTYPE_STR, "cfg_stil_dbpath", &xs_cfg.stilDBPath, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
191 { WTYPE_TEXT, CTYPE_STR, "cfg_hvsc_path", &xs_cfg.hvscPath, 0 },
360
3bea6584259f Indentation fixes and SID model forcing
Matti Hamalainen <ccr@tnsp.org>
parents: 359
diff changeset
192
904
5d26b869a48e Add resampling configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 900
diff changeset
193
624
0bf32fa002bf Merge in some Aud-SID #ifs etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 621
diff changeset
194 #ifndef AUDACIOUS_PLUGIN
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
195 { WTYPE_BGROUP, CTYPE_INT, "cfg_subctrl_none", &xs_cfg.subsongControl, XS_SSC_NONE },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
196 { WTYPE_BGROUP, CTYPE_INT, "cfg_subctrl_seek", &xs_cfg.subsongControl, XS_SSC_SEEK },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
197 { WTYPE_BGROUP, CTYPE_INT, "cfg_subctrl_popup", &xs_cfg.subsongControl, XS_SSC_POPUP },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
198 { WTYPE_BGROUP, CTYPE_INT, "cfg_subctrl_patch", &xs_cfg.subsongControl, XS_SSC_PATCH },
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
199
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
200 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_detectmagic", &xs_cfg.detectMagic, 0 },
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
201 #endif
57
85811bcd049e Improved, re-written configuration code and lots of minor fixes
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
202
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
203 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_ftitle_override", &xs_cfg.titleOverride, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
204 { WTYPE_TEXT, CTYPE_STR, "cfg_ftitle_format", &xs_cfg.titleFormat, 0 },
72
e3b205a6bc7e Lots re-arranging and new code for upcoming modularization.
Matti Hamalainen <ccr@tnsp.org>
parents: 69
diff changeset
205
684
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
206 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_subauto_enable", &xs_cfg.subAutoEnable, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
207 { WTYPE_BUTTON, CTYPE_BOOL, "cfg_subauto_min_only", &xs_cfg.subAutoMinOnly, 0 },
4bf845090a25 Indentation cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 666
diff changeset
208 { WTYPE_SPIN, CTYPE_INT, "cfg_subauto_mintime", &xs_cfg.subAutoMinTime, 0 },
57
85811bcd049e Improved, re-written configuration code and lots of minor fixes
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
209 };
85811bcd049e Improved, re-written configuration code and lots of minor fixes
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
210
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
211 static const gint xs_nwidtable = sizeof(xs_cfgitems) / sizeof(xs_cfgitems[0]);
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
212
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
213
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
214 /* Check configuration
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
215 */
960
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
216 gboolean xs_check_configuration(gboolean checkOnly)
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
217 {
960
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
218 gboolean changed = FALSE;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
219
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
220 // Automatic adjustments
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
221 switch (xs_cfg.playerEngine)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
222 {
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
223 #if !defined(HAVE_SIDPLAYFP)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
224 case XS_ENG_SIDPLAYFP:
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
225 changed = TRUE;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
226 #if defined(HAVE_SIDPLAY2)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
227 xs_cfg.playerEngine = XS_ENG_SIDPLAY2; break;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
228 #elif defined(HAVE_SIDPLAY1)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
229 xs_cfg.playerEngine = XS_ENG_SIDPLAY1; break;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
230 #endif
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
231 #endif
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
232
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
233 #if !defined(HAVE_SIDPLAY2)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
234 case XS_ENG_SIDPLAY2:
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
235 changed = TRUE;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
236 #if defined(HAVE_SIDPLAYFP)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
237 xs_cfg.playerEngine = XS_ENG_SIDPLAYFP; break;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
238 #elif defined(HAVE_SIDPLAY1)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
239 xs_cfg.playerEngine = XS_ENG_SIDPLAY1; break;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
240 #endif
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
241 #endif
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
242
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
243 #if !defined(HAVE_SIDPLAY1)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
244 case XS_ENG_SIDPLAY1:
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
245 changed = TRUE;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
246 #if defined(HAVE_SIDPLAYFP)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
247 xs_cfg.playerEngine = XS_ENG_SIDPLAYFP; break;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
248 #elif defined(HAVE_SIDPLAY2)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
249 xs_cfg.playerEngine = XS_ENG_SIDPLAY2; break;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
250 #endif
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
251 #endif
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
252 }
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
253
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
254 switch (xs_cfg.sid2Builder)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
255 {
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
256 #if !defined(HAVE_RESID_BUILDER) && defined(HAVE_RESID_FP_BUILDER)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
257 case XS_BLD_RESID:
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
258 changed = TRUE;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
259 xs_cfg.sid2Builder = XS_BLD_RESID_FP; break;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
260 #endif
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
261 #if defined(HAVE_RESID_BUILDER) && !defined(HAVE_RESID_FP_BUILDER)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
262 case XS_BLD_RESID_FP:
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
263 changed = TRUE;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
264 xs_cfg.sid2Builder = XS_BLD_RESID; break;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
265 #endif
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
266
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
267 #if !defined(HAVE_HARDSID_BUILDER)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
268 case XS_BLD_HARDSID:
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
269 changed = TRUE;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
270 #if defined(HAVE_RESID_FP_BUILDER)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
271 xs_cfg.sid2Builder = XS_BLD_RESID_FP; break;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
272 #elif defined(HAVE_RESID_BUILDER)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
273 xs_cfg.sid2Builder = XS_BLD_RESID; break;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
274 #endif
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
275 #endif
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
276 }
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
277
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
278 // Check for plain errors
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
279 switch (xs_cfg.playerEngine)
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
280 {
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
281 case XS_ENG_SIDPLAYFP:
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
282 {
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
283 if (xs_cfg.romPath == NULL || xs_cfg.romPath[0] == 0)
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
284 {
960
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
285 if (checkOnly) return FALSE;
941
63342bbeab47 Mark messagebox messages as translatable strings.
Matti Hamalainen <ccr@tnsp.org>
parents: 940
diff changeset
286 xs_messagebox(_("Error"),
63342bbeab47 Mark messagebox messages as translatable strings.
Matti Hamalainen <ccr@tnsp.org>
parents: 940
diff changeset
287 _("You have selected libSIDPlayFP backend, but not set the C64 ROM images directory.\n"));
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
288 return FALSE;
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
289 }
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
290
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
291 if (!xs_is_dir_path(xs_cfg.romPath))
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
292 {
960
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
293 if (checkOnly) return FALSE;
941
63342bbeab47 Mark messagebox messages as translatable strings.
Matti Hamalainen <ccr@tnsp.org>
parents: 940
diff changeset
294 xs_messagebox(_("Error"),
63342bbeab47 Mark messagebox messages as translatable strings.
Matti Hamalainen <ccr@tnsp.org>
parents: 940
diff changeset
295 _("The C64 ROM images directory path '%s' is not a directory.\n"),
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
296 xs_cfg.romPath);
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
297 return FALSE;
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
298 }
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
299
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
300 gint i;
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
301 gchar *result = NULL;
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
302 for (i = 0; i < XS_C64_ROM_IMAGES; i++)
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
303 {
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
304 guint8 *buf = NULL;
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
305 if (!xs_load_rom_image(i, &buf))
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
306 {
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
307 const XSROMImageData *rom = &xs_rom_images[i];
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
308 gchar *tmp = g_strdup_printf("%s%s file '%s'",
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
309 result != NULL ? ", " : "",
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
310 rom->name, rom->filename);
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
311
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
312 xs_pstrcat(&result, tmp);
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
313 g_free(tmp);
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
314 }
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
315 g_free(buf);
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
316 }
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
317
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
318 if (result != NULL)
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
319 {
960
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
320 if (checkOnly) return FALSE;
941
63342bbeab47 Mark messagebox messages as translatable strings.
Matti Hamalainen <ccr@tnsp.org>
parents: 940
diff changeset
321 xs_messagebox(_("Error"),
63342bbeab47 Mark messagebox messages as translatable strings.
Matti Hamalainen <ccr@tnsp.org>
parents: 940
diff changeset
322 _("Could not load the required C64 ROM image files from '%s'.\n"
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
323 "\n"
941
63342bbeab47 Mark messagebox messages as translatable strings.
Matti Hamalainen <ccr@tnsp.org>
parents: 940
diff changeset
324 "Following files could not be found: %s."),
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
325 xs_cfg.romPath, result);
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
326 g_free(result);
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
327 return FALSE;
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
328 }
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
329 }
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
330 break;
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
331 }
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
332
960
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
333 return !changed;
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
334 }
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
335
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
336
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
337 /* Reset/initialize the configuration
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
338 */
271
eebb38debe35 Separate xs_init_configuration() from xs_read_configuration()
Matti Hamalainen <ccr@tnsp.org>
parents: 260
diff changeset
339 void xs_init_configuration(void)
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
340 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
341 /* Lock configuration mutex */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
342 XSDEBUG("initializing configuration ...\n");
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
343 XS_MUTEX_LOCK(xs_cfg);
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
344
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
345 memset(&xs_cfg, 0, sizeof(xs_cfg));
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
346
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
347 /* Initialize values with sensible defaults */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
348 xs_cfg.audioBitsPerSample = XS_RES_16BIT;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
349 xs_cfg.audioChannels = XS_CHN_MONO;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
350 xs_cfg.audioFrequency = XS_AUDIO_FREQ;
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
351
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
352 xs_cfg.mos8580 = FALSE;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
353 xs_cfg.forceModel = FALSE;
230
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 228
diff changeset
354
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
355 /* Filter values */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
356 xs_cfg.emulateFilters = TRUE;
713
06db79680afe Added new variables for distortion tunables and made few changes to SID1
Matti Hamalainen <ccr@tnsp.org>
parents: 712
diff changeset
357 xs_cfg.sid1Filter.fs = XS_SIDPLAY1_FS;
06db79680afe Added new variables for distortion tunables and made few changes to SID1
Matti Hamalainen <ccr@tnsp.org>
parents: 712
diff changeset
358 xs_cfg.sid1Filter.fm = XS_SIDPLAY1_FM;
06db79680afe Added new variables for distortion tunables and made few changes to SID1
Matti Hamalainen <ccr@tnsp.org>
parents: 712
diff changeset
359 xs_cfg.sid1Filter.ft = XS_SIDPLAY1_FT;
44
90cd38b28a72 Various fixes and transmogrifying for dual emulation engine environment
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
360
960
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
361 #if defined(HAVE_SIDPLAYFP)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
362 xs_cfg.playerEngine = XS_ENG_SIDPLAYFP;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
363 xs_cfg.memoryMode = XS_MPU_REAL;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
364 #elif defined(HAVE_SIDPLAY2)
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
365 xs_cfg.playerEngine = XS_ENG_SIDPLAY2;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
366 xs_cfg.memoryMode = XS_MPU_REAL;
761
641b7693fecc Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 750
diff changeset
367 #elif defined(HAVE_SIDPLAY1)
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
368 xs_cfg.playerEngine = XS_ENG_SIDPLAY1;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
369 xs_cfg.memoryMode = XS_MPU_BANK_SWITCHING;
960
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
370 #else
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
371 # error This should not happen! No emulator engines configured in!
77
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 75
diff changeset
372 #endif
44
90cd38b28a72 Various fixes and transmogrifying for dual emulation engine environment
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
373
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
374 xs_cfg.clockSpeed = XS_CLOCK_PAL;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
375 xs_cfg.forceSpeed = FALSE;
75
653c9b0d1320 SIDPlay2 support "works" now. Borked problems with threads.
Matti Hamalainen <ccr@tnsp.org>
parents: 72
diff changeset
376
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
377 xs_cfg.sid2OptLevel = 0;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
378 xs_cfg.sid2NFilterPresets = 0;
621
11e24183ff23 Properly initialize xs_cfg struct; Check for 0 in sid2NFilterPresets.
Matti Hamalainen <ccr@tnsp.org>
parents: 620
diff changeset
379
960
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
380 #if defined(HAVE_RESID_FP_BUILDER)
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
381 xs_cfg.sid2Builder = XS_BLD_RESID_FP;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
382 #elif defined(HAVE_RESID_BUILDER)
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
383 xs_cfg.sid2Builder = XS_BLD_RESID;
761
641b7693fecc Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 750
diff changeset
384 #elif defined(HAVE_HARDSID_BUILDER)
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
385 xs_cfg.sid2Builder = XS_BLD_HARDSID;
761
641b7693fecc Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 750
diff changeset
386 #elif defined(HAVE_SIDPLAY2)
641b7693fecc Cosmetic cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 750
diff changeset
387 # error This should not happen! No supported SIDPlay2 builders configured in!
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
388 #endif
75
653c9b0d1320 SIDPlay2 support "works" now. Borked problems with threads.
Matti Hamalainen <ccr@tnsp.org>
parents: 72
diff changeset
389
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
390 xs_cfg.playMaxTimeEnable = FALSE;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
391 xs_cfg.playMaxTimeUnknown = FALSE;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
392 xs_cfg.playMaxTime = 150;
169
676ec1a1ab93 Minimum playtime option
Matti Hamalainen <ccr@tnsp.org>
parents: 161
diff changeset
393
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
394 xs_cfg.playMinTimeEnable = FALSE;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
395 xs_cfg.playMinTime = 15;
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
396
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
397 xs_cfg.songlenDBEnable = FALSE;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
398 xs_pstrcpy(&xs_cfg.songlenDBPath, "~/C64Music/Songlengths.txt");
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
399
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
400 xs_cfg.stilDBEnable = FALSE;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
401 xs_pstrcpy(&xs_cfg.stilDBPath, "~/C64Music/DOCUMENTS/STIL.txt");
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
402 xs_pstrcpy(&xs_cfg.hvscPath, "~/C64Music");
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
403
874
350f755549dd More work on the ROM images configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 871
diff changeset
404 xs_pstrcpy(&xs_cfg.romPath, "/usr/lib/vice/C64");
350f755549dd More work on the ROM images configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 871
diff changeset
405
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
406 #if defined(HAVE_SONG_POSITION) && !defined(AUDACIOUS_PLUGIN)
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
407 xs_cfg.subsongControl = XS_SSC_PATCH;
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
408 #else
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
409 xs_cfg.subsongControl = XS_SSC_POPUP;
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
410 #endif
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
411 xs_cfg.detectMagic = FALSE;
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
412
745
9dc5378cc806 Remove XMMS_EXTRA stuff, as we require XMMS 1.2.10+ now.
Matti Hamalainen <ccr@tnsp.org>
parents: 723
diff changeset
413 xs_cfg.titleOverride = FALSE;
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
414
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
415 #ifdef AUDACIOUS_PLUGIN
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
416 xs_pstrcpy(&xs_cfg.titleFormat, "${artist} - ${title} (${copyright}) <${subsong-id}/${subsong-num}> [${sid-model}/${sid-speed}]");
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
417 #else
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
418 xs_pstrcpy(&xs_cfg.titleFormat, "%p - %t (%c) <%n/%N> [%m/%C]");
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
419 #endif
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
420
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
421 xs_cfg.subAutoEnable = FALSE;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
422 xs_cfg.subAutoMinOnly = TRUE;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
423 xs_cfg.subAutoMinTime = 15;
260
7a23dfef023d More subauto poking.
Matti Hamalainen <ccr@tnsp.org>
parents: 258
diff changeset
424
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
425
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
426 /* Unlock the configuration */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
427 XS_MUTEX_UNLOCK(xs_cfg);
271
eebb38debe35 Separate xs_init_configuration() from xs_read_configuration()
Matti Hamalainen <ccr@tnsp.org>
parents: 260
diff changeset
428 }
eebb38debe35 Separate xs_init_configuration() from xs_read_configuration()
Matti Hamalainen <ccr@tnsp.org>
parents: 260
diff changeset
429
eebb38debe35 Separate xs_init_configuration() from xs_read_configuration()
Matti Hamalainen <ccr@tnsp.org>
parents: 260
diff changeset
430
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
431 /* Filter configuration handling
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
432 */
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
433 static void xs_filters_error(const gchar *fmt, ...)
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
434 {
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
435 va_list ap;
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
436 gchar *msg;
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
437
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
438 va_start(ap, fmt);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
439 msg = g_strdup_vprintf(fmt, ap);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
440 va_end(ap);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
441
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
442 xmms_show_message(_(PACKAGE_NAME " Error"), msg, _("OK"), TRUE, NULL, NULL);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
443 g_free(msg);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
444 }
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
445
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
446
722
5923dfff1fac Unify xs_sid*_filter_t into one.
Matti Hamalainen <ccr@tnsp.org>
parents: 721
diff changeset
447 static void xs_filter_free(xs_sid_filter_t *filter)
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
448 {
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
449 if (filter)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
450 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
451 g_free(filter->name);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
452 filter->name = NULL;
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
453 g_free(filter);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
454 }
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
455 }
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
456
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
457
552
9494fee305fa Config item changes; Unfinished filter preset handling functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 548
diff changeset
458 #define XS_FITEM (4 * 2)
9494fee305fa Config item changes; Unfinished filter preset handling functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 548
diff changeset
459
722
5923dfff1fac Unify xs_sid*_filter_t into one.
Matti Hamalainen <ccr@tnsp.org>
parents: 721
diff changeset
460 static gboolean xs_filter_load_into(XS_CONFIG_FILE *cfg, gint nFilter, xs_sid_filter_t *filter)
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
461 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
462 gchar tmpKey[64], *tmpStr;
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
463 gint i, j;
552
9494fee305fa Config item changes; Unfinished filter preset handling functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 548
diff changeset
464
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
465 /* Get fields from config */
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
466 g_snprintf(tmpKey, sizeof(tmpKey), "filter%dType", nFilter);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
467 if (!XS_CFG_GET_INT(tmpKey, &(filter->type)))
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
468 return FALSE;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
469
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
470 g_snprintf(tmpKey, sizeof(tmpKey), "filter%dName", nFilter);
720
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
471 if (!XS_CFG_GET_STRING(tmpKey, &tmpStr))
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
472 return FALSE;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
473
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
474 filter->name = g_strdup(tmpStr);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
475 if (filter->name == NULL)
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
476 return FALSE;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
477
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
478 switch (filter->type)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
479 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
480 case 1:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
481
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
482 /* Types 1 has points */
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
483 g_snprintf(tmpKey, sizeof(tmpKey), "filter%dNPoints", nFilter);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
484 if (!XS_CFG_GET_INT(tmpKey, &(filter->npoints)))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
485 return FALSE;
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
486
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
487 g_snprintf(tmpKey, sizeof(tmpKey), "filter%dPoints", nFilter);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
488 if (!XS_CFG_GET_STRING(tmpKey, &tmpStr))
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
489 return FALSE;
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
490
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
491 for (i = 0, j = 0; i < filter->npoints; i++, j += XS_FITEM)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
492 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
493 if (sscanf(&tmpStr[j], "%4x%4x",
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
494 &(filter->points[i].x),
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
495 &(filter->points[i].y)) != 2)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
496 return FALSE;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
497 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
498 break;
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
499
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
500 case 3:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
501 /* Type 3 has tunables */
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
502 g_snprintf(tmpKey, sizeof(tmpKey), "filter%dData", nFilter);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
503 if (!XS_CFG_GET_STRING(tmpKey, &tmpStr))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
504 return FALSE;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
505
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
506 if (sscanf(tmpStr, "%f,%f,%f,%f", &filter->rate, &filter->point,
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
507 &filter->voice_nonlinearity, &filter->cf_treshold) != 4)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
508 return FALSE;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
509
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
510 g_snprintf(tmpKey, sizeof(tmpKey), "filter%dData3", nFilter);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
511 if (!XS_CFG_GET_STRING(tmpKey, &tmpStr))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
512 return FALSE;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
513
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
514 if (sscanf(tmpStr, "%f,%f,%f,%f", &filter->baseresistance,
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
515 &filter->offset, &filter->steepness,
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
516 &filter->minimumfetresistance) != 4)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
517 return FALSE;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
518 break;
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
519
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
520 case 4:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
521 /* Type 4 has fewer tunables */
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
522 g_snprintf(tmpKey, sizeof(tmpKey), "filter%dData4", nFilter);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
523 if (!XS_CFG_GET_STRING(tmpKey, &tmpStr))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
524 return FALSE;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
525
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
526 if (sscanf(tmpStr, "%f,%f", &filter->k, &filter->b) != 2)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
527 return FALSE;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
528 break;
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
529
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
530 default:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
531 xs_error("Unknown filter type %d for '%s' (#%d).\n", filter->type, filter->name, nFilter);
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
532 return FALSE;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
533 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
534
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
535 return TRUE;
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
536 }
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
537
552
9494fee305fa Config item changes; Unfinished filter preset handling functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 548
diff changeset
538
722
5923dfff1fac Unify xs_sid*_filter_t into one.
Matti Hamalainen <ccr@tnsp.org>
parents: 721
diff changeset
539 static xs_sid_filter_t * xs_filter_load(XS_CONFIG_FILE *cfg, gint nFilter)
552
9494fee305fa Config item changes; Unfinished filter preset handling functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 548
diff changeset
540 {
722
5923dfff1fac Unify xs_sid*_filter_t into one.
Matti Hamalainen <ccr@tnsp.org>
parents: 721
diff changeset
541 xs_sid_filter_t *filter;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
542
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
543 /* Allocate filter struct */
722
5923dfff1fac Unify xs_sid*_filter_t into one.
Matti Hamalainen <ccr@tnsp.org>
parents: 721
diff changeset
544 if ((filter = g_malloc0(sizeof(xs_sid_filter_t))) == NULL)
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
545 return NULL;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
546
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
547 if (!xs_filter_load_into(cfg, nFilter, filter))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
548 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
549 xs_error("Error loading filter %d from configuration.\n", nFilter);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
550 xs_filter_free(filter);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
551 return NULL;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
552 } else
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
553 return filter;
552
9494fee305fa Config item changes; Unfinished filter preset handling functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 548
diff changeset
554 }
9494fee305fa Config item changes; Unfinished filter preset handling functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 548
diff changeset
555
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
556
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
557 #if 0
722
5923dfff1fac Unify xs_sid*_filter_t into one.
Matti Hamalainen <ccr@tnsp.org>
parents: 721
diff changeset
558 static gboolean xs_filter_save(XS_CONFIG_FILE *cfg, xs_sid_filter_t *pFilter, gint nFilter)
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
559 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
560 gchar *tmpValue, tmpKey[64];
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
561 gint i, j;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
562
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
563 /* Allocate memory for value string */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
564 tmpValue = g_malloc(sizeof(gchar) * XS_FITEM * (pFilter->npoints + 1));
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
565 if (tmpValue == NULL)
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
566 return FALSE;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
567
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
568 /* Make value string */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
569 for (i = 0, j = 0; i < pFilter->npoints; i++, j += XS_FITEM)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
570 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
571 g_snprintf(&tmpValue[j], XS_FITEM+1, "%04x%04x",
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
572 pFilter->points[i].x,
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
573 pFilter->points[i].y);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
574 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
575
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
576 /* Write into the configuration */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
577 g_snprintf(tmpKey, sizeof(tmpKey), "filter%dName", nFilter);
720
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
578 XS_CFG_SET_STRING(tmpKey, pFilter->name);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
579
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
580 g_snprintf(tmpKey, sizeof(tmpKey), "filter%dNPoints", nFilter);
720
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
581 XS_CFG_SET_INT(tmpKey, pFilter->npoints);
552
9494fee305fa Config item changes; Unfinished filter preset handling functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 548
diff changeset
582
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
583 g_snprintf(tmpKey, sizeof(tmpKey), "filter%dPoints", nFilter);
720
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
584 XS_CFG_SET_STRING(tmpKey, tmpValue);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
585
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
586 g_free(tmpValue);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
587 return TRUE;
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
588 }
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
589 #endif
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
590
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
591
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
592 /* Filter exporting and importing. These functions export/import
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
593 * filter settings to/from SIDPlay2 INI-type files.
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
594 */
600
7fcaf6b59b20 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 593
diff changeset
595 static gboolean xs_fgetitem(gchar *inLine, size_t *linePos, gchar sep, gchar *tmpStr, size_t tmpMax)
7fcaf6b59b20 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 593
diff changeset
596 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
597 size_t i;
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
598
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
599 for (i = 0; i < tmpMax && inLine[*linePos] &&
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
600 inLine[*linePos] != sep; i++, (*linePos)++)
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
601 tmpStr[i] = inLine[*linePos];
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
602
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
603 tmpStr[i] = 0;
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
604 while (--i > 0 && isspace(tmpStr[i])) tmpStr[i] = 0;
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
605
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
606 xs_findnext(inLine, linePos);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
607 return (inLine[*linePos] == sep);
600
7fcaf6b59b20 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 593
diff changeset
608 }
7fcaf6b59b20 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 593
diff changeset
609
711
d18884383ca3 Fix off by one.
Matti Hamalainen <ccr@tnsp.org>
parents: 702
diff changeset
610
722
5923dfff1fac Unify xs_sid*_filter_t into one.
Matti Hamalainen <ccr@tnsp.org>
parents: 721
diff changeset
611 static gboolean xs_chkf(xs_sid_filter_t *filter, const gchar *str, const gchar *name, gint type)
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
612 {
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
613 if (g_strncasecmp(str, name, strlen(name)))
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
614 return FALSE;
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
615
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
616 if (filter->type != type)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
617 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
618 if (filter->type == -1)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
619 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
620 filter->type = type;
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
621 return TRUE;
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
622 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
623 else
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
624 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
625 xs_error("Unexpected key '%s' for filter type %d.\n");
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
626 return FALSE;
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
627 }
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
628 } else
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
629 return TRUE;
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
630 }
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
631
722
5923dfff1fac Unify xs_sid*_filter_t into one.
Matti Hamalainen <ccr@tnsp.org>
parents: 721
diff changeset
632 static gboolean xs_filters_import(const gchar *filename, xs_sid_filter_t **pFilters, gint *nFilters)
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
633 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
634 FILE *inFile;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
635 gchar inLine[XS_BUF_SIZE], tmpStr[XS_BUF_SIZE];
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
636 gchar *sectName = NULL;
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
637 gboolean inSection, isError = FALSE;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
638 size_t lineNum, i;
722
5923dfff1fac Unify xs_sid*_filter_t into one.
Matti Hamalainen <ccr@tnsp.org>
parents: 721
diff changeset
639 xs_sid_filter_t *filter = NULL;
593
91ca76e6c23f More work towards filter configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 592
diff changeset
640
1010
85ceec25b059 Silence some warnings.
Matti Hamalainen <ccr@tnsp.org>
parents: 960
diff changeset
641 (void) pFilters;
85ceec25b059 Silence some warnings.
Matti Hamalainen <ccr@tnsp.org>
parents: 960
diff changeset
642 (void) nFilters;
85ceec25b059 Silence some warnings.
Matti Hamalainen <ccr@tnsp.org>
parents: 960
diff changeset
643
85ceec25b059 Silence some warnings.
Matti Hamalainen <ccr@tnsp.org>
parents: 960
diff changeset
644 fprintf(stderr, "xs_filters_import(%s)\n", filename);
593
91ca76e6c23f More work towards filter configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 592
diff changeset
645
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
646 if ((inFile = fopen(filename, "ra")) == NULL)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
647 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
648 xs_filters_error("");
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
649 return FALSE;
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
650 }
593
91ca76e6c23f More work towards filter configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 592
diff changeset
651
1010
85ceec25b059 Silence some warnings.
Matti Hamalainen <ccr@tnsp.org>
parents: 960
diff changeset
652 fprintf(stderr, "importing...\n");
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
653
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
654 inSection = FALSE;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
655 lineNum = 0;
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
656 while (fgets(inLine, XS_BUF_SIZE, inFile) != NULL && !isError)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
657 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
658 size_t linePos = 0;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
659 lineNum++;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
661 xs_findnext(inLine, &linePos);
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
662 if (isalpha(inLine[linePos]))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
663 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
664 /* A new key/value pair */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
665 if (!xs_fgetitem(inLine, &linePos, '=', tmpStr, XS_BUF_SIZE))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
666 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
667 xs_error("Invalid line '%s' :: expected =", inLine);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
668 isError = TRUE;
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
669 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
670 else
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
671 if (inSection)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
672 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
673 linePos++;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
674 xs_findnext(inLine, &linePos);
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
675
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
676 if (xs_chkf(filter, tmpStr, "points", 1))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
677 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
678 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
679 else
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
680 if (xs_chkf(filter, tmpStr, "point", 1))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
681 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
682
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
683 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
684 else
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
685 if (!g_strncasecmp(tmpStr, "type", 4))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
686 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
687 if (filter->type != -1)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
688 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
689 xs_error("Filter type %d already set for '%s'\n",
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
690 filter->type, sectName);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
691 }
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
692 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
693 else
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
694 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
695 xs_error("Unsupported definition '%s' @ '%s'\n",
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
696 tmpStr, sectName);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
697 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
698 }
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
699 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
700 else
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
701 if (inLine[linePos] == '[')
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
702 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
703 /* Check for existing section */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
704 if (inSection)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
705 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
706 /* Submit definition */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
707 fprintf(stderr, "filter ends: %s\n", sectName);
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
708 if ((filter = g_malloc0(sizeof(xs_sid_filter_t))) == NULL)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
709 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
710 fprintf(stderr, "could not allocate ..\n");
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
711 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
712 else
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
713 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
714
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
715 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
716 g_free(sectName);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
717 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
718
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
719 /* New filter(?) section starts */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
720 linePos++;
711
d18884383ca3 Fix off by one.
Matti Hamalainen <ccr@tnsp.org>
parents: 702
diff changeset
721 for (i = 0; i < XS_BUF_SIZE-1 && inLine[linePos] && inLine[linePos] != ']'; i++, linePos++)
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
722 tmpStr[i] = inLine[linePos];
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
723 tmpStr[i] = 0;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
724
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
725 if (inLine[linePos] != ']')
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
726 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
727 fprintf(stderr, "invalid! expected ']': %s\n", inLine);
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
728 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
729 else
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
730 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
731 if (!g_strncasecmp(tmpStr, "filter", 6))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
732 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
733 sectName = strdup(tmpStr + 6);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
734 fprintf(stderr, "filter: %s\n", sectName);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
735 inSection = TRUE;
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
736 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
737 else
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
738 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
739 fprintf(stderr, "ignoring section: %s\n", tmpStr);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
740 inSection = FALSE;
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
741 }
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
742 }
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
743 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
744 else if (inLine[linePos] != '#' && inLine[linePos] != ';' && inLine[linePos] != 0)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
745 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
746 /* Syntax error */
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
747 xs_error("Syntax error: '%s'\n", inLine);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
748 isError = TRUE;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
749 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
750 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
751
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
752 fclose(inFile);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
753 return TRUE;
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
754 }
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
755
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
756
722
5923dfff1fac Unify xs_sid*_filter_t into one.
Matti Hamalainen <ccr@tnsp.org>
parents: 721
diff changeset
757 static gboolean xs_filter_export(FILE *outFile, xs_sid_filter_t *filter)
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
758 {
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
759 gint i;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
760
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
761 fprintf(outFile,
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
762 "[Filter%s]\n"
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
763 "type=%d\n",
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
764 filter->name, filter->type);
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
765
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
766 switch (filter->type)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
767 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
768 case 1:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
769 fprintf(outFile, "points=%d\n", filter->npoints);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
770
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
771 for (i = 0; i < filter->npoints; i++)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
772 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
773 fprintf(outFile,
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
774 "point%d=%d,%d\n",
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
775 i + 1,
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
776 filter->points[i].x,
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
777 filter->points[i].y);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
778 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
779 break;
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
780
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
781 case 3:
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
782 fprintf(outFile,
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
783 "DistortionRate = %f\n"
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
784 "DistortionPoint = %f\n"
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
785 "VoiceNonlinearity = %f\n"
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
786 "DistortionCFThreshold = %f\n",
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
787 filter->rate, filter->point,
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
788 filter->voice_nonlinearity,
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
789 filter->cf_treshold);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
790
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
791 fprintf(outFile,
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
792 "Type3BaseResistance = %f\n"
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
793 "Type3Offset = %f\n"
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
794 "Type3Steepness = %f\n"
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
795 "Type3MinimumFETResistance = %f\n",
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
796 filter->baseresistance, filter->offset,
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
797 filter->steepness, filter->minimumfetresistance);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
798 break;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
799
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
800 case 4:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
801 fprintf(outFile,
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
802 "Type4K=%f\n"
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
803 "Type4B=%f\n",
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
804 filter->k, filter->b);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
805 break;
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
806
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
807 default:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
808 xs_error("Filter '%s' has type %d, which is unsupported by export.\n",
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
809 filter->name, filter->type);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
810 return FALSE;
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
811 }
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
812
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
813 fprintf(outFile, "\n");
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
814 return TRUE;
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
815 }
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
816
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
817
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
818 static gboolean xs_filters_export(const gchar *filename, xs_sid_filter_t **filters, gint nfilters)
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
819 {
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
820 gboolean result = TRUE;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
821 FILE *outFile;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
822 gint n;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
823
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
824 /* Open/create the file */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
825 if ((outFile = fopen(filename, "wa")) == NULL)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
826 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
827 xs_filters_error("Could not open '%s' for writing! Not exporting.", filename);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
828 return FALSE;
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
829 }
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
830
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
831 /* Header */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
832 fprintf(outFile,
713
06db79680afe Added new variables for distortion tunables and made few changes to SID1
Matti Hamalainen <ccr@tnsp.org>
parents: 712
diff changeset
833 "; SIDPlay2 compatible filter definition file\n"
06db79680afe Added new variables for distortion tunables and made few changes to SID1
Matti Hamalainen <ccr@tnsp.org>
parents: 712
diff changeset
834 "; Exported by " PACKAGE_STRING "\n\n");
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
835
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
836 /* Write each filter spec in "INI"-style format */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
837 for (n = 0; n < nfilters; n++)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
838 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
839 if (!xs_filter_export(outFile, filters[n]))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
840 {
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
841 result = FALSE;
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
842 break;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
843 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
844 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
845
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
846 fclose(outFile);
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
847
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
848 if (!result)
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
849 xs_filters_error("Some filters could not be exported!");
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
850
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
851 return result;
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
852 }
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
853
721
2b6a29eefffb More work on implementing working filter saving, loading, importing and
Matti Hamalainen <ccr@tnsp.org>
parents: 720
diff changeset
854
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
855 /* Get the configuration (from file or default)
271
eebb38debe35 Separate xs_init_configuration() from xs_read_configuration()
Matti Hamalainen <ccr@tnsp.org>
parents: 260
diff changeset
856 */
939
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
857 gboolean xs_read_configuration(void)
271
eebb38debe35 Separate xs_init_configuration() from xs_read_configuration()
Matti Hamalainen <ccr@tnsp.org>
parents: 260
diff changeset
858 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
859 XS_CONFIG_FILE *cfg;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
860 gint i;
939
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
861 gboolean configOK = TRUE;
271
eebb38debe35 Separate xs_init_configuration() from xs_read_configuration()
Matti Hamalainen <ccr@tnsp.org>
parents: 260
diff changeset
862
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
863 /* Try to open the XMMS configuration file */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
864 XS_MUTEX_LOCK(xs_cfg);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
865 XSDEBUG("loading from config-file ...\n");
271
eebb38debe35 Separate xs_init_configuration() from xs_read_configuration()
Matti Hamalainen <ccr@tnsp.org>
parents: 260
diff changeset
866
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
867 cfg = XS_CONFIG_OPEN();
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
868 if (cfg == NULL)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
869 {
939
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
870 configOK = FALSE;
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
871 goto error;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
872 }
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
873
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
874 /* Read the new settings from XMMS configuration file */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
875 for (i = 0; i < xs_ncfgtable; i++)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
876 switch (xs_cfgtable[i].itemType)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
877 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
878 case CTYPE_INT:
939
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
879 if (!XS_CFG_GET_INT(xs_cfgtable[i].itemName,
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
880 (gint *) xs_cfgtable[i].itemData))
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
881 configOK = FALSE;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
882 break;
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
883
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
884 case CTYPE_BOOL:
939
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
885 if (!XS_CFG_GET_BOOL(xs_cfgtable[i].itemName,
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
886 (gboolean *) xs_cfgtable[i].itemData))
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
887 configOK = FALSE;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
888 break;
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
889
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
890 case CTYPE_FLOAT:
939
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
891 if (!XS_CFG_GET_FLOAT(xs_cfgtable[i].itemName,
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
892 (gfloat *) xs_cfgtable[i].itemData))
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
893 configOK = FALSE;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
894 break;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
895
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
896 case CTYPE_STR:
874
350f755549dd More work on the ROM images configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 871
diff changeset
897 {
939
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
898 gchar *tmpStr;
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
899 if (XS_CFG_GET_STRING(xs_cfgtable[i].itemName,
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
900 (gchar **) &tmpStr))
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
901 {
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
902 xs_pstrcpy((gchar **) xs_cfgtable[i].itemData, tmpStr);
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
903 g_free(tmpStr);
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
904 }
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
905 else
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
906 configOK = FALSE;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
907 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
908 break;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
909 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
910
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
911 /* Filters and presets are a special case */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
912 xs_filter_load_into(cfg, 0, &xs_cfg.sid2Filter);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
913
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
914 if (xs_cfg.sid2NFilterPresets > 0)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
915 {
722
5923dfff1fac Unify xs_sid*_filter_t into one.
Matti Hamalainen <ccr@tnsp.org>
parents: 721
diff changeset
916 xs_cfg.sid2FilterPresets = g_malloc0(xs_cfg.sid2NFilterPresets * sizeof(xs_sid_filter_t *));
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
917 if (!xs_cfg.sid2FilterPresets)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
918 {
666
50e036a32db8 De-gettextize.
Matti Hamalainen <ccr@tnsp.org>
parents: 665
diff changeset
919 xs_error("Allocation of sid2FilterPresets structure failed!\n");
939
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
920 configOK = FALSE;
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
921 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
922 else
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
923 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
924 for (i = 0; i < xs_cfg.sid2NFilterPresets; i++)
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
925 xs_cfg.sid2FilterPresets[i] = xs_filter_load(cfg, i);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
926 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
927 }
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
928
960
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
929 // Do a final check
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
930 if (!xs_check_configuration(TRUE))
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
931 configOK = FALSE;
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
932
939
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
933 error:
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
934 if (cfg != NULL)
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
935 {
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
936 XS_CONFIG_FREE(cfg);
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
937 }
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
938 XS_MUTEX_UNLOCK(xs_cfg);
939
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
939 XSDEBUG("%s\n", configOK ? "OK" : "ERRORS!");
49b689449a37 Change xs_read_configuration() to return a boolean value, TRUE if
Matti Hamalainen <ccr@tnsp.org>
parents: 914
diff changeset
940 return configOK;
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
941 }
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
942
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
943
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
944 /* Write the current configuration
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
945 */
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
946 gint xs_write_configuration(void)
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
947 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
948 XS_CONFIG_FILE *cfg;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
949 gint i;
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
950
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
951 XSDEBUG("writing configuration ...\n");
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
952 XS_MUTEX_LOCK(xs_cfg);
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
953
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
954 /* Try to open the XMMS configuration file */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
955 cfg = XS_CONFIG_OPEN();
533
9ca430524698 Audacious-related cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
956
9ca430524698 Audacious-related cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
957 #ifndef AUDACIOUS_PLUGIN
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
958 if (!cfg) cfg = xmms_cfg_new();
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
959 if (!cfg) return -1;
50
dae6d3c2268d Minor fixes, updated to support default XMMS configfile
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
960 #endif
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
961
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
962 /* Write the new settings to XMMS configuration file */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
963 for (i = 0; i < xs_ncfgtable; i++)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
964 switch (xs_cfgtable[i].itemType)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
965 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
966 case CTYPE_INT:
720
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
967 XS_CFG_SET_INT(xs_cfgtable[i].itemName,
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
968 *(gint *) xs_cfgtable[i].itemData);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
969 break;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
970
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
971 case CTYPE_BOOL:
720
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
972 XS_CFG_SET_BOOL(xs_cfgtable[i].itemName,
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
973 *(gboolean *) xs_cfgtable[i].itemData);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
974 break;
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
975
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
976 case CTYPE_FLOAT:
720
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
977 XS_CFG_SET_FLOAT(xs_cfgtable[i].itemName,
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
978 *(gfloat *) xs_cfgtable[i].itemData);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
979 break;
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
980
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
981 case CTYPE_STR:
720
0feeaf698a54 Clean up the XS_CFG_* macros a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 713
diff changeset
982 XS_CFG_SET_STRING(xs_cfgtable[i].itemName,
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
983 *(gchar **) xs_cfgtable[i].itemData);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
984 break;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
985 }
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
986
552
9494fee305fa Config item changes; Unfinished filter preset handling functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 548
diff changeset
987
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
988 #ifndef AUDACIOUS_PLUGIN
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
989 xmms_cfg_write_default_file(cfg);
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
990 #endif
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
991 XS_CONFIG_FREE(cfg);
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
992
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
993 XS_MUTEX_UNLOCK(xs_cfg);
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
994
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
995 return 0;
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
996 }
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
997
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
998
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
999 /* Configuration panel was canceled
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1000 */
612
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 608
diff changeset
1001 XS_DEF_WINDOW_CLOSE(cfg_cancel, configwin)
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1002
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1003
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
1004 /* Configuration was accepted, save the settings
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1005 */
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
1006 void xs_cfg_ok(void)
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1007 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1008 gint i;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1009 gfloat tmpValue;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1010 gint tmpInt;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1011 const gchar *tmpStr;
487
6357b7fe5b0d Added new WTYPE_COMBO, the audio frequency selection now uses a combobox.
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
1012
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1013 /* Get lock on configuration */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1014 XS_MUTEX_LOCK(xs_cfg);
57
85811bcd049e Improved, re-written configuration code and lots of minor fixes
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
1015
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1016 XSDEBUG("get data from widgets to config...\n");
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
1017
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1018 for (i = 0; i < xs_nwidtable; i++)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1019 switch (xs_cfgitems[i].widType)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1020 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1021 case WTYPE_BGROUP:
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1022 /* Check if toggle-button is active */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1023 if (GTK_TOGGLE_BUTTON(LUW(xs_cfgitems[i].widName))->active)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1024 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1025 /* Yes, set the constant value */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1026 *((gint *) xs_cfgitems[i].itemData) = xs_cfgitems[i].itemSet;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1027 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1028 break;
63
05220299c6e8 Kuumaa paskaa
Matti Hamalainen <ccr@tnsp.org>
parents: 57
diff changeset
1029
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1030 case WTYPE_COMBO:
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1031 /* Get text from text-widget */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1032 tmpStr = gtk_entry_get_text(GTK_ENTRY(LUW(xs_cfgitems[i].widName)));
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1033 if (sscanf(tmpStr, "%d", &tmpInt) != 1)
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1034 tmpInt = xs_cfgitems[i].itemSet;
487
6357b7fe5b0d Added new WTYPE_COMBO, the audio frequency selection now uses a combobox.
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
1035
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1036 *((gint *) xs_cfgitems[i].itemData) = tmpInt;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1037 break;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1038
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1039 case WTYPE_SPIN:
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1040 case WTYPE_SCALE:
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1041 /* Get the value */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1042 switch (xs_cfgitems[i].widType)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1043 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1044 case WTYPE_SPIN:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1045 tmpValue = gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(LUW(xs_cfgitems[i].widName)))->value;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1046 break;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1047
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1048 case WTYPE_SCALE:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1049 tmpValue = gtk_range_get_adjustment(GTK_RANGE(LUW(xs_cfgitems[i].widName)))->value;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1050 break;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1051
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1052 default:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1053 tmpValue = -1;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1054 break;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1055 }
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1056
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1057 /* Set the value */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1058 switch (xs_cfgitems[i].itemType)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1059 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1060 case CTYPE_INT:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1061 *((gint *) xs_cfgitems[i].itemData) = (gint) tmpValue;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1062 break;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1063
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1064 case CTYPE_FLOAT:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1065 *((gfloat *) xs_cfgitems[i].itemData) = tmpValue;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1066 break;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1067 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1068 break;
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1069
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1070 case WTYPE_BUTTON:
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1071 /* Check if toggle-button is active */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1072 *((gboolean *) xs_cfgitems[i].itemData) =
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1073 (GTK_TOGGLE_BUTTON(LUW(xs_cfgitems[i].widName))->active);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1074 break;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1075
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1076 case WTYPE_TEXT:
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1077 /* Get text from text-widget */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1078 xs_pstrcpy((gchar **) xs_cfgitems[i].itemData,
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1079 gtk_entry_get_text(GTK_ENTRY(LUW(xs_cfgitems[i].widName))));
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1080 break;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1081 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1082
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
1083 // Check the settings
960
5711abf1ff39 Improve automatic re-configuration, trying to provide at least usable
Matti Hamalainen <ccr@tnsp.org>
parents: 946
diff changeset
1084 if (!xs_check_configuration(FALSE))
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
1085 goto error;
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
1086
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1087 /* Get filter settings */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1088 /*
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1089 if (!xs_curve_get_points(XS_CURVE(LUW("")), &xs_cfg.sid2Filter.points, &xs_cfg.sid2Filter.npoints)) {
666
50e036a32db8 De-gettextize.
Matti Hamalainen <ccr@tnsp.org>
parents: 665
diff changeset
1090 xs_error("Warning: Could not get filter curve widget points!\n");
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1091 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1092 */
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1093
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1094 /* Release lock */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1095 XS_MUTEX_UNLOCK(xs_cfg);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1096
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1097 /* Close window */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1098 gtk_widget_destroy(xs_configwin);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1099 xs_configwin = NULL;
147
a7abcda7a86c SLDB, STIL and emulation engine settings are now updated
Matti Hamalainen <ccr@tnsp.org>
parents: 141
diff changeset
1100
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1101 /* Write settings */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1102 xs_write_configuration();
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1103
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1104 /* Re-initialize */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1105 xs_reinit();
913
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
1106 return;
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
1107
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
1108 error:
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
1109 /* Release lock */
f8aa81ac2528 Improve configuration sanity checking.
Matti Hamalainen <ccr@tnsp.org>
parents: 904
diff changeset
1110 XS_MUTEX_UNLOCK(xs_cfg);
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1111 }
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1112
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1113
896
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1114 void xs_messagebox_ok(GtkButton *button, gpointer user_data)
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1115 {
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1116 (void) button;
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1117 gtk_widget_destroy(GTK_WIDGET(user_data));
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1118 }
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1119
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1120
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1121 void xs_messagebox_const(const gchar *title, const gchar *msg)
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1122 {
914
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1123 GtkWidget *wid, *win = create_xs_messagebox();
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1124 gchar *ntitle;
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1125
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1126 if (win == NULL)
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1127 return;
896
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1128
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1129 gtk_signal_connect(
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1130 GTK_OBJECT(lookup_widget(win, "xs_messagebox_ok")),
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1131 "clicked", GTK_SIGNAL_FUNC(xs_messagebox_ok), win);
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1132
914
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1133 ntitle = g_strdup_printf("%s %s", PACKAGE_NAME, title != NULL ? title : "message");
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1134 if (ntitle != NULL)
896
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1135 {
914
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1136 gtk_window_set_title(GTK_WINDOW(win), ntitle);
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1137
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1138 if ((wid = lookup_widget(win, "xs_messagebox_frame")) != NULL)
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1139 gtk_frame_set_label(GTK_FRAME(wid), ntitle);
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1140
3fdb0af448c7 Improve messagebox, set the window title also.
Matti Hamalainen <ccr@tnsp.org>
parents: 913
diff changeset
1141 g_free(ntitle);
896
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1142 }
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1143
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1144 if ((wid = lookup_widget(win, "xs_messagebox_msg")) != NULL)
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1145 {
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1146 gtk_label_set_text(GTK_LABEL(wid), msg);
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1147 }
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1148
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1149 gtk_widget_show(win);
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1150 }
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1151
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1152
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1153 void xs_messagebox(const gchar *title, const gchar *fmt, ...)
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1154 {
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1155 va_list ap;
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1156 gchar *msg;
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1157
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1158 va_start(ap, fmt);
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1159 msg = g_strdup_vprintf(fmt, ap);
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1160 va_end(ap);
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1161
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1162 xs_messagebox_const(title, msg);
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1163 g_free(msg);
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1164 }
911401ea2145 Add message box functionality.
Matti Hamalainen <ccr@tnsp.org>
parents: 886
diff changeset
1165
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1166 /* Confirmation window
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1167 */
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1168 gboolean xs_confirmwin_delete(GtkWidget *widget, GdkEvent *event, gpointer user_data)
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1169 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1170 (void) widget;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1171 (void) event;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1172 (void) user_data;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1173
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1174 return FALSE;
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1175 }
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1176
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1177
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1178
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
1179 /* HVSC songlength-database file selector response-functions
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
1180 */
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1181 void xs_cfg_sldb_browse(GtkButton * button, gpointer user_data)
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1182 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1183 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1184 (void) user_data;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1185
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1186 if (xs_sldb_fileselector != NULL)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1187 {
665
94186706beed Use macro wrapping for Gtk+ v1 vs v2 differences, yet again.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
1188 XS_WINDOW_PRESENT(xs_sldb_fileselector);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1189 return;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1190 }
42
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
1191
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1192 xs_sldb_fileselector = create_xs_sldb_fs();
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1193 XS_MUTEX_LOCK(xs_cfg);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1194 gtk_file_selection_set_filename(GTK_FILE_SELECTION(xs_sldb_fileselector), xs_cfg.songlenDBPath);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1195 XS_MUTEX_UNLOCK(xs_cfg);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1196 gtk_widget_show(xs_sldb_fileselector);
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
1197 }
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
1198
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
1199
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1200 void xs_sldb_fs_ok(GtkButton *button, gpointer user_data)
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
1201 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1202 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1203 (void) user_data;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1204
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1205 /* Selection was accepted! */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1206 gtk_entry_set_text(GTK_ENTRY(LUW("cfg_sld_dbpath")),
897
cfc20df88401 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 896
diff changeset
1207 gtk_file_selection_get_filename(GTK_FILE_SELECTION(xs_sldb_fileselector)));
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
1208
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1209 /* Close file selector window */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1210 gtk_widget_destroy(xs_sldb_fileselector);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1211 xs_sldb_fileselector = NULL;
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
1212 }
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
1213
612
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 608
diff changeset
1214 XS_DEF_WINDOW_CLOSE(sldb_fs_cancel, sldb_fileselector)
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1215 XS_DEF_WINDOW_DELETE(sldb_fs, sldb_fileselector)
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1216
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1217
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
1218 /* STIL-database file selector response-functions
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1219 */
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1220 void xs_cfg_stil_browse(GtkButton * button, gpointer user_data)
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
1221 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1222 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1223 (void) user_data;
341
e065deeb086f Removed 'unused argument' warnings, some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
1224
874
350f755549dd More work on the ROM images configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 871
diff changeset
1225 if (xs_stil_fileselector != NULL)
350f755549dd More work on the ROM images configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 871
diff changeset
1226 {
665
94186706beed Use macro wrapping for Gtk+ v1 vs v2 differences, yet again.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
1227 XS_WINDOW_PRESENT(xs_stil_fileselector);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1228 return;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1229 }
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
1230
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1231 xs_stil_fileselector = create_xs_stil_fs();
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1232 XS_MUTEX_LOCK(xs_cfg);
900
eba5d47edc13 Remember the current values when opening the file browsers of config dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 898
diff changeset
1233 gtk_file_selection_set_filename(GTK_FILE_SELECTION(xs_stil_fileselector),
eba5d47edc13 Remember the current values when opening the file browsers of config dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 898
diff changeset
1234 gtk_entry_get_text(GTK_ENTRY(LUW("cfg_stil_dbpath"))));
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1235 XS_MUTEX_UNLOCK(xs_cfg);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1236 gtk_widget_show(xs_stil_fileselector);
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
1237 }
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
1238
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 24
diff changeset
1239
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1240 void xs_stil_fs_ok(GtkButton *button, gpointer user_data)
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1241 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1242 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1243 (void) user_data;
579
6b2c682cc0a8 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 578
diff changeset
1244
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1245 /* Selection was accepted! */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1246 gtk_entry_set_text(GTK_ENTRY(LUW("cfg_stil_dbpath")),
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1247 gtk_file_selection_get_filename(GTK_FILE_SELECTION(xs_stil_fileselector)));
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1248
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1249 /* Close file selector window */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1250 gtk_widget_destroy(xs_stil_fileselector);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1251 xs_stil_fileselector = NULL;
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1252 }
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1253
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1254
612
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 608
diff changeset
1255 XS_DEF_WINDOW_CLOSE(stil_fs_cancel, stil_fileselector)
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1256 XS_DEF_WINDOW_DELETE(stil_fs, stil_fileselector)
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1257
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1258
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
1259 /* HVSC location selector response-functions
127
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 116
diff changeset
1260 */
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1261 void xs_cfg_hvsc_browse(GtkButton * button, gpointer user_data)
127
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 116
diff changeset
1262 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1263 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1264 (void) user_data;
341
e065deeb086f Removed 'unused argument' warnings, some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
1265
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1266 if (xs_hvsc_selector != NULL)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1267 {
665
94186706beed Use macro wrapping for Gtk+ v1 vs v2 differences, yet again.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
1268 XS_WINDOW_PRESENT(xs_hvsc_selector);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1269 return;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1270 }
127
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 116
diff changeset
1271
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1272 xs_hvsc_selector = create_xs_hvsc_fs();
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1273 XS_MUTEX_LOCK(xs_cfg);
900
eba5d47edc13 Remember the current values when opening the file browsers of config dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 898
diff changeset
1274 gtk_file_selection_set_filename(GTK_FILE_SELECTION(xs_hvsc_selector),
eba5d47edc13 Remember the current values when opening the file browsers of config dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 898
diff changeset
1275 gtk_entry_get_text(GTK_ENTRY(LUW("cfg_hvsc_path"))));
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1276 XS_MUTEX_UNLOCK(xs_cfg);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1277 gtk_widget_show(xs_hvsc_selector);
127
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 116
diff changeset
1278 }
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 116
diff changeset
1279
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 116
diff changeset
1280
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1281 void xs_hvsc_fs_ok(GtkButton *button, gpointer user_data)
127
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 116
diff changeset
1282 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1283 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1284 (void) user_data;
898
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1285 gchar *path, *result = gtk_file_selection_get_filename(GTK_FILE_SELECTION(xs_hvsc_selector));
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1286 if (!xs_is_dir_path(result))
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1287 {
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1288 path = xs_get_dir_path(result);
941
63342bbeab47 Mark messagebox messages as translatable strings.
Matti Hamalainen <ccr@tnsp.org>
parents: 940
diff changeset
1289 xs_messagebox(_("Warning"),
63342bbeab47 Mark messagebox messages as translatable strings.
Matti Hamalainen <ccr@tnsp.org>
parents: 940
diff changeset
1290 _("Selected HVSC path '%s' does not seem like a path, adjusting to '%s'.\n"),
898
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1291 result, path);
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1292 }
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1293 else
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1294 path = result;
579
6b2c682cc0a8 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 578
diff changeset
1295
898
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1296 gtk_entry_set_text(GTK_ENTRY(LUW("cfg_hvsc_path")), path);
127
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 116
diff changeset
1297
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1298 /* Close file selector window */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1299 gtk_widget_destroy(xs_hvsc_selector);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1300 xs_hvsc_selector = NULL;
127
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 116
diff changeset
1301 }
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 116
diff changeset
1302
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 116
diff changeset
1303
612
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 608
diff changeset
1304 XS_DEF_WINDOW_CLOSE(hvsc_fs_cancel, hvsc_selector)
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1305 XS_DEF_WINDOW_DELETE(hvsc_fs, hvsc_selector)
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1306
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1307
871
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1308 /* C64 ROM path selector response-functions
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1309 */
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1310 void xs_cfg_rom_browse(GtkButton * button, gpointer user_data)
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1311 {
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1312 (void) button;
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1313 (void) user_data;
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1314
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1315 if (xs_rom_selector != NULL)
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1316 {
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1317 XS_WINDOW_PRESENT(xs_rom_selector);
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1318 return;
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1319 }
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1320
874
350f755549dd More work on the ROM images configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 871
diff changeset
1321 xs_rom_selector = create_xs_rom_fs();
871
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1322 XS_MUTEX_LOCK(xs_cfg);
900
eba5d47edc13 Remember the current values when opening the file browsers of config dialog.
Matti Hamalainen <ccr@tnsp.org>
parents: 898
diff changeset
1323 gtk_file_selection_set_filename(GTK_FILE_SELECTION(xs_rom_selector),
904
5d26b869a48e Add resampling configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 900
diff changeset
1324 gtk_entry_get_text(GTK_ENTRY(LUW("cfg_emu_rom_path"))));
871
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1325 XS_MUTEX_UNLOCK(xs_cfg);
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1326 gtk_widget_show(xs_rom_selector);
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1327 }
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1328
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1329
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1330 void xs_rom_fs_ok(GtkButton *button, gpointer user_data)
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1331 {
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1332 (void) button;
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1333 (void) user_data;
898
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1334 gchar *path, *result = gtk_file_selection_get_filename(GTK_FILE_SELECTION(xs_rom_selector));
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1335 if (!xs_is_dir_path(result))
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1336 {
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1337 path = xs_get_dir_path(result);
941
63342bbeab47 Mark messagebox messages as translatable strings.
Matti Hamalainen <ccr@tnsp.org>
parents: 940
diff changeset
1338 xs_messagebox(_("Warning"),
63342bbeab47 Mark messagebox messages as translatable strings.
Matti Hamalainen <ccr@tnsp.org>
parents: 940
diff changeset
1339 _("Selected ROM path '%s' does not seem like a path, adjusting to '%s'.\n"),
898
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1340 result, path);
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1341 }
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1342 else
212d4738438d Use the message box dialog, inform user when the path is not a directory
Matti Hamalainen <ccr@tnsp.org>
parents: 897
diff changeset
1343 path = result;
871
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1344
904
5d26b869a48e Add resampling configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 900
diff changeset
1345 gtk_entry_set_text(GTK_ENTRY(LUW("cfg_emu_rom_path")), path);
871
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1346
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1347 /* Close file selector window */
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1348 gtk_widget_destroy(xs_rom_selector);
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1349 xs_rom_selector = NULL;
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1350 }
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1351
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1352
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1353 XS_DEF_WINDOW_CLOSE(rom_fs_cancel, rom_selector)
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1354 XS_DEF_WINDOW_DELETE(rom_fs, rom_selector)
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1355
d183ac29b879 Add ROM image path configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 850
diff changeset
1356
578
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1357 /* Filter handling
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1358 */
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1359 void xs_cfg_sp1_filter_reset(GtkButton * button, gpointer user_data)
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1360 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1361 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1362 (void) user_data;
578
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1363
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1364 gtk_adjustment_set_value(gtk_range_get_adjustment(GTK_RANGE(LUW("cfg_sp1_filter_fs"))), XS_SIDPLAY1_FS);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1365 gtk_adjustment_set_value(gtk_range_get_adjustment(GTK_RANGE(LUW("cfg_sp1_filter_fm"))), XS_SIDPLAY1_FM);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1366 gtk_adjustment_set_value(gtk_range_get_adjustment(GTK_RANGE(LUW("cfg_sp1_filter_ft"))), XS_SIDPLAY1_FT);
578
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1367 }
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1368
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1369
722
5923dfff1fac Unify xs_sid*_filter_t into one.
Matti Hamalainen <ccr@tnsp.org>
parents: 721
diff changeset
1370 void xs_cfg_sp2_filter_update(XSCurve *curve, xs_sid_filter_t *f)
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1371 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1372 assert(curve);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1373 assert(f);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1374
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1375 xs_curve_reset(curve);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1376 xs_curve_set_range(curve, 0,0, XS_SIDPLAY2_NFPOINTS, XS_SIDPLAY2_FMAX);
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1377 if (!xs_curve_set_points(curve, f->points, f->npoints))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1378 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1379 // FIXME
666
50e036a32db8 De-gettextize.
Matti Hamalainen <ccr@tnsp.org>
parents: 665
diff changeset
1380 xs_error("Warning: Could not set filter curve widget points!\n");
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1381 }
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1382 }
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1383
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1384
592
7ae251af5f83 Some macro magic for simplifying the repetitive code.
Matti Hamalainen <ccr@tnsp.org>
parents: 590
diff changeset
1385 void xs_cfg_sp2_presets_update(void)
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1386 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1387 GList *tmpList = NULL;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1388 gint i;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1389
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1390 for (i = 0; i < xs_cfg.sid2NFilterPresets; i++)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1391 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1392 tmpList = g_list_append(tmpList,
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1393 (gpointer) xs_cfg.sid2FilterPresets[i]->name);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1394 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1395
750
3180bf22090f Update copyright.
Matti Hamalainen <ccr@tnsp.org>
parents: 748
diff changeset
1396 if (tmpList != NULL)
3180bf22090f Update copyright.
Matti Hamalainen <ccr@tnsp.org>
parents: 748
diff changeset
1397 gtk_combo_set_popdown_strings(GTK_COMBO(LUW("cfg_sp2_filter_combo")), tmpList);
3180bf22090f Update copyright.
Matti Hamalainen <ccr@tnsp.org>
parents: 748
diff changeset
1398
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1399 g_list_free(tmpList);
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1400 }
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1401
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1402
578
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1403 void xs_cfg_sp2_filter_load(GtkButton *button, gpointer user_data)
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1404 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1405 const gchar *tmpStr;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1406 gint i, j;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1407
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1408 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1409 (void) user_data;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1410
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1411 XS_MUTEX_LOCK(xs_cfg);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1412
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1413 tmpStr = gtk_entry_get_text(GTK_ENTRY(LUW("cfg_sp2_filter_combo_entry")));
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1414 for (i = 0, j = -1; i < xs_cfg.sid2NFilterPresets; i++)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1415 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1416 if (!strcmp(tmpStr, xs_cfg.sid2FilterPresets[i]->name))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1417 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1418 j = i;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1419 break;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1420 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1421 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1422
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1423 if (j != -1)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1424 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1425 fprintf(stderr, "Updating from '%s'\n", tmpStr);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1426 xs_cfg_sp2_filter_update(
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1427 XS_CURVE(LUW("cfg_sp2_filter_curve")),
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1428 xs_cfg.sid2FilterPresets[i]);
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1429 }
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1430 else
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1431 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1432 /* error/warning: no such filter preset */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1433 fprintf(stderr, "No such filter preset '%s'!\n", tmpStr);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1434 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1435
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1436 XS_MUTEX_UNLOCK(xs_cfg);
578
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1437 }
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1438
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1439
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1440 void xs_cfg_sp2_filter_save(GtkButton *button, gpointer user_data)
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1441 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1442 /*
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1443 1) check if textentry matches any current filter name
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1444 yes) ask if saving over ok?
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1445 no) ...
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1446
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1447 2) save current filter to the name
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1448 */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1449 const gchar *tmpStr;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1450 gint i, j;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1451
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1452 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1453 (void) user_data;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1454
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1455 XS_MUTEX_LOCK(xs_cfg);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1456
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1457 tmpStr = gtk_entry_get_text(GTK_ENTRY(LUW("cfg_sp2_filter_combo_entry")));
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1458 for (i = 0, j = -1; i < xs_cfg.sid2NFilterPresets; i++)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1459 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1460 if (!strcmp(tmpStr, xs_cfg.sid2FilterPresets[i]->name))
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1461 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1462 j = i;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1463 break;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1464 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1465 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1466
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1467 if (j != -1)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1468 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1469 fprintf(stderr, "Found, confirm overwrite?\n");
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1470 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1471
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1472 fprintf(stderr, "saving!\n");
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1473
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1474 xs_cfg_sp2_presets_update();
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1475
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1476 XS_MUTEX_UNLOCK(xs_cfg);
578
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1477 }
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1478
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1479
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1480 void xs_cfg_sp2_filter_delete(GtkButton *button, gpointer user_data)
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1481 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1482 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1483 (void) user_data;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1484 /*
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1485 1) confirm
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1486 2) delete
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1487 */
578
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1488 }
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1489
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1490
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1491 void xs_cfg_sp2_filter_import(GtkButton *button, gpointer user_data)
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1492 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1493 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1494 (void) user_data;
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1495
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1496 if (xs_filt_importselector != NULL)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1497 {
665
94186706beed Use macro wrapping for Gtk+ v1 vs v2 differences, yet again.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
1498 XS_WINDOW_PRESENT(xs_filt_importselector);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1499 return;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1500 }
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1501
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1502 xs_filt_importselector = create_xs_filter_import_fs();
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1503 gtk_widget_show(xs_filt_importselector);
578
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1504 }
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1505
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1506
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1507 void xs_filter_import_fs_ok(GtkButton *button, gpointer user_data)
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1508 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1509 const gchar *tmpStr;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1510 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1511 (void) user_data;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1512
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1513 XS_MUTEX_LOCK(xs_cfg);
592
7ae251af5f83 Some macro magic for simplifying the repetitive code.
Matti Hamalainen <ccr@tnsp.org>
parents: 590
diff changeset
1514
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1515 /* Selection was accepted! */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1516 tmpStr = gtk_file_selection_get_filename(GTK_FILE_SELECTION(xs_filt_importselector));
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1517 xs_filters_import(tmpStr, xs_cfg.sid2FilterPresets, &xs_cfg.sid2NFilterPresets);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1518 xs_cfg_sp2_presets_update();
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1519
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1520 /* Close file selector window */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1521 gtk_widget_destroy(xs_filt_importselector);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1522 xs_filt_importselector = NULL;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1523 XS_MUTEX_UNLOCK(xs_cfg);
578
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1524 }
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1525
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1526
612
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 608
diff changeset
1527 XS_DEF_WINDOW_CLOSE(filter_import_fs_cancel, filt_importselector)
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1528 XS_DEF_WINDOW_DELETE(filter_import_fs, filt_importselector)
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1529
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1530
590
7d94e9e5dfb7 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 589
diff changeset
1531 void xs_cfg_sp2_filter_export(GtkButton *button, gpointer user_data)
7d94e9e5dfb7 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 589
diff changeset
1532 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1533 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1534 (void) user_data;
590
7d94e9e5dfb7 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 589
diff changeset
1535
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1536 if (xs_filt_exportselector != NULL)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1537 {
665
94186706beed Use macro wrapping for Gtk+ v1 vs v2 differences, yet again.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
1538 XS_WINDOW_PRESENT(xs_filt_exportselector);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1539 return;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1540 }
590
7d94e9e5dfb7 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 589
diff changeset
1541
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1542 xs_filt_exportselector = create_xs_filter_export_fs();
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1543 gtk_widget_show(xs_filt_exportselector);
590
7d94e9e5dfb7 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 589
diff changeset
1544 }
7d94e9e5dfb7 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 589
diff changeset
1545
7d94e9e5dfb7 Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 589
diff changeset
1546
578
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1547 void xs_filter_export_fs_ok(GtkButton *button, gpointer user_data)
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1548 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1549 const gchar *tmpStr;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1550 (void) button;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1551 (void) user_data;
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1552
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1553 XS_MUTEX_LOCK(xs_cfg);
592
7ae251af5f83 Some macro magic for simplifying the repetitive code.
Matti Hamalainen <ccr@tnsp.org>
parents: 590
diff changeset
1554
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1555 /* Selection was accepted! */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1556 tmpStr = gtk_file_selection_get_filename(GTK_FILE_SELECTION(xs_filt_exportselector));
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1557 xs_filters_export(tmpStr, xs_cfg.sid2FilterPresets, xs_cfg.sid2NFilterPresets);
592
7ae251af5f83 Some macro magic for simplifying the repetitive code.
Matti Hamalainen <ccr@tnsp.org>
parents: 590
diff changeset
1558
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1559 /* Close file selector window */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1560 gtk_widget_destroy(xs_filt_exportselector);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1561 xs_filt_exportselector = NULL;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1562 XS_MUTEX_UNLOCK(xs_cfg);
578
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1563 }
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1564
d9290bd40037 Moved functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 577
diff changeset
1565
612
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 608
diff changeset
1566 XS_DEF_WINDOW_CLOSE(filter_export_fs_cancel, filt_exportselector)
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1567 XS_DEF_WINDOW_DELETE(filter_export_fs, filt_exportselector)
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1568
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1569
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
1570 /* Selection toggle handlers
127
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 116
diff changeset
1571 */
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1572 void xs_cfg_emu_filters_toggled(GtkToggleButton * togglebutton, gpointer user_data)
77
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 75
diff changeset
1573 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1574 gboolean isActive = GTK_TOGGLE_BUTTON(togglebutton)->active;
341
e065deeb086f Removed 'unused argument' warnings, some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
1575
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1576 (void) user_data;
172
505da1389e5c Twiddling
Matti Hamalainen <ccr@tnsp.org>
parents: 169
diff changeset
1577
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1578 gtk_widget_set_sensitive(LUW("cfg_filters_notebook"), isActive);
77
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 75
diff changeset
1579 }
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 75
diff changeset
1580
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1581
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1582 void xs_cfg_ftitle_override_toggled(GtkToggleButton * togglebutton, gpointer user_data)
77
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 75
diff changeset
1583 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1584 gboolean isActive = GTK_TOGGLE_BUTTON(togglebutton)->active;
341
e065deeb086f Removed 'unused argument' warnings, some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
1585
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1586 (void) user_data;
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
1587
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1588 gtk_widget_set_sensitive(LUW("cfg_ftitle_box"), isActive);
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
1589 }
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1590
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
1591
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1592 void xs_cfg_emu_sidplay1_toggled(GtkToggleButton * togglebutton, gpointer user_data)
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
1593 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1594 (void) togglebutton;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1595 (void) user_data;
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
1596 }
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
1597
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
1598
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1599 void xs_cfg_emu_sidplay2_toggled(GtkToggleButton * togglebutton, gpointer user_data)
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
1600 {
839
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1601 gboolean isSP2Active = GTK_TOGGLE_BUTTON(LUW("cfg_emu_sidplay2"))->active,
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1602 isFPActive = GTK_TOGGLE_BUTTON(LUW("cfg_emu_sidplayfp"))->active,
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1603 isEither = isSP2Active || isFPActive;
341
e065deeb086f Removed 'unused argument' warnings, some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
1604
839
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1605 (void) togglebutton;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1606 (void) user_data;
77
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 75
diff changeset
1607
848
a293b88eb3fb Disable some configuration options in the dialog when using FP backend.
Matti Hamalainen <ccr@tnsp.org>
parents: 839
diff changeset
1608 gtk_widget_set_sensitive(LUW("cfg_memmode_frame"), !isFPActive);
839
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1609 gtk_widget_set_sensitive(LUW("cfg_emu_mem_real"), isSP2Active);
848
a293b88eb3fb Disable some configuration options in the dialog when using FP backend.
Matti Hamalainen <ccr@tnsp.org>
parents: 839
diff changeset
1610
839
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1611 gtk_widget_set_sensitive(LUW("cfg_sidplay2_frame"), isEither);
712
f82e0adf19f0 Disable optimization button when distortion patched libSIDPlay2 is in use,
Matti Hamalainen <ccr@tnsp.org>
parents: 711
diff changeset
1612
f82e0adf19f0 Disable optimization button when distortion patched libSIDPlay2 is in use,
Matti Hamalainen <ccr@tnsp.org>
parents: 711
diff changeset
1613 /* Optimization mode removed from distortion patch */
839
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1614 gtk_widget_set_sensitive(LUW("cfg_emu_sp2_opt"), isSP2Active);
77
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 75
diff changeset
1615
886
5d4677af3c8e Disable autopan output option also when using FP backend.
Matti Hamalainen <ccr@tnsp.org>
parents: 874
diff changeset
1616 gtk_widget_set_sensitive(LUW("cfg_chn_autopan"), !isEither);
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1617
839
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1618 #if defined(HAVE_SIDPLAYFP) && defined(HAVE_RESID_FP_BUILDER)
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1619 gtk_widget_set_sensitive(LUW("cfg_emu_sp2_resid_fp"), isFPActive);
793
0617f844ebdb Meh, revert some previous changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 785
diff changeset
1620 #else
0617f844ebdb Meh, revert some previous changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 785
diff changeset
1621 gtk_widget_set_sensitive(LUW("cfg_emu_sp2_resid_fp"), FALSE);
0617f844ebdb Meh, revert some previous changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 785
diff changeset
1622 #endif
0617f844ebdb Meh, revert some previous changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 785
diff changeset
1623
0617f844ebdb Meh, revert some previous changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 785
diff changeset
1624 #ifdef HAVE_RESID_BUILDER
839
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1625 gtk_widget_set_sensitive(LUW("cfg_emu_sp2_resid"), isEither);
904
5d26b869a48e Add resampling configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 900
diff changeset
1626 gtk_widget_set_sensitive(LUW("cfg_resid_frame"), isFPActive);
793
0617f844ebdb Meh, revert some previous changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 785
diff changeset
1627 #else
0617f844ebdb Meh, revert some previous changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 785
diff changeset
1628 gtk_widget_set_sensitive(LUW("cfg_emu_sp2_resid"), FALSE);
904
5d26b869a48e Add resampling configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 900
diff changeset
1629 gtk_widget_set_sensitive(LUW("cfg_resid_frame"), FALSE);
793
0617f844ebdb Meh, revert some previous changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 785
diff changeset
1630 #endif
0617f844ebdb Meh, revert some previous changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 785
diff changeset
1631
0617f844ebdb Meh, revert some previous changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 785
diff changeset
1632 #ifdef HAVE_HARDSID_BUILDER
839
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1633 gtk_widget_set_sensitive(LUW("cfg_emu_sp2_hardsid"), isEither);
793
0617f844ebdb Meh, revert some previous changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 785
diff changeset
1634 #else
839
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1635 gtk_widget_set_sensitive(LUW("cfg_emu_sp2_hardsid"), FALSE);
793
0617f844ebdb Meh, revert some previous changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 785
diff changeset
1636 #endif
904
5d26b869a48e Add resampling configuration.
Matti Hamalainen <ccr@tnsp.org>
parents: 900
diff changeset
1637
77
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 75
diff changeset
1638 }
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 75
diff changeset
1639
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 75
diff changeset
1640
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1641 void xs_cfg_mintime_enable_toggled(GtkToggleButton * togglebutton, gpointer user_data)
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1642 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1643 gboolean isActive = GTK_TOGGLE_BUTTON(togglebutton)->active;
341
e065deeb086f Removed 'unused argument' warnings, some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
1644
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1645 (void) user_data;
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1646
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1647 gtk_widget_set_sensitive(LUW("cfg_mintime_box"), isActive);
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1648 }
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1649
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1650
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1651 void xs_cfg_maxtime_enable_toggled(GtkToggleButton * togglebutton, gpointer user_data)
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1652 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1653 gboolean isActive = GTK_TOGGLE_BUTTON(LUW("cfg_maxtime_enable"))->active;
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1654
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1655 (void) togglebutton;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1656 (void) user_data;
341
e065deeb086f Removed 'unused argument' warnings, some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
1657
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1658 gtk_widget_set_sensitive(LUW("cfg_maxtime_unknown"), isActive);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1659 gtk_widget_set_sensitive(LUW("cfg_maxtime_box"), isActive);
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1660 }
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1661
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1662
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1663 void xs_cfg_sldb_enable_toggled(GtkToggleButton * togglebutton, gpointer user_data)
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1664 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1665 gboolean isActive = GTK_TOGGLE_BUTTON(togglebutton)->active;
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1666
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1667 (void) user_data;
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1668
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1669 gtk_widget_set_sensitive(LUW("cfg_sld_box"), isActive);
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1670 }
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1671
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1672
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1673 void xs_cfg_stil_enable_toggled(GtkToggleButton * togglebutton, gpointer user_data)
260
7a23dfef023d More subauto poking.
Matti Hamalainen <ccr@tnsp.org>
parents: 258
diff changeset
1674 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1675 gboolean isActive = GTK_TOGGLE_BUTTON(togglebutton)->active;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1676
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1677 (void) user_data;
341
e065deeb086f Removed 'unused argument' warnings, some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
1678
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1679 gtk_widget_set_sensitive(LUW("cfg_stil_box1"), isActive);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1680 gtk_widget_set_sensitive(LUW("cfg_stil_box2"), isActive);
260
7a23dfef023d More subauto poking.
Matti Hamalainen <ccr@tnsp.org>
parents: 258
diff changeset
1681 }
7a23dfef023d More subauto poking.
Matti Hamalainen <ccr@tnsp.org>
parents: 258
diff changeset
1682
7a23dfef023d More subauto poking.
Matti Hamalainen <ccr@tnsp.org>
parents: 258
diff changeset
1683
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1684 void xs_cfg_subauto_enable_toggled(GtkToggleButton * togglebutton, gpointer user_data)
260
7a23dfef023d More subauto poking.
Matti Hamalainen <ccr@tnsp.org>
parents: 258
diff changeset
1685 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1686 gboolean isActive = GTK_TOGGLE_BUTTON(togglebutton)->active;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1687
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1688 (void) user_data;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1689
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1690 gtk_widget_set_sensitive(LUW("cfg_subauto_min_only"), isActive);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1691 gtk_widget_set_sensitive(LUW("cfg_subauto_box"), isActive);
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1692 }
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1693
260
7a23dfef023d More subauto poking.
Matti Hamalainen <ccr@tnsp.org>
parents: 258
diff changeset
1694
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1695 void xs_cfg_subauto_min_only_toggled(GtkToggleButton * togglebutton, gpointer user_data)
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1696 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1697 gboolean isActive = GTK_TOGGLE_BUTTON(togglebutton)->active &&
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1698 GTK_TOGGLE_BUTTON(LUW("cfg_subauto_enable"))->active;
341
e065deeb086f Removed 'unused argument' warnings, some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
1699
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1700 (void) user_data;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1701
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1702 gtk_widget_set_sensitive(LUW("cfg_subauto_box"), isActive);
260
7a23dfef023d More subauto poking.
Matti Hamalainen <ccr@tnsp.org>
parents: 258
diff changeset
1703 }
7a23dfef023d More subauto poking.
Matti Hamalainen <ccr@tnsp.org>
parents: 258
diff changeset
1704
172
505da1389e5c Twiddling
Matti Hamalainen <ccr@tnsp.org>
parents: 169
diff changeset
1705
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1706 void xs_cfg_mintime_changed(GtkEditable * editable, gpointer user_data)
172
505da1389e5c Twiddling
Matti Hamalainen <ccr@tnsp.org>
parents: 169
diff changeset
1707 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1708 gint tmpValue;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1709 GtkAdjustment *tmpAdj;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1710
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1711 (void) user_data;
341
e065deeb086f Removed 'unused argument' warnings, some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
1712
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1713 tmpAdj = gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(LUW("cfg_maxtime")));
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1714
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1715 tmpValue = (gint) gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(editable))->value;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1716
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1717 if (tmpValue > tmpAdj->value)
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1718 gtk_adjustment_set_value(tmpAdj, tmpValue);
172
505da1389e5c Twiddling
Matti Hamalainen <ccr@tnsp.org>
parents: 169
diff changeset
1719 }
505da1389e5c Twiddling
Matti Hamalainen <ccr@tnsp.org>
parents: 169
diff changeset
1720
505da1389e5c Twiddling
Matti Hamalainen <ccr@tnsp.org>
parents: 169
diff changeset
1721
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1722 void xs_cfg_maxtime_changed(GtkEditable * editable, gpointer user_data)
172
505da1389e5c Twiddling
Matti Hamalainen <ccr@tnsp.org>
parents: 169
diff changeset
1723 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1724 gint tmpValue;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1725 GtkAdjustment *tmpAdj;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1726
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1727 (void) user_data;
341
e065deeb086f Removed 'unused argument' warnings, some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 324
diff changeset
1728
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1729 tmpAdj = gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(LUW("cfg_mintime")));
177
6e350784aa57 Various cleanups. Min-playtime option now works. Configuration has more
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
1730
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1731 tmpValue = (gint) gtk_spin_button_get_adjustment(GTK_SPIN_BUTTON(editable))->value;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1732
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1733 if (tmpValue < tmpAdj->value)
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1734 gtk_adjustment_set_value(tmpAdj, tmpValue);
172
505da1389e5c Twiddling
Matti Hamalainen <ccr@tnsp.org>
parents: 169
diff changeset
1735 }
505da1389e5c Twiddling
Matti Hamalainen <ccr@tnsp.org>
parents: 169
diff changeset
1736
505da1389e5c Twiddling
Matti Hamalainen <ccr@tnsp.org>
parents: 169
diff changeset
1737
589
a437571d0fc5 Work on GUI and filter config code.
Matti Hamalainen <ccr@tnsp.org>
parents: 583
diff changeset
1738 XS_DEF_WINDOW_DELETE(configwin, configwin)
577
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
1739
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
1740
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
1741 /* Execute the configuration panel
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1742 */
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1743 void xs_configure(void)
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1744 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1745 gint i;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1746 gfloat tmpValue;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1747 gchar tmpStr[64];
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1748 GList *tmpList = NULL;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1749 GtkWidget *tmpCurve;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1750
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1751 /* Check if the window already exists */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1752 if (xs_configwin)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1753 {
665
94186706beed Use macro wrapping for Gtk+ v1 vs v2 differences, yet again.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
1754 XS_WINDOW_PRESENT(xs_configwin);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1755 return;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1756 }
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1757
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1758 /* Create the window */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1759 xs_configwin = create_xs_configwin();
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1760
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1761 /* Get lock on configuration */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1762 XS_MUTEX_LOCK(xs_cfg);
487
6357b7fe5b0d Added new WTYPE_COMBO, the audio frequency selection now uses a combobox.
Matti Hamalainen <ccr@tnsp.org>
parents: 424
diff changeset
1763
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1764 /* Add samplerates */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1765 for (i = 0; i < xs_nsamplerates_table; i++)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1766 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1767 tmpList = g_list_append (tmpList,
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1768 (gpointer) xs_samplerates_table[i]);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1769 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1770 gtk_combo_set_popdown_strings(GTK_COMBO(LUW("cfg_samplerate_combo")), tmpList);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1771 g_list_free(tmpList);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1772
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1773 /* Create the custom filter curve widget for libSIDPlay2 */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1774 xs_cfg_sp2_presets_update();
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1775 tmpCurve = xs_curve_new();
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1776 xs_cfg_sp2_filter_update(XS_CURVE(tmpCurve), &xs_cfg.sid2Filter);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1777 gtk_widget_set_name(tmpCurve, "cfg_sp2_filter_curve");
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1778 gtk_widget_ref(tmpCurve);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1779 gtk_object_set_data_full(GTK_OBJECT(xs_configwin),
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1780 "cfg_sp2_filter_curve", tmpCurve, (GtkDestroyNotify) gtk_widget_unref);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1781 gtk_widget_show(tmpCurve);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1782 gtk_container_add(GTK_CONTAINER(LUW("cfg_sp2_filter_frame")), tmpCurve);
548
ba80c052e425 Configuration widget naming cleanups and GUI-related improvements;
Matti Hamalainen <ccr@tnsp.org>
parents: 542
diff changeset
1783
349
b5e54614b35a More unused argument warning removal, bit of code for filter editor.
Matti Hamalainen <ccr@tnsp.org>
parents: 346
diff changeset
1784
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1785 /* Based on available optional parts, gray out options */
75
653c9b0d1320 SIDPlay2 support "works" now. Borked problems with threads.
Matti Hamalainen <ccr@tnsp.org>
parents: 72
diff changeset
1786 #ifndef HAVE_SIDPLAY1
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1787 gtk_widget_set_sensitive(LUW("cfg_emu_sidplay1"), FALSE);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1788 gtk_widget_set_sensitive(LUW("cfg_box_filter_sidplay1"), FALSE);
42
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
1789 #endif
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
1790
850
82e759a5c7e6 Disable FP backend item in configuration when not available.
Matti Hamalainen <ccr@tnsp.org>
parents: 848
diff changeset
1791 #ifndef HAVE_SIDPLAY2
82e759a5c7e6 Disable FP backend item in configuration when not available.
Matti Hamalainen <ccr@tnsp.org>
parents: 848
diff changeset
1792 gtk_widget_set_sensitive(LUW("cfg_emu_sidplay2"), FALSE);
82e759a5c7e6 Disable FP backend item in configuration when not available.
Matti Hamalainen <ccr@tnsp.org>
parents: 848
diff changeset
1793 #endif
82e759a5c7e6 Disable FP backend item in configuration when not available.
Matti Hamalainen <ccr@tnsp.org>
parents: 848
diff changeset
1794 #ifndef HAVE_SIDPLAYFP
82e759a5c7e6 Disable FP backend item in configuration when not available.
Matti Hamalainen <ccr@tnsp.org>
parents: 848
diff changeset
1795 gtk_widget_set_sensitive(LUW("cfg_emu_sidplayfp"), FALSE);
82e759a5c7e6 Disable FP backend item in configuration when not available.
Matti Hamalainen <ccr@tnsp.org>
parents: 848
diff changeset
1796 #endif
82e759a5c7e6 Disable FP backend item in configuration when not available.
Matti Hamalainen <ccr@tnsp.org>
parents: 848
diff changeset
1797
839
29f3c3f29c0d Finalize libSIDPlay2 vs FP configuration stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 831
diff changeset
1798 #if !defined(HAVE_SIDPLAY2) && !defined(HAVE_SIDPLAYFP)
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1799 gtk_widget_set_sensitive(LUW("cfg_box_filter_sidplay2"), FALSE);
75
653c9b0d1320 SIDPlay2 support "works" now. Borked problems with threads.
Matti Hamalainen <ccr@tnsp.org>
parents: 72
diff changeset
1800 #endif
653c9b0d1320 SIDPlay2 support "works" now. Borked problems with threads.
Matti Hamalainen <ccr@tnsp.org>
parents: 72
diff changeset
1801
624
0bf32fa002bf Merge in some Aud-SID #ifs etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 621
diff changeset
1802
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1803 #if !defined(HAVE_SONG_POSITION) && !defined(AUDACIOUS_PLUGIN)
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1804 gtk_widget_set_sensitive(LUW("cfg_subctrl_patch"), FALSE);
652
7a2d62a249a4 Synchronize with Aud-SID.
Matti Hamalainen <ccr@tnsp.org>
parents: 647
diff changeset
1805 #endif
647
3833592748eb Fixed configuration dialog, thanks to Joker for pointing out the flaws.
Matti Hamalainen <ccr@tnsp.org>
parents: 643
diff changeset
1806
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1807 xs_cfg_ftitle_override_toggled(GTK_TOGGLE_BUTTON(LUW("cfg_ftitle_override")), NULL);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1808 xs_cfg_emu_filters_toggled(GTK_TOGGLE_BUTTON(LUW("cfg_emu_filters")), NULL);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1809 xs_cfg_emu_sidplay1_toggled(GTK_TOGGLE_BUTTON(LUW("cfg_emu_sidplay1")), NULL);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1810 xs_cfg_emu_sidplay2_toggled(GTK_TOGGLE_BUTTON(LUW("cfg_emu_sidplay2")), NULL);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1811 xs_cfg_mintime_enable_toggled(GTK_TOGGLE_BUTTON(LUW("cfg_mintime_enable")), NULL);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1812 xs_cfg_maxtime_enable_toggled(GTK_TOGGLE_BUTTON(LUW("cfg_maxtime_enable")), NULL);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1813 xs_cfg_sldb_enable_toggled(GTK_TOGGLE_BUTTON(LUW("cfg_sld_enable")), NULL);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1814 xs_cfg_stil_enable_toggled(GTK_TOGGLE_BUTTON(LUW("cfg_stil_enable")), NULL);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1815 xs_cfg_subauto_enable_toggled(GTK_TOGGLE_BUTTON(LUW("cfg_subauto_enable")), NULL);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1816 xs_cfg_subauto_min_only_toggled(GTK_TOGGLE_BUTTON(LUW("cfg_subauto_min_only")), NULL);
77
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 75
diff changeset
1817
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
1818
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1819 /* Set current data to widgets */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1820 for (i = 0; i < xs_nwidtable; i++)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1821 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1822 switch (xs_cfgitems[i].widType)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1823 {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1824 case WTYPE_BGROUP:
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1825 assert(xs_cfgitems[i].itemType == CTYPE_INT);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1826 /* Check if current value matches the given one */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1827 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(LUW(xs_cfgitems[i].widName)),
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1828 (*((gint *) xs_cfgitems[i].itemData) == xs_cfgitems[i].itemSet));
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1829 break;
63
05220299c6e8 Kuumaa paskaa
Matti Hamalainen <ccr@tnsp.org>
parents: 57
diff changeset
1830
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1831 case WTYPE_COMBO:
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1832 assert(xs_cfgitems[i].itemType == CTYPE_INT);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1833 g_snprintf(tmpStr, sizeof(tmpStr), "%d", *(gint *) xs_cfgitems[i].itemData);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1834 gtk_entry_set_text(GTK_ENTRY(LUW(xs_cfgitems[i].widName)), tmpStr);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1835 break;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1836
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1837 case WTYPE_SPIN:
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1838 case WTYPE_SCALE:
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1839 /* Get the value */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1840 switch (xs_cfgitems[i].itemType)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1841 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1842 case CTYPE_INT:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1843 tmpValue = (gfloat) * ((gint *) xs_cfgitems[i].itemData);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1844 break;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1845
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1846 case CTYPE_FLOAT:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1847 tmpValue = *((gfloat *) xs_cfgitems[i].itemData);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1848 break;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1849
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1850 default:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1851 tmpValue = -1;
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1852 assert(0);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1853 break;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1854 }
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1855
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1856 /* Set the value */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1857 switch (xs_cfgitems[i].widType)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1858 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1859 case WTYPE_SPIN:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1860 gtk_adjustment_set_value(gtk_spin_button_get_adjustment
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1861 (GTK_SPIN_BUTTON(LUW(xs_cfgitems[i].widName))), tmpValue);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1862 break;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1863
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1864 case WTYPE_SCALE:
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1865 gtk_adjustment_set_value(gtk_range_get_adjustment
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1866 (GTK_RANGE(LUW(xs_cfgitems[i].widName))), tmpValue);
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1867 break;
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1868 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1869 break;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1870
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1871 case WTYPE_BUTTON:
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1872 assert(xs_cfgitems[i].itemType == CTYPE_BOOL);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1873 /* Set toggle-button */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1874 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(LUW(xs_cfgitems[i].widName)),
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1875 *((gboolean *) xs_cfgitems[i].itemData));
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1876 break;
359
b1a858b8cb1a Re-indentation all (non-generated) code.
Matti Hamalainen <ccr@tnsp.org>
parents: 349
diff changeset
1877
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1878 case WTYPE_TEXT:
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1879 assert(xs_cfgitems[i].itemType == CTYPE_STR);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1880 /* Set text to text-widget */
785
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1881 if (*(gchar **) xs_cfgitems[i].itemData != NULL)
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1882 {
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1883 gtk_entry_set_text(GTK_ENTRY(LUW(xs_cfgitems[i].widName)),
fcda6f365e02 More cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 773
diff changeset
1884 *(gchar **) xs_cfgitems[i].itemData);
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1885 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1886 break;
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1887 }
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1888 }
228
a9a5924eb10c Have and use a mutex for xs_cfg configuration structure.
Matti Hamalainen <ccr@tnsp.org>
parents: 224
diff changeset
1889
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1890 /* Release the configuration */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1891 XS_MUTEX_UNLOCK(xs_cfg);
228
a9a5924eb10c Have and use a mutex for xs_cfg configuration structure.
Matti Hamalainen <ccr@tnsp.org>
parents: 224
diff changeset
1892
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1893 /* Show the widget */
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
1894 gtk_widget_show(xs_configwin);
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1895 }