コード例 #1
0
        /// <summary>
        /// Update the order from the given list
        /// </summary>
        /// <param name="order"></param>
        public void Update(IEnumerable <Character> order)
        {
            m_items.Clear();
            m_items.AddRange(order);

            // Notify the change
            EveClient.OnMonitoredCharactersChanged();
        }
コード例 #2
0
        /// <summary>
        /// Imports the given characters
        /// </summary>
        /// <param name="characterGuids"></param>
        internal void Import(List <MonitoredCharacterSettings> monitoredCharacters)
        {
            m_items.Clear();
            foreach (var characterSettings in monitoredCharacters)
            {
                var character = EveClient.Characters[characterSettings.CharacterGuid];
                if (character != null)
                {
                    m_items.Add(character);
                    character.Monitored  = true;
                    character.UISettings = characterSettings.Settings;
                }
            }

            EveClient.OnMonitoredCharactersChanged();
        }
コード例 #3
0
        /// <summary>
        /// Moves the given character to the target index.
        /// </summary>
        /// <remarks>
        /// When the item is located before the target index, it is decremented.
        /// That way we ensures the item is actually inserted before the item that originally was at <c>targetindex</c>.
        /// </remarks>
        /// <param name="item"></param>
        /// <param name="targetIndex"></param>
        public void MoveTo(Character item, int targetIndex)
        {
            int oldIndex = m_items.IndexOf(item);

            if (oldIndex == -1)
            {
                throw new InvalidOperationException("The item was not found in the collection.");
            }

            if (oldIndex < targetIndex)
            {
                targetIndex--;
            }
            m_items.RemoveAt(oldIndex);
            m_items.Insert(targetIndex, item);

            EveClient.OnMonitoredCharactersChanged();
        }
コード例 #4
0
 /// <summary>
 /// When the <see cref="Character.IsMonitored"/> property changed, this collection is updated
 /// </summary>
 /// <param name="character">The character for which the property changed</param>
 internal void OnCharacterMonitoringChanged(Character character, bool value)
 {
     if (value)
     {
         if (!m_items.Contains(character))
         {
             m_items.Add(character);
             EveClient.OnMonitoredCharactersChanged();
         }
     }
     else
     {
         if (m_items.Contains(character))
         {
             m_items.Remove(character);
             EveClient.OnMonitoredCharactersChanged();
         }
     }
 }