aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ControlledObservableCollection.cs
blob: e16393e83c98473a40718bb3644847e22548391a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.MachineStudio.Logging
{
    public class ControlledObservableCollection<T> : ObservableCollection<T>
    {
        public bool DisableNotification { get; set; }

        public ControlledObservableCollection() : base()
        {

        }

        public ControlledObservableCollection(IEnumerable<T> collection) : base(collection)
        {

        }

        protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
        {
            if (!DisableNotification)
            {
                base.OnCollectionChanged(e);
            }
        }

        public void AddRange(IEnumerable<T> collection)
        {
            foreach (var item in collection)
            {
                Add(item);
            }
        }

        public void InsertRange(int index, IEnumerable<T> collection)
        {
            foreach (var item in collection)
            {
                Insert(index, item);
            }
        }
    }
}
size_t len, const uint8_t *data) { return (TryThreadLoadingRequest *) protobuf_c_message_unpack (&try_thread_loading_request__descriptor, allocator, len, data); } void try_thread_loading_request__free_unpacked (TryThreadLoadingRequest *message, ProtobufCAllocator *allocator) { if(!message) return; assert(message->base.descriptor == &try_thread_loading_request__descriptor); protobuf_c_message_free_unpacked ((ProtobufCMessage*)message, allocator); } #define try_thread_loading_request__field_descriptors NULL #define try_thread_loading_request__field_indices_by_name NULL #define try_thread_loading_request__number_ranges NULL const ProtobufCMessageDescriptor try_thread_loading_request__descriptor = { PROTOBUF_C__MESSAGE_DESCRIPTOR_MAGIC, "", "", "", "", sizeof(TryThreadLoadingRequest), 0, try_thread_loading_request__field_descriptors, try_thread_loading_request__field_indices_by_name, 0, try_thread_loading_request__number_ranges, (ProtobufCMessageInit) try_thread_loading_request__init, NULL,NULL,NULL /* reserved[123] */ };