public EventHandlerRemoteConnectionInstance(
     RemoteConnectionConfiguration configuration,
     TraceEventDelegate eventDelegate
     )
     : base(configuration)
 {
     EventDelegate = eventDelegate;
 }
 public EventsObserverInstance(
     RemoteConnectionConfiguration configuration,
     TraceEventDelegate eventDelegate
     )
     : base(configuration)
 {
     EventDelegate = eventDelegate;
 }
        //        private void deleteRecordButton_Click(object sender, System.EventArgs e)
        //        {
        //            // TODO: Validate
        //            deleteConnectionRecord(editPropertyGrid.SelectedObject as RemoteConnectionConfiguration);
        //            // TODO: separate Gui thing from here
        //            setGuiFromConfig(_connections);
        //        }
        private void initiateNewRecord()
        {
            if (editingMode == RecordEditingMode.New)
            {
                // TODO: offer record to be added
                DialogResult res =
                    MessageBox.Show
                        (
                        this,
                        "There is a new record to add before you start editing the next one.\r\n" +
                        "If you want to add it select Yes.\r\n " +
                        "If you don't want to add it select No.\r\n" +
                        "If you want to return to the record editing before adding select Cancel.",
                        "Confirm adding new record",
                        MessageBoxButtons.YesNoCancel,
                        MessageBoxIcon.Question,
                        MessageBoxDefaultButton.Button1
                        );

                if (res == DialogResult.Cancel) return;

                if (res == DialogResult.Yes)
                {
                    addConnectionRecord(newConfigItem, false);
                }
            }

            editingMode = RecordEditingMode.New;

            newConfigItem = new RemoteConnectionConfiguration();
            newConfigItem.Name = _connections.GetDefaultConnectionName();

            editPropertyGrid.SelectedObject = newConfigItem;
        }
 private void deleteConnectionRecord(RemoteConnectionConfiguration rcc)
 {
     if (_connections.Contains(rcc))
     {
         rcc.Changed -= rcc_Changed;
         _connections.Remove(rcc);
     }
 }
        private void addConnectionRecord(RemoteConnectionConfiguration rcc, bool init)
        {
            if (!_connections.Contains(rcc) || init)
            {
                var eoi =
                    new EventsObserverInstance
                        (
                        rcc,
                        _eventStub.HandleEvent);
                eoi.Changed += rcc_Changed;
                //rcc.Changed += new EventHandler(rcc_Changed);
                if (!init) _connections.Add(rcc);
                if (!init) ConnectionInstances.Add(eoi);

                // TODO: separate Gui thing from here

                connectionsListView.Items.Add
                    (
                    getListViewItemForRemoteConnectionInstance(eoi)
                    );

                //this.connectionsListView
            }
        }
 public RemoteConnectionInstance(RemoteConnectionConfiguration configuration)
 {
     _configuration = configuration;
     _configuration.Changed += _configuration_Changed;
 }
 /// <summary>
 ///     <para>
 ///       Initializes a new instance of <see cref='Tools..RemoteConnectionConfigurationCollection'/> containing any array of <see cref='Tools..RemoteConnectionConfiguration'/> objects.
 ///    </para>
 /// </summary>
 /// <param name='value'>
 ///       A array of <see cref='Tools..RemoteConnectionConfiguration'/> objects with which to intialize the collection
 /// </param>
 public RemoteConnectionConfigurationCollection(RemoteConnectionConfiguration[] value)
 {
     AddRange(value);
 }
 /// <summary>
 /// <para>Inserts a <see cref='Tools..RemoteConnectionConfiguration'/> into the <see cref='Tools..RemoteConnectionConfigurationCollection'/> at the specified index.</para>
 /// </summary>
 /// <param name='index'>The zero-based index where <paramref name='value'/> should be inserted.</param>
 /// <param name=' value'>The <see cref='Tools..RemoteConnectionConfiguration'/> to insert.</param>
 /// <returns><para>None.</para></returns>
 /// <seealso cref='Tools..RemoteConnectionConfigurationCollection.Add'/>
 public void Insert(int index, RemoteConnectionConfiguration value)
 {
     List.Insert(index, value);
 }
 /// <summary>
 ///    <para> Removes a specific <see cref='Tools..RemoteConnectionConfiguration'/> from the 
 ///    <see cref='Tools..RemoteConnectionConfigurationCollection'/> .</para>
 /// </summary>
 /// <param name='value'>The <see cref='Tools..RemoteConnectionConfiguration'/> to remove from the <see cref='Tools..RemoteConnectionConfigurationCollection'/> .</param>
 /// <returns><para>None.</para></returns>
 /// <exception cref='System.ArgumentException'><paramref name='value'/> is not found in the Collection. </exception>
 public void Remove(RemoteConnectionConfiguration value)
 {
     List.Remove(value);
 }
 /// <summary>
 ///    <para>Returns the index of a <see cref='Tools..RemoteConnectionConfiguration'/> in 
 ///       the <see cref='Tools..RemoteConnectionConfigurationCollection'/> .</para>
 /// </summary>
 /// <param name='value'>The <see cref='Tools..RemoteConnectionConfiguration'/> to locate.</param>
 /// <returns>
 /// <para>The index of the <see cref='Tools..RemoteConnectionConfiguration'/> of <paramref name='value'/> in the 
 /// <see cref='Tools..RemoteConnectionConfigurationCollection'/>, if found; otherwise, -1.</para>
 /// </returns>
 /// <seealso cref='Tools..RemoteConnectionConfigurationCollection.Contains'/>
 public int IndexOf(RemoteConnectionConfiguration value)
 {
     return List.IndexOf(value);
 }
 /// <summary>
 /// <para>Copies the <see cref='Tools..RemoteConnectionConfigurationCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the 
 ///    specified index.</para>
 /// </summary>
 /// <param name='array'><para>The one-dimensional <see cref='System.Array'/> that is the destination of the values copied from <see cref='Tools..RemoteConnectionConfigurationCollection'/> .</para></param>
 /// <param name='index'>The index in <paramref name='array'/> where copying begins.</param>
 /// <returns>
 ///   <para>None.</para>
 /// </returns>
 /// <exception cref='System.ArgumentException'><para><paramref name='array'/> is multidimensional.</para> <para>-or-</para> <para>The number of elements in the <see cref='Tools..RemoteConnectionConfigurationCollection'/> is greater than the available space between <paramref name='arrayIndex'/> and the end of <paramref name='array'/>.</para></exception>
 /// <exception cref='System.ArgumentNullException'><paramref name='array'/> is <see langword='null'/>. </exception>
 /// <exception cref='System.ArgumentOutOfRangeException'><paramref name='arrayIndex'/> is less than <paramref name='array'/>'s lowbound. </exception>
 /// <seealso cref='System.Array'/>
 public void CopyTo(RemoteConnectionConfiguration[] array, int index)
 {
     List.CopyTo(array, index);
 }
 /// <summary>
 /// <para>Gets a value indicating whether the 
 ///    <see cref='Tools..RemoteConnectionConfigurationCollection'/> contains the specified <see cref='Tools..RemoteConnectionConfiguration'/>.</para>
 /// </summary>
 /// <param name='value'>The <see cref='Tools..RemoteConnectionConfiguration'/> to locate.</param>
 /// <returns>
 /// <para><see langword='true'/> if the <see cref='Tools..RemoteConnectionConfiguration'/> is contained in the collection; 
 ///   otherwise, <see langword='false'/>.</para>
 /// </returns>
 /// <seealso cref='Tools..RemoteConnectionConfigurationCollection.IndexOf'/>
 public bool Contains(RemoteConnectionConfiguration value)
 {
     return List.Contains(value);
 }
 /// <summary>
 /// <para>Copies the elements of an array to the end of the <see cref='Tools..RemoteConnectionConfigurationCollection'/>.</para>
 /// </summary>
 /// <param name='value'>
 ///    An array of type <see cref='Tools..RemoteConnectionConfiguration'/> containing the objects to add to the collection.
 /// </param>
 /// <returns>
 ///   <para>None.</para>
 /// </returns>
 /// <seealso cref='Tools..RemoteConnectionConfigurationCollection.Add'/>
 public void AddRange(RemoteConnectionConfiguration[] value)
 {
     for (int i = 0; (i < value.Length); i = (i + 1))
     {
         RemoteConnectionConfiguration nv = GetEntry(value[i].Name);
         if (nv != null)
         {
             nv = value[i];
         }
         else
         {
             Add(value[i]);
         }
     }
 }
 /// <summary>
 ///    <para>Adds a <see cref='Tools..RemoteConnectionConfiguration'/> with the specified value to the 
 ///    <see cref='Tools..RemoteConnectionConfigurationCollection'/> .</para>
 /// </summary>
 /// <param name='value'>The <see cref='Tools..RemoteConnectionConfiguration'/> to add.</param>
 /// <returns>
 ///    <para>The index at which the new element was inserted.</para>
 /// </returns>
 /// <seealso cref='Tools..RemoteConnectionConfigurationCollection.AddRange'/>
 public int Add(RemoteConnectionConfiguration value)
 {
     return List.Add(value);
 }