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.
177 lines
4.7 KiB
177 lines
4.7 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) 2025 Caleb, K4PHP
|
|
*
|
|
*/
|
|
|
|
using System.Collections.ObjectModel;
|
|
using System.Windows;
|
|
using System.Windows.Media;
|
|
|
|
namespace dvmconsole
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CallHistoryViewModel
|
|
{
|
|
/*
|
|
** Properties
|
|
*/
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public ObservableCollection<CallEntry> CallHistory { get; set; }
|
|
|
|
/*
|
|
** Methods
|
|
*/
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CallHistoryViewModel"/> class.
|
|
/// </summary>
|
|
public CallHistoryViewModel()
|
|
{
|
|
CallHistory = new ObservableCollection<CallEntry>();
|
|
}
|
|
} // public class CallHistoryViewModel
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CallEntry : DependencyObject
|
|
{
|
|
public static readonly DependencyProperty BackgroundColorProperty =
|
|
DependencyProperty.Register(nameof(BackgroundColor), typeof(Brush), typeof(CallEntry), new PropertyMetadata(Brushes.Transparent));
|
|
|
|
/*
|
|
** Properties
|
|
*/
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Channel { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int SrcId { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int DstId { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public Brush BackgroundColor
|
|
{
|
|
get { return (Brush)GetValue(BackgroundColorProperty); }
|
|
set { SetValue(BackgroundColorProperty, value); }
|
|
}
|
|
} // public class CallEntry : DependencyObject
|
|
|
|
/// <summary>
|
|
/// Interaction logic for CallHistoryWindow.xaml.
|
|
/// </summary>
|
|
public partial class CallHistoryWindow : Window
|
|
{
|
|
/*
|
|
** Properties
|
|
*/
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public CallHistoryViewModel ViewModel { get; set; }
|
|
|
|
/*
|
|
** Methods
|
|
*/
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CallHistoryWindow"/> class.
|
|
/// </summary>
|
|
public CallHistoryWindow()
|
|
{
|
|
InitializeComponent();
|
|
ViewModel = new CallHistoryViewModel();
|
|
DataContext = ViewModel;
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="e"></param>
|
|
protected override void OnClosing(System.ComponentModel.CancelEventArgs e)
|
|
{
|
|
e.Cancel = true;
|
|
this.Hide();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="channel"></param>
|
|
/// <param name="srcId"></param>
|
|
/// <param name="dstId"></param>
|
|
public void AddCall(string channel, int srcId, int dstId)
|
|
{
|
|
Dispatcher.Invoke(() =>
|
|
{
|
|
ViewModel.CallHistory.Insert(0, new CallEntry
|
|
{
|
|
Channel = channel,
|
|
SrcId = srcId,
|
|
DstId = dstId,
|
|
BackgroundColor = Brushes.Transparent
|
|
});
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="channel"></param>
|
|
/// <param name="srcId"></param>
|
|
/// <param name="encrypted"></param>
|
|
public void ChannelKeyed(string channel, int srcId, bool encrypted)
|
|
{
|
|
Dispatcher.Invoke(() =>
|
|
{
|
|
foreach (var entry in ViewModel.CallHistory.Where(c => c.Channel == channel && c.SrcId == srcId))
|
|
{
|
|
if (!encrypted)
|
|
entry.BackgroundColor = Brushes.LightGreen;
|
|
else
|
|
entry.BackgroundColor = Brushes.Orange;
|
|
}
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="channel"></param>
|
|
/// <param name="srcId"></param>
|
|
public void ChannelUnkeyed(string channel, int srcId)
|
|
{
|
|
Dispatcher.Invoke(() =>
|
|
{
|
|
foreach (var entry in ViewModel.CallHistory.Where(c => c.Channel == channel && c.SrcId == srcId))
|
|
{
|
|
entry.BackgroundColor = Brushes.Transparent;
|
|
}
|
|
});
|
|
}
|
|
} // public partial class CallHistoryWindow : Window
|
|
} // namespace dvmconsole
|