Click here to Skip to main content
15,896,493 members
Articles / Mobile Apps

Windows Mobile Password Safe

Rate me:
Please Sign up or sign in to vote.
4.87/5 (58 votes)
12 Jan 2009CPOL16 min read 161.7K   3.1K   139  
A password safe with a touch screen UI introducing Fluid Controls.
using System;

using System.Collections.Generic;
using System.Text;
using Fluid.Classes;
using Fluid.Controls.Interfaces;
using System.Drawing;

namespace Fluid.Controls
{
    public partial class FluidListBox
    {
        #region Insert/Remove Animations

        /// <summary>
        /// Removes an item visually animated from the list.
        /// </summary>
        /// <param name="index"></param>
        [Obsolete]
        private void RemoveItem(int index)
        {
            if (index == EnsureIndexBounds(index))
            {
                bool selected = SelectedItemIndex == index;
                if (selected)
                {
                    SelectedItemIndex = -1;
                }

                ListBoxAnimation.AnimateModal(index, GetItemHeight(index), 0, Animation.DefaultDuration, changeItemHeightScene);
                if (selected) SelectedItemIndex = index;

                DeleteItem(index);
            }
        }

        /// <summary>
        /// Inserts an item visually to the list
        /// </summary>
        /// <param name="index"></param>
        /// <returns></returns>
        [Obsolete]
        private void InsertItem(int index, object item)
        {
            ListBoxAnimation.AnimateModal(index, 0, GetItemHeight(index), Animation.DefaultDuration, changeItemHeightScene);
        }



        /// <summary>
        /// Gets the height of an item in the list by index.
        /// </summary>
        /// <param name="index">The index of the item.</param>
        /// <returns>The height of this item.</returns>
        public int GetItemHeight(int index)
        {
            int h = itemOffsets[index + 1] - itemOffsets[index];
            return h;
        }

        /// <summary>
        /// Gets the height of an item that is currently not in the list.
        /// </summary>
        /// <param name="item">The item.</param>
        /// <returns>The height of the item.</returns>
        public int GetItemHeight(object item)
        {
            IItemHeight itemHeight = item as IItemHeight;
            if (itemHeight != null) return itemHeight.Height;
            return item is IGroupHeader ? headerHeight : ScaledItemHeight;
        }



        private void DeleteItem(int index)
        {
            int h = GetItemHeight(index);
            lock (itemOffsets)
            {
                items.RemoveAt(index);
                itemOffsets.RemoveAt(index);
                for (int i = index; i < itemOffsets.Count; i++)
                {
                    itemOffsets[i] -= h;
                }
            }
            Invalidate();

        }


        void changeItemHeightScene(object sender, AnimationEventArgs e)
        {
            int index = ((ListBoxAnimation)sender).Index;
            lock (itemOffsets)
            {

                int h0 = itemOffsets[index + 1] - itemOffsets[index];
                int h = e.Value;
                int delta = h - h0;
                for (int i = index + 1; i < itemOffsets.Count; i++)
                {
                    itemOffsets[i] += delta;
                }
            }
            Rectangle bounds = GetItemBounds(index);
            bounds.Height = this.Height - bounds.Top;
            Invalidate(bounds);
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
MCPD
Enterprise Application Developer 3.5
Windows Developer 3.5
.ASP.NET Developer 3.5
.NET 2.0 Windows Developer
.NET 2.0 Web Developer
.NET 2.0 Enterprise Application Developer


MCTS
.NET 3.5 Windows Forms Applications
.NET 3.5 ASP.NET Applications
.NET 3.5, ADO.NET Application Development
.NET 3.5 WCF
.NET 3.5 WPF
.NET 3.5 WF
Microsoft SQL Server 2008, Database Development
.NET 2.0 Windows Applications
.NET 2.0 Web Applications
.NET 2.0 Distributed Applications
SQL Server 2005
Sharepoint Services 3.0 Application Development
Windows Vista Client Configuration

Comments and Discussions