Geoffrey D. Bennett
1164845b3c
Allow for continuous dials
...
Update gtk_dial_new_with_range() to set round_digits to -1 if step is
zero.
Update create_levels_controls() to set step to zero.
2024-02-08 18:08:34 +10:30
Geoffrey D. Bennett
e40ce4d5ad
Fix gtk_dial_new_with_range() to use calculated round_digits
2024-02-08 18:08:34 +10:30
Geoffrey D. Bennett
fcdbc60f16
Add scale to widget-gain.c struct gain
2024-02-08 18:08:34 +10:30
Geoffrey D. Bennett
3740d7ee2d
Fix GtkDial:zero_db property comment
2024-02-08 18:08:34 +10:30
Geoffrey D. Bennett
28604f08a3
Reformat gtkdial.c to match rest of code
2024-02-08 18:08:34 +10:30
Geoffrey D. Bennett
b646bc92cc
Remove irrelevant GDK_AVAILABLE_IN_ALL from gtkdial.h
...
GDK_AVAILABLE_IN_ALL is for core GDK/GTK classes, not user-defined
ones.
2024-02-08 18:08:34 +10:30
Geoffrey D. Bennett
9587e2f494
Remove unused guint8 and gsize from gtkdial.c
2024-02-08 18:08:34 +10:30
Geoffrey D. Bennett
2115a26d9d
Remove unused GtkDialFormatValueFunc from gtkdial.h
2024-02-08 18:08:34 +10:30
Geoffrey D. Bennett
b2823e79be
Bump copyright year
2024-02-08 18:08:34 +10:30
Geoffrey D. Bennett
4a123f5df6
Simplify GtkDial calculations
2024-02-08 18:07:44 +10:30
Geoffrey D. Bennett
bd8f812e01
Fix widget-combo to check if the alsa elem is writable
2024-02-05 20:04:58 +10:30
Geoffrey D. Bennett
6923a3ddb0
Don't round level meter values passed to GtkDial
2024-02-05 20:04:58 +10:30
Geoffrey D. Bennett
20c4ff5559
Display -inf when volume/gain controls are at zero/off
2024-02-05 20:04:58 +10:30
Geoffrey D. Bennett
770ce1cc23
Add bindings for pgup/pgdn/home/end to GtkDial
2024-02-05 20:04:58 +10:30
Geoffrey D. Bennett
1ebd6de6a1
Add missing GtkDial scroll_begin() implementation
2024-02-05 20:04:58 +10:30
Geoffrey D. Bennett
047fb72394
Add 4th Gen 4i4 headphone volume knob control
2024-02-05 20:04:58 +10:30
Geoffrey D. Bennett
b35fa3cf50
Add input select widget for 4th Gen 2i2 and 4i4
2024-02-05 20:04:58 +10:30
Geoffrey D. Bennett
47034d7901
Remove widgets from struct alsa_elem and add data to callbacks
...
Rather than having widget/widget2/widget_callback fields in the struct
alsa_elem, have a list of callbacks and allow private data to be
passed to callbacks.
2024-02-05 20:04:58 +10:30
Geoffrey D. Bennett
d56a1d34ff
Add 4th Gen input controls
2024-02-05 20:04:58 +10:30
Geoffrey D. Bennett
63068ed9c7
Explicitly order main window controls
...
Rather than looping through the ALSA controls and creating them in
that order, create them in a specific order.
2024-02-05 20:04:56 +10:30
Geoffrey D. Bennett
2eb8e0b7cb
Make boolean widget boolify value from alsa_get_elem_value()
...
Make sure the value is 0/1 as it's used as an index into
elem->bool_text[].
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
0347d25fc9
Center-align text in combo boxes
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
9a365000ad
Combine gain and volume widgets
...
Remove volume widget and make the gain widget choose the appropriate
format string.
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
be458afcc4
Remove hard-coded values from widget-gain.c and widget-volume.c
...
Update alsa-sim.c and alsa.c to read the TLV info, and update the gain
and volume widgets to use that info rather than hard-coding the
min/max values.
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
197f469bd8
Allow for phantom power per-channel
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
658f946202
Add support for routing the Gen 4 DSP I/O
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
dfa40c79b0
Add margin to socket widget
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
93f7a32ea5
Fix Presets button to be centered
...
The Presets button was filling the available space. It looks better
using GTK_ALIGN_CENTER instead.
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
656eb06159
Inline routing_grid_label() in create_routing_group_grid()
...
As create_routing_grid() and routing_grid_label() are called 1:1 now,
the code from routing_grid_label() can be moved inside
create_routing_group_id() if we add descr and align parameters.
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
e66a3ac883
Add orientation parameter to routing_grid_label()
...
By adding an orientation parameter, then routing_grid_label() can be
used for the Mixer I/O group labels as well.
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
aba34f0648
Remove repeated group by code in create_routing_grid()
...
Create create_routing_group_grid() to remove repeated code from
create_routing_grid().
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
9890b4939b
Make the Level Meter check compatible with alsa-sim.c
...
Rather than retrieving the firmware version in alsa_scan_cards(), use
get_elem_by_name() to check if the control is present.
Update alsa-sim.c alsa_config_to_new_elem() to read iface=CARD
controls.
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
5b9ff7d457
Remove lots of casts in create_routing_grid()
...
By storing routing_grid in a GtkGrid *, lots of GTK_GRID() casts can
be removed.
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
22fdbaad41
Fix is_elem_routing_snk() for Gen 4
...
The search for routing sink ALSA elements should only include PCM,
Mixer, and DSP Capture Enums. The previous search for Capture Enum
excluding Line In Level Capture Enums is too broad for Gen 4 as the
Air control is a Capture Enum as well.
2024-02-05 20:03:10 +10:30
Geoffrey D. Bennett
80cd0ebc4d
Remove gtk_widget_add_class()
...
Should use gtk_widget_add_css_class() instead.
2024-02-05 20:03:10 +10:30
Nate Gallaher
b525d8dc23
Clarify pad tooltip to specify attenuation amount
2024-02-02 19:19:22 +10:30
Geoffrey D. Bennett
0c3bc30439
Fix dial to display focus indication
...
Partial cherry-pick from 5dc3ab Sebastian Kaminski
"dial ... shows focus indication".
Use has_focus() rather than has_visible_focus() as I found
has_visible_focus() to be unreliable.
2023-12-15 03:17:04 +10:30
Geoffrey D. Bennett
945ccc874d
Fix dial to grab focus when clicked
...
Partial cherry-pick from 5dc3ab Sebastian Kaminski
"dial grabs focus when being clicked".
2023-12-15 03:14:23 +10:30
Geoffrey D. Bennett
fef139be64
Split calc_valp() into calc_valp() and calc_valp_log()
...
gtk_dial_drag_gesture_begin() needs a linear calc_valp().
2023-12-15 02:55:42 +10:30
Geoffrey D. Bennett
e506edc965
Remove keyboard accelerator mention from USAGE.md
...
Implemented in 21f0d9d .
2023-12-15 02:51:00 +10:30
Geoffrey D. Bennett
f10a383e36
Reformat keyboard accelerators to match existing code
...
Terminate menus[] with empty-initialised as well.
2023-12-15 02:44:37 +10:30
Trent
21f0d9dd05
Add keyboard accelerators (aka shortcuts, hotkeys) for menu items.
2023-12-12 14:25:25 -07:00
Jason A. Donenfeld
d81f9ca2bb
gtkdial: use fabs() for double
...
Passing a double to abs() truncates it to an integer, which is probably
not intended, and also causes fatal errors on clang.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com >
2023-12-05 12:29:49 +10:30
Geoffrey D. Bennett
3a3860f617
Move FUNDING.yml to the right spot
2023-12-04 12:45:30 +10:30
Geoffrey D. Bennett
e7eea495ff
Fix typo in INSTALL.md: comitting -> committing
2023-12-03 22:13:44 +10:30
Geoffrey D. Bennett
7b3c662dcb
Add OpenSUSE package requirements
2023-12-03 22:07:19 +10:30
Geoffrey D. Bennett
6812c001de
Fix long lines
2023-12-02 04:15:55 +10:30
Geoffrey D. Bennett
266b90e8ce
Update FAQ with more MSD info
2023-12-02 03:51:53 +10:30
Geoffrey D. Bennett
21cc6d6021
Allow the mixer window to be resized and give it scrollbars
2023-12-02 03:06:53 +10:30
Geoffrey D. Bennett
ce40aa1ba9
Add link from USAGE.md to INTERFACES.md
2023-12-02 02:55:15 +10:30