2015-06-11 17:01:52 -04:00
|
|
|
|
using System;
|
2015-06-18 16:08:44 -04:00
|
|
|
|
using System.Collections.Generic;
|
2015-06-08 15:17:34 -04:00
|
|
|
|
|
2015-06-24 14:57:16 -04:00
|
|
|
|
namespace Filtration.ObjectModel
|
2015-06-08 15:17:34 -04:00
|
|
|
|
{
|
2015-06-24 14:57:16 -04:00
|
|
|
|
public class ItemFilterBlockGroup
|
2015-06-08 15:17:34 -04:00
|
|
|
|
{
|
2015-06-18 16:08:44 -04:00
|
|
|
|
private bool _isChecked;
|
2015-06-11 16:01:33 -04:00
|
|
|
|
|
2015-06-14 14:17:39 -04:00
|
|
|
|
public ItemFilterBlockGroup(string groupName, ItemFilterBlockGroup parent, bool advanced = false)
|
2015-06-08 17:29:39 -04:00
|
|
|
|
{
|
|
|
|
|
GroupName = groupName;
|
|
|
|
|
ParentGroup = parent;
|
2015-06-14 14:17:39 -04:00
|
|
|
|
Advanced = advanced;
|
2015-06-18 16:08:44 -04:00
|
|
|
|
ChildGroups = new List<ItemFilterBlockGroup>();
|
2015-06-08 17:29:39 -04:00
|
|
|
|
}
|
2015-06-18 16:08:44 -04:00
|
|
|
|
|
2015-06-11 17:01:52 -04:00
|
|
|
|
public event EventHandler BlockGroupStatusChanged;
|
2015-06-18 16:08:44 -04:00
|
|
|
|
|
2015-12-13 15:17:15 -05:00
|
|
|
|
public string GroupName { get; }
|
|
|
|
|
public ItemFilterBlockGroup ParentGroup { get; }
|
|
|
|
|
public List<ItemFilterBlockGroup> ChildGroups { get; }
|
|
|
|
|
public bool Advanced { get; }
|
2015-06-14 14:17:39 -04:00
|
|
|
|
|
2015-06-18 16:08:44 -04:00
|
|
|
|
public bool IsChecked
|
2015-06-11 16:01:33 -04:00
|
|
|
|
{
|
2015-06-18 16:08:44 -04:00
|
|
|
|
get { return _isChecked; }
|
2015-06-11 16:01:33 -04:00
|
|
|
|
set
|
|
|
|
|
{
|
2015-06-18 16:08:44 -04:00
|
|
|
|
if (value != _isChecked)
|
2015-06-11 16:01:33 -04:00
|
|
|
|
{
|
|
|
|
|
_isChecked = value;
|
2015-06-11 17:01:52 -04:00
|
|
|
|
// Raise an event to let blocks that have this block group assigned that
|
|
|
|
|
// they might need to change their Action due to the block group status changing.
|
2015-12-13 15:17:15 -05:00
|
|
|
|
BlockGroupStatusChanged?.Invoke(null, null);
|
2015-06-11 16:01:33 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-18 16:08:44 -04:00
|
|
|
|
public override string ToString()
|
2015-06-14 14:17:39 -04:00
|
|
|
|
{
|
2015-06-18 16:08:44 -04:00
|
|
|
|
var currentBlockGroup = this;
|
2015-06-14 14:17:39 -04:00
|
|
|
|
|
2015-06-24 18:04:54 -04:00
|
|
|
|
var outputString = (Advanced ? "~" : string.Empty) + GroupName;
|
2015-06-14 14:17:39 -04:00
|
|
|
|
|
2015-06-18 16:08:44 -04:00
|
|
|
|
// TODO: This is retarded, fix this.
|
|
|
|
|
if (currentBlockGroup.ParentGroup != null)
|
2015-06-14 14:17:39 -04:00
|
|
|
|
{
|
2015-06-18 16:08:44 -04:00
|
|
|
|
while (currentBlockGroup.ParentGroup.ParentGroup != null)
|
|
|
|
|
{
|
2015-06-24 18:04:54 -04:00
|
|
|
|
outputString = (currentBlockGroup.ParentGroup.Advanced ? "~" : string.Empty) + currentBlockGroup.ParentGroup.GroupName + " - " + outputString;
|
2015-06-18 16:08:44 -04:00
|
|
|
|
currentBlockGroup = currentBlockGroup.ParentGroup;
|
|
|
|
|
}
|
2015-06-14 14:17:39 -04:00
|
|
|
|
}
|
|
|
|
|
|
2015-06-18 16:08:44 -04:00
|
|
|
|
return outputString;
|
2015-06-11 16:01:33 -04:00
|
|
|
|
}
|
2015-06-08 15:17:34 -04:00
|
|
|
|
}
|
|
|
|
|
}
|