private PropertyPage CreatePropertyPage(PropertyPage page, ConfigSection section) { switch (section) { case ConfigSection.UserInterface: { #if FAMISTUDIO_WINDOWS var scalingValues = new[] { "System", "100%", "150%", "200%" }; #else var scalingValues = new[] { "System", "100%", "200%" }; #endif var idx = Settings.DpiScaling == 0 ? 0 : Array.IndexOf(scalingValues, $"{Settings.DpiScaling}%"); page.AddStringList("Scaling (Requires Restart):", scalingValues, scalingValues[idx]); // 0 page.AddBoolean("Check for updates:", true); // 1 break; } case ConfigSection.Sound: { page.AddIntegerRange("Stop Instruments After (sec):", Settings.InstrumentStopTime, 0, 10); // 0 break; } case ConfigSection.MIDI: { int midiDeviceCount = Midi.InputCount; var midiDevices = new List <string>(); for (int i = 0; i < midiDeviceCount; i++) { midiDevices.Add(Midi.GetDeviceName(i)); } var midiDevice = ""; if (Settings.MidiDevice.Length > 0 && midiDevices.Contains(Settings.MidiDevice)) { midiDevice = Settings.MidiDevice; } else if (midiDevices.Count > 0) { midiDevice = midiDevices[0]; } page.AddStringList("Device :", midiDevices.ToArray(), midiDevice); // 0 break; } } page.Build(); pages[(int)section] = page; return(page); }
private PropertyPage CreatePropertyPage(PropertyPage page, ConfigSection section) { switch (section) { case ConfigSection.General: { page.AddCheckBox("Check for updates:", Settings.CheckUpdates, CheckUpdatesTooltip); // 0 page.AddCheckBox("Show Tutorial at Startup:", Settings.ShowTutorial, ShowTutorialTooltip); // 1 page.AddCheckBox("Trackpad controls:", Settings.TrackPadControls, TrackpadControlsTooltip); // 2 page.AddCheckBox("Clear Undo/Redo on save:", Settings.ClearUndoRedoOnSave, ClearUndoRedoTooltip); // 3 page.AddCheckBox("Open last project on start:", Settings.OpenLastProjectOnStart, OpenLastTooltip); // 4 page.AddCheckBox("Autosave a copy every 2 minutes:", Settings.AutoSaveCopy, AutosaveTooltip); // 5 page.AddButton(null, "Open Autosave folder", AutosaveFolderTooltip); // 6 page.PropertyClicked += PageGeneral_PropertyClicked; page.PropertyChanged += PageGeneral_PropertyChanged; page.SetPropertyVisible(0, PlatformUtils.IsDesktop); page.SetPropertyVisible(2, PlatformUtils.IsDesktop); page.SetPropertyVisible(3, PlatformUtils.IsDesktop); page.SetPropertyVisible(4, PlatformUtils.IsDesktop); page.SetPropertyVisible(5, PlatformUtils.IsDesktop); page.SetPropertyVisible(6, PlatformUtils.IsDesktop); break; } case ConfigSection.UserInterface: { var scalingValues = BuildDpiScalingList(); var scalingIndex = Settings.DpiScaling == 0 ? 0 : Array.IndexOf(scalingValues, $"{Settings.DpiScaling}%"); var timeFormatIndex = Settings.TimeFormat < (int)TimeFormat.Max ? Settings.TimeFormat : 0; var followModeIndex = Settings.FollowMode <= 0 ? 0 : Settings.FollowMode % FollowModeStrings.Length; var followSyncIndex = Settings.FollowSync <= 0 ? 0 : Settings.FollowSync % FollowSyncStrings.Length; page.AddDropDownList("Scaling (Requires restart):", scalingValues, scalingValues[scalingIndex], ScalingTooltip); // 0 page.AddDropDownList("Time Format:", TimeFormatStrings, TimeFormatStrings[timeFormatIndex], TimeFormatTooltip); // 1 page.AddDropDownList("Follow Mode:", FollowModeStrings, FollowModeStrings[followModeIndex], FollowModeTooltip); // 2 page.AddDropDownList("Following Views:", FollowSyncStrings, FollowSyncStrings[followSyncIndex], FollowingViewsTooltip); // 3 page.AddDropDownList("Scroll Bars:", ScrollBarsStrings, ScrollBarsStrings[Settings.ScrollBars], ScrollBarsTooltip); // 4 page.AddCheckBox("Show Piano Roll View Range:", Settings.ShowPianoRollViewRange, ShowPianoRollRangeTooltip); // 5 page.AddCheckBox("Show Note Labels:", Settings.ShowNoteLabels, ShowNoteLabelsTooltip); // 6 page.AddCheckBox("Show FamiTracker Stop Notes:", Settings.ShowImplicitStopNotes, ShowFamitrackerStopNotesTooltip); // 7 page.AddCheckBox("Show Oscilloscope:", Settings.ShowOscilloscope, ShowOscilloscopeTooltip); // 8 page.AddCheckBox("Force Compact Sequencer:", Settings.ForceCompactSequencer, CompactSequencerTooltip); // 9 page.SetPropertyVisible(0, !PlatformUtils.IsMacOS); // No manual DPI selection on MacOS. page.SetPropertyVisible(3, PlatformUtils.IsDesktop); page.SetPropertyVisible(4, PlatformUtils.IsDesktop); page.SetPropertyVisible(8, PlatformUtils.IsDesktop); page.SetPropertyVisible(9, PlatformUtils.IsDesktop); break; } case ConfigSection.Sound: { page.AddNumericUpDown("Number of buffered frames:", Settings.NumBufferedAudioFrames, 2, 16, NumBufferedFramesTooltip); // 0 page.AddNumericUpDown("Stop instruments after (sec):", Settings.InstrumentStopTime, 0, 10, StopInstrumentTooltip); // 1 page.AddCheckBox("Prevent popping on square channels:", Settings.SquareSmoothVibrato, PreventPoppingTooltip); // 2 page.AddCheckBox("Mute drag sounds during playback:", Settings.NoDragSoungWhenPlaying, NoDragSoundTooltip); // 3 page.AddSlider("Metronome volume:", Settings.MetronomeVolume, 1.0, 200.0, 1.0, 0, null, MetronomeVolumeTooltip); // 4 break; } case ConfigSection.Mixer: { page.AddSlider("Global Volume:", Settings.GlobalVolume, -10.0, 3.0, 0.1, 1, "{0:+0.0;-0.0} dB", GlobalVolumeTooltip); // 0 page.AddDropDownList("Expansion:", ExpansionType.Names, ExpansionType.Names[0], ExpansionTooltip); // 1 page.AddSlider("Expansion Volume:", Settings.ExpansionMixerSettings[ExpansionType.None].volume, -10.0, 10.0, 0.1, 1, "{0:+0.0;-0.0} dB", ExpansionVolumeTooltip); // 2 page.AddSlider("Expansion Treble:", Settings.ExpansionMixerSettings[ExpansionType.None].treble, -100.0, 5.0, 0.1, 1, "{0:+0.0;-0.0} dB", ExpansionTrebleTooltip); // 3 page.AddButton(PlatformUtils.IsDesktop ? null : "Reset", "Reset expansion to default", "Resets this expansion to the default settings."); // 4 page.AddLabel(PlatformUtils.IsDesktop ? null : "Note", "Note : These will have no effect on NSF, ROM, FDS and sound engine exports.", true); // 5 page.PropertyChanged += MixerPage_PropertyChanged; page.PropertyClicked += MixerPage_PropertyClicked; break; } case ConfigSection.MIDI: { int midiDeviceCount = Midi.InputCount; var midiDevices = new List <string>(); for (int i = 0; i < midiDeviceCount; i++) { var name = Midi.GetDeviceName(i); if (!string.IsNullOrEmpty(name)) { midiDevices.Add(name); } } var midiDevice = ""; if (!string.IsNullOrEmpty(Settings.MidiDevice) && midiDevices.Contains(Settings.MidiDevice)) { midiDevice = Settings.MidiDevice; } else if (midiDevices.Count > 0) { midiDevice = midiDevices[0]; } page.AddDropDownList("Device :", midiDevices.ToArray(), midiDevice, MidiDeviceTooltip); // 0 break; } case ConfigSection.FFmpeg: page.AddLabel(null, "Video export requires FFmpeg. If you already have it, set the path to the ffmpeg executable by clicking the button below, otherwise follow the download link.", true); // 0 page.AddButton(null, Settings.FFmpegExecutablePath, "Path to FFmpeg executable. On Windows this is ffmpeg.exe. To download and install ffpmeg, check the link below."); // 1 // GTK LinkButtons dont work on MacOS, use a button (https://github.com/quodlibet/quodlibet/issues/2306) if (PlatformUtils.IsMacOS) { page.AddButton(" ", "Download FFmpeg here"); // 2 } else { page.AddLinkLabel(" ", "Download FFmpeg here", "https://famistudio.org/doc/ffmpeg/"); // 3 } page.PropertyClicked += FFmpegPage_PropertyClicked; break; case ConfigSection.QWERTY: { page.AddLabel(null, "Double click in the 2 last columns to assign a key. Right click to clear a key.", true); // 0 page.AddMultiColumnList(new[] { new ColumnDesc("Octave", 0.2f), new ColumnDesc("Note", 0.2f), new ColumnDesc("Key", 0.3f), new ColumnDesc("Key (alt)", 0.3f) }, GetQwertyMappingStrings()); // 1 page.AddButton(null, "Reset to default"); page.PropertyClicked += QwertyPage_PropertyClicked; break; } case ConfigSection.MacOS: { page.AddCheckBox("Reverse trackpad direction:", Settings.ReverseTrackPad); // 0 page.AddNumericUpDown("Trackpad movement sensitivity:", Settings.TrackPadMoveSensitity, 1, 16); // 1 page.AddNumericUpDown("Trackpad zoom sensitivity:", Settings.TrackPadZoomSensitity, 1, 32); // 2 page.SetPropertyEnabled(0, Settings.TrackPadControls); page.SetPropertyEnabled(1, Settings.TrackPadControls); page.SetPropertyEnabled(2, Settings.TrackPadControls); break; } case ConfigSection.Mobile: { page.AddCheckBox("Allow vibration:", Settings.AllowVibration, AllowVibrationTooltip); // 0 page.AddCheckBox("Double-tap to delete:", Settings.DoubleClickDelete, DoubleClickDeleteTooltip); // 1 break; } } page.Build(); pages[(int)section] = page; return(page); }
private PropertyPage CreatePropertyPage(PropertyPage page, ConfigSection section) { switch (section) { case ConfigSection.UserInterface: { #if FAMISTUDIO_WINDOWS var scalingValues = new[] { "System", "100%", "150%", "200%" }; #elif FAMISTUDIO_MACOS var scalingValues = new[] { "System", "100%", "200%" }; #else var scalingValues = new[] { "System" }; #endif var scalingIndex = Settings.DpiScaling == 0 ? 0 : Array.IndexOf(scalingValues, $"{Settings.DpiScaling}%"); var timeFormatIndex = Settings.TimeFormat < (int)TimeFormat.Max ? Settings.TimeFormat : 0; var followModeIndex = Settings.FollowMode <= 0 ? 0 : Settings.FollowMode % FollowModeStrings.Length; var followSyncIndex = Settings.FollowSync <= 0 ? 0 : Settings.FollowSync % FollowSyncStrings.Length; page.AddStringList("Scaling (Requires restart):", scalingValues, scalingValues[scalingIndex]); // 0 page.AddStringList("Time Format:", TimeFormatStrings, TimeFormatStrings[timeFormatIndex]); // 1 page.AddStringList("Follow Mode:", FollowModeStrings, FollowModeStrings[followModeIndex]); // 2 page.AddStringList("Following Views:", FollowSyncStrings, FollowSyncStrings[followSyncIndex]); // 3 page.AddBoolean("Check for updates:", Settings.CheckUpdates); // 4 page.AddBoolean("Show Piano Roll View Range:", Settings.ShowPianoRollViewRange); // 5 page.AddBoolean("Show Note Labels:", Settings.ShowNoteLabels); // 6 page.AddBoolean("Trackpad controls:", Settings.TrackPadControls); // 7 #if FAMISTUDIO_MACOS page.AddBoolean("Reverse trackpad direction:", Settings.ReverseTrackPad); // 8 page.SetPropertyEnabled(8, Settings.TrackPadControls); page.PropertyChanged += Page_PropertyChanged; #endif #if FAMISTUDIO_LINUX page.SetPropertyEnabled(0, false); #endif break; } case ConfigSection.Sound: { page.AddIntegerRange("Stop instruments after (sec):", Settings.InstrumentStopTime, 0, 10); // 0 page.AddBoolean("Prevent popping on square channels:", Settings.SquareSmoothVibrato); // 1 page.AddBoolean("Mute piano roll interactions during playback:", Settings.NoDragSoungWhenPlaying); // 2 break; } case ConfigSection.MIDI: { int midiDeviceCount = Midi.InputCount; var midiDevices = new List <string>(); for (int i = 0; i < midiDeviceCount; i++) { var name = Midi.GetDeviceName(i); if (!string.IsNullOrEmpty(name)) { midiDevices.Add(name); } } var midiDevice = ""; if (!string.IsNullOrEmpty(Settings.MidiDevice) && midiDevices.Contains(Settings.MidiDevice)) { midiDevice = Settings.MidiDevice; } else if (midiDevices.Count > 0) { midiDevice = midiDevices[0]; } page.AddStringList("Device :", midiDevices.ToArray(), midiDevice); // 0 break; } } page.Build(); pages[(int)section] = page; return(page); }
private PropertyPage CreatePropertyPage(PropertyPage page, ConfigSection section) { switch (section) { case ConfigSection.General: { page.AddCheckBox("Check for updates:", Settings.CheckUpdates); // 0 page.AddCheckBox("Trackpad controls:", Settings.TrackPadControls); // 1 #if FAMISTUDIO_MACOS page.PropertyChanged += PageGeneral_PropertyChanged; #endif break; } case ConfigSection.UserInterface: { #if FAMISTUDIO_WINDOWS || FAMISTUDIO_LINUX var scalingValues = new[] { "System", "100%", "150%", "200%" }; #elif FAMISTUDIO_MACOS var scalingValues = new[] { "System", "100%", "200%" }; #endif var scalingIndex = Settings.DpiScaling == 0 ? 0 : Array.IndexOf(scalingValues, $"{Settings.DpiScaling}%"); var timeFormatIndex = Settings.TimeFormat < (int)TimeFormat.Max ? Settings.TimeFormat : 0; var followModeIndex = Settings.FollowMode <= 0 ? 0 : Settings.FollowMode % FollowModeStrings.Length; var followSyncIndex = Settings.FollowSync <= 0 ? 0 : Settings.FollowSync % FollowSyncStrings.Length; page.AddDropDownList("Scaling (Requires restart):", scalingValues, scalingValues[scalingIndex]); // 0 page.AddDropDownList("Time Format:", TimeFormatStrings, TimeFormatStrings[timeFormatIndex]); // 1 page.AddDropDownList("Follow Mode:", FollowModeStrings, FollowModeStrings[followModeIndex]); // 2 page.AddDropDownList("Following Views:", FollowSyncStrings, FollowSyncStrings[followSyncIndex]); // 3 page.AddCheckBox("Show Piano Roll View Range:", Settings.ShowPianoRollViewRange); // 4 page.AddCheckBox("Show Note Labels:", Settings.ShowNoteLabels); // 5 page.AddCheckBox("Show FamiTracker Stop Notes:", Settings.ShowImplicitStopNotes); // 6 page.AddCheckBox("Show Scroll Bars:", Settings.ShowScrollBars); // 7 page.AddCheckBox("Show Oscilloscope:", Settings.ShowOscilloscope); // 8 page.AddCheckBox("Force Compact Sequencer:", Settings.ForceCompactSequencer); // 9 break; } case ConfigSection.Sound: { page.AddIntegerRange("Number of buffered frames:", Settings.NumBufferedAudioFrames, 2, 16); // 0 page.AddIntegerRange("Stop instruments after (sec):", Settings.InstrumentStopTime, 0, 10); // 1 page.AddCheckBox("Prevent popping on square channels:", Settings.SquareSmoothVibrato); // 2 page.AddCheckBox("Mute piano roll interactions during playback:", Settings.NoDragSoungWhenPlaying); // 3 break; } case ConfigSection.Mixer: { // MATTT : Tooltips. page.AddDropDownList("Expansion:", ExpansionType.Names, ExpansionType.Names[0]); // 0 page.AddSlider("Volume:", Settings.ExpansionMixerSettings[ExpansionType.None].volume, -10.0, 10.0, 0.1, 1, FormatDecibels); // 1 page.AddSlider("Treble:", Settings.ExpansionMixerSettings[ExpansionType.None].treble, -100.0, 5.0, 0.1, 1, FormatDecibels); // 2 page.AddButton(null, "Reset to default", ResetMixerClicked, "Resets this expansion to the default settings."); page.AddLabel(null, "Note : These will have no effect on NSF, ROM, FDS and sound engine exports.", true); // 4 // MATTT : Test this in HIDPI. page.PropertyChanged += MixerPage_PropertyChanged; break; } case ConfigSection.MIDI: { int midiDeviceCount = Midi.InputCount; var midiDevices = new List <string>(); for (int i = 0; i < midiDeviceCount; i++) { var name = Midi.GetDeviceName(i); if (!string.IsNullOrEmpty(name)) { midiDevices.Add(name); } } var midiDevice = ""; if (!string.IsNullOrEmpty(Settings.MidiDevice) && midiDevices.Contains(Settings.MidiDevice)) { midiDevice = Settings.MidiDevice; } else if (midiDevices.Count > 0) { midiDevice = midiDevices[0]; } page.AddDropDownList("Device :", midiDevices.ToArray(), midiDevice); // 0 break; } case ConfigSection.QWERTY: { page.AddLabel(null, "Double click in the 2 last columns to assign a key. Right click to clear a key.", true); // 0 page.AddMultiColumnList(new[] { "Octave", "Note", "Key", "Key (alt)" }, GetQwertyMappingStrings(), QwertyListDoubleClicked, QwertyListRightClicked); // 1 page.AddButton(null, "Reset to default", ResetQwertyClicked); break; } #if FAMISTUDIO_MACOS case ConfigSection.MacOS: { page.AddCheckBox("Reverse trackpad direction:", Settings.ReverseTrackPad); // 0 page.AddIntegerRange("Trackpad movement sensitivity:", Settings.TrackPadMoveSensitity, 1, 16); // 1 page.AddIntegerRange("Trackpad zoom sensitivity:", Settings.TrackPadZoomSensitity, 1, 32); // 2 page.SetPropertyEnabled(0, Settings.TrackPadControls); page.SetPropertyEnabled(1, Settings.TrackPadControls); page.SetPropertyEnabled(2, Settings.TrackPadControls); break; } #endif } page.Build(); pages[(int)section] = page; return(page); }