Archive / / / / / Echo.UI.Preferences.GeneralTab.vala
2008-11-27 23:48:48 UTC
previous next
/* vim: set noexpandtab tabstop=4 shiftwidth=4 nowrap textwidth=100 * * Echo Media Player * Copyright (C) 2008 Shane O'Connell * * [ The original file includes a copyright header in this location describing * the file as being released under the terms of the GNU General Public * License. It has been removed in order to display the file as part of the * archive. ] */ public class Echo.UI.Preferences.GeneralTab : Gtk.HBox, IPreferencesTab { public string name { get { return "General"; } } public string icon { get { return "blah"; } } public GeneralTab() { //var library_list_scoll = new Gtk.ScrolledWindow(); //var library_list = new Gtk.TreeView(); //library_list.set_size_request(160, -1); //this.add(library_list); this.add(new Gtk.Label("test")); } }