Initial commit
[jamendo] / src / track_listview.h
diff --git a/src/track_listview.h b/src/track_listview.h
new file mode 100644 (file)
index 0000000..8740396
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ * track_listview.h
+ *
+ *  Created on: 2009-10-22
+ *      Author: marcin
+ */
+
+#ifndef TRACK_LISTVIEW_H_
+#define TRACK_LISTVIEW_H_
+
+#include <gtk/gtk.h>
+
+enum {
+       TRACK_LISTVIEW_NAME = 1,
+       TRACK_LISTVIEW_ARTIST = 2
+};
+
+/**
+ * creates tree view with track list
+ */
+GtkWidget* track_listview_create(GList* track_list, gint flags);
+
+/**
+ *
+ */
+GtkTreeModel* track_listview_create_model(GList* track_list, gint flags);
+
+#endif /* TRACK_LISTVIEW_H_ */