You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.8 KiB
67 lines
1.8 KiB
// SPDX-License-Identifier: AGPL-3.0-only
|
|
/**
|
|
* Digital Voice Modem - Desktop Dispatch Console
|
|
* AGPLv3 Open Source. Use is subject to license terms.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* @package DVM / Desktop Dispatch Console
|
|
* @license AGPLv3 License (https://opensource.org/licenses/AGPL-3.0)
|
|
*
|
|
* Copyright (C) 2024 Caleb, K4PHP
|
|
*
|
|
*/
|
|
|
|
using System.Windows;
|
|
|
|
namespace dvmconsole
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for WidgetSelectionWindow.xaml
|
|
/// </summary>
|
|
public partial class WidgetSelectionWindow : Window
|
|
{
|
|
/*
|
|
** Properties
|
|
*/
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public bool ShowSystemStatus { get; private set; } = true;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public bool ShowChannels { get; private set; } = true;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public bool ShowAlertTones { get; private set; } = true;
|
|
|
|
/*
|
|
** Methods
|
|
*/
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="WidgetSelectionWindow"/> class.
|
|
/// </summary>
|
|
public WidgetSelectionWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void ApplyButton_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
ShowSystemStatus = SystemStatusCheckBox.IsChecked ?? false;
|
|
ShowChannels = ChannelCheckBox.IsChecked ?? false;
|
|
ShowAlertTones = AlertToneCheckBox.IsChecked ?? false;
|
|
DialogResult = true;
|
|
Close();
|
|
}
|
|
} // public partial class WidgetSelectionWindow : Window
|
|
} // namespace dvmconsole
|