File: repository.h

package info (click to toggle)
gtkpod 2.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 18,592 kB
  • sloc: ansic: 50,793; xml: 15,433; sh: 11,934; cpp: 7,387; perl: 1,449; makefile: 1,381; lex: 638; awk: 73; python: 35
file content (96 lines) | stat: -rw-r--r-- 3,742 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/* Time-stamp: <2006-05-15 21:59:36 jcs>
|
|  Copyright (C) 2002-2005 Jorg Schuler <jcsjcs at users sourceforge net>
|                                          Paul Richardson <phantom_sf at users.sourceforge.net>
|  Part of the gtkpod project.
|
|  URL: http://www.gtkpod.org/
|  URL: http://gtkpod.sourceforge.net/
|
|  This program is free software; you can redistribute it and/or modify
|  it under the terms of the GNU General Public License as published by
|  the Free Software Foundation; either version 2 of the License, or
|  (at your option) any later version.
|
|  This program is distributed in the hope that it will be useful,
|  but WITHOUT ANY WARRANTY; without even the implied warranty of
|  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
|  GNU General Public License for more details.
|
|  You should have received a copy of the GNU General Public License
|  along with this program; if not, write to the Free Software
|  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|  iTunes and iPod are trademarks of Apple
|
|  This product is not supported/written/published by Apple!
|
|  $Id$
*/

#ifndef __REPOSITORY_H__
#define __REPOSITORY_H__

#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif

#include <gtk/gtk.h>
#include "libgtkpod/itdb.h"
#include "libgtkpod/prefs.h"

struct _RepositoryView {
    GtkBuilder *builder;           /* XML info                             */
    GtkWidget *window; /* pointer to repository window         */
    GtkComboBox *repository_combo_box; /* pointer to repository combo */
    GtkComboBox *playlist_combo_box; /* pointer to playlist combo */
    iTunesDB *itdb; /* currently displayed repository       */
    gint itdb_index; /* index number of itdb                 */
    Playlist *playlist; /* currently displayed playlist         */
    Playlist *next_playlist; /* playlist to display next (or NULL)   */
    TempPrefs *temp_prefs; /* changes made so far                  */
    TempPrefs *extra_prefs; /* changes to non-prefs items (e.g.
     live-update                          */
};

typedef struct _RepositoryView RepositoryView;

struct _CreateRepWindow {
    GtkBuilder *builder; /* XML info                             */
    GtkWidget *window; /* pointer to repository window         */
};

typedef struct _CreateRepWindow CreateRepWindow;

GtkBuilder *init_repository_builder();
GtkWidget *repository_builder_xml_get_widget(GtkBuilder *builder, const gchar *name);

#define GET_WIDGET(x, a) repository_builder_xml_get_widget (x, a)

#define IPOD_MODEL_COMBO "ipod_model_combo"
#define IPOD_MODEL_ENTRY "ipod_model_entry--not-a-glade-name"
#define CRW_IPOD_MODEL_COMBO "crw_ipod_model_combo"
#define CRW_IPOD_MODEL_ENTRY "crw_ipod_model_entry--not-a-glade-name"
#define KEY_BACKUP "filename"

/* Columns for the model_combo tree model */
enum {
    COL_POINTER, COL_STRING
};
void set_cell(GtkCellLayout *cell_layout, GtkCellRenderer *cell, GtkTreeModel *tree_model, GtkTreeIter *iter, gpointer data);

void repository_init_model_number_combo (GtkComboBox *cb);
void repository_combo_populate(GtkComboBox *combo_box);
void playlist_cb_cell_data_func_pix(GtkCellLayout *cell_layout, GtkCellRenderer *cell, GtkTreeModel *model, GtkTreeIter *iter, gpointer data);
void playlist_cb_cell_data_func_text(GtkCellLayout *cell_layout, GtkCellRenderer *cell, GtkTreeModel *model, GtkTreeIter *iter, gpointer data);

void open_repository_editor(iTunesDB *itdb, Playlist *playlist);
void destroy_repository_editor();
void display_create_repository_dialog();

extern const gchar *SELECT_OR_ENTER_YOUR_MODEL;

gboolean repository_ipod_init (iTunesDB *itdb);
void repository_ipod_init_set_model (iTunesDB *itdb, const gchar *old_model);

#endif