onsdag 17 november 2010

Generic ListView

I needed a generic ListView with a typed Tag property for the ListViewItems.
It turned out it wasn't so difficult. Here's the source:



    /// <summary>
/// Typed ListViewItem v1.1 by Carl Ribbegårdh
/// </summary>
/// <typeparam name="T">The type of the Tag object</typeparam>
public class ListViewItem<T> : ListViewItem where T : class
{
public ListViewItem() : base()
{}

public ListViewItem(string text) : base(text)
{}

public ListViewItem(string text, int imageIndex) : base(text, imageIndex)
{}

public ListViewItem(string text, string imageKey) : base(text, imageKey)
{}

public new T Tag
{
get { return base.Tag as T; }
set { base.Tag = value; }
}
}

/// <summary>
/// Typed ListView v1.1 by Carl Ribbegårdh
/// </summary>
/// <typeparam name="T">The type of the Tag object</typeparam>
public class ListView<T> : ListView where T : class
{
public ListView() : base()
{}

public new class ListViewItemCollection : ListView.ListViewItemCollection
{
private ListView m_owner;

public ListViewItemCollection(ListView<T> owner) : base(owner)
{
m_owner = owner;
}


public new ListViewItem<T> this[int index]
{
get
{
return (ListViewItem<T>)base[index];
}
set
{
base[index] = value;
}
}

public new ListViewItem<T> this[string key]
{
get
{
return (ListViewItem<T>)base[key];
}
}

public ListViewItem<T> Add(ListViewItem<T> value)
{
return (ListViewItem<T>)base.Add(value);
}

[Obsolete("Please use the generic Add instead.", true)]
public new ListViewItem Add(ListViewItem value)
{
throw new NotSupportedException("Please use the generic Add instead.");
}

public new ListViewItem<T> Add(string text)
{
return (ListViewItem<T>)base.Add(new ListViewItem<T>(text));
}

public new ListViewItem<T>[] Find(string key, bool searchAllSubItems)
{
List<ListViewItem<T>> result = new List<ListViewItem<T>>();
foreach (var item in base.Find(key, searchAllSubItems))
{
result.Add((ListViewItem<T>)item);
}
return result.ToArray();
}

public new IEnumerator<ListViewItem<T>> GetEnumerator()
{
IEnumerator baseEnumerator = base.GetEnumerator();
while (baseEnumerator.MoveNext())
{
yield return (ListViewItem<T>)baseEnumerator.Current;
}
}

[Obsolete("Please use the generic Insert instead.", true)]
public new ListViewItem<T> Insert(int index, ListViewItem item)
{
throw new NotSupportedException("Please use the generic Insert instead.");
}

public ListViewItem<T> Insert(int index, ListViewItem<T> item)
{
return (ListViewItem<T>)base.Insert(index, item);
}
public new ListViewItem<T> Insert(int index, string text)
{
return (ListViewItem<T>)base.Insert(index, new ListViewItem<T>(text));
}
public new ListViewItem<T> Insert(int index, string text, int imageIndex)
{
return (ListViewItem<T>)base.Insert(index, new ListViewItem<T>(text, imageIndex));
}
public new ListViewItem<T> Insert(int index, string text, string imageKey)
{
return (ListViewItem<T>)base.Insert(index, new ListViewItem<T>(text, imageKey));
}
public new ListViewItem<T> Insert(int index, string key, string text, int imageIndex)
{
ListViewItem<T> item = new ListViewItem<T>(text, imageIndex);
item.Name = key;
return (ListViewItem<T>)base.Insert(index, item);
}
public new ListViewItem<T> Insert(int index, string key, string text, string imageKey)
{
ListViewItem<T> item = new ListViewItem<T>(text, imageKey);
item.Name = key;
return (ListViewItem<T>)base.Insert(index, item);
}
}

public new class SelectedListViewItemCollection : ListView.SelectedListViewItemCollection
{
public SelectedListViewItemCollection(ListView<T> owner) : base(owner)
{}

public new ListViewItem<T> this[int index]
{
get { return base[index] as ListViewItem<T>; }
}

public virtual new ListViewItem<T> this[string key]
{
get { return base[key] as ListViewItem<T>; }
}
}

public new class CheckedListViewItemCollection : ListView.CheckedListViewItemCollection
{
public CheckedListViewItemCollection(ListView<T> owner) : base(owner)
{}

public new ListViewItem<T> this[int index]
{
get { return base[index] as ListViewItem<T>; }
}

public virtual new ListViewItem<T> this[string key]
{
get { return base[key] as ListViewItem<T>; }
}
}

public new ListView<T>.ListViewItemCollection Items
{
get
{
return new ListView<T>.ListViewItemCollection(this);
}
}

public new ListView<T>.SelectedListViewItemCollection SelectedItems
{
get
{
return new ListView<T>.SelectedListViewItemCollection(this);
}
}

public new ListView<T>.CheckedListViewItemCollection CheckedItems
{
get
{
return new ListView<T>.CheckedListViewItemCollection(this);
}
}
}




Let's say it's in BSD license. :)

It could use some more constructors, and a couple more collections implemented. I'll update the source if that happens.

There's no unit tests for it, so I'll be happy for any bug fixes or bug reports.

The code I just used it for works. ;)

/Carl


Here's where it started earlier today:
http://stackoverflow.com/questions/4207279/generic-winforms-listview-with-regards-to-tag

måndag 27 september 2010

www.gtimereport.com - time sheets from gcal

Just recently released a web based tool for creating time sheets, or time reports from the Google Calendar. It's called www.gtimereport.com. With it you can easily export you selected calendar to an Excel spreadsheet. Actually, you can even merge results from multiple calendars, and the result will contain a column specifying which calendar the row is from. You can also optionally have empty rows inserted for days without activity.

The login is done using google authentication, so there's no need to enter any password into the site. If you are not logged in to your google account at the moment, you'll be prompted to enter your credentials by the google page, on googles servers.

Try it out, it's free!

lördag 28 mars 2009

Mounting a floppy from Ubuntu 8.10 Live CD

There are no floppy drivers loaded default in the Ubuntu 8.10 Live CD making it difficult using a floppy. Most documentation assumes you can reboot, however using a live cd, that is a problem when nothing is persisted for the next boot.

Here's a way of mounting a floppy on a "normal" pc.
ubuntu@ubuntu:~#sudo -s
root@ubuntu:~#mkdir /mnt/floppy
root@ubuntu:~#modprobe floppy
root@ubuntu:~#mount /dev/fd0 /mnt/floppy
(use the command "exit" here if you want to revert to ubuntu user instead of root)

Now you can use the floppy, it is mounted on /mnt/floppy.

To unmount it:
ubuntu@ubuntu:~#sudo umount /mnt/floppy
or if you are root, just do:
root@ubuntu:~#umount /mnt/floppy

There is an even easier way using the file browser along with the terminal.
First load the floppy drivers:
ubuntu@ubuntu:~#sudo modprobe floppy
Then locate the floppy in the "Places" listing to the left in the file browser (nautilus). It's often called "1.5 MB Media". Just double click it and it will automatically be mounted.
To unmount, right click and select "Unmount".

That's all folks. :)