aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.h
blob: 166642735cb4b234a04b47d686c26fa563125e27 (plain)
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
#ifndef __DATA_H__
#define __DATA_H__

#include <gtk/gtk.h>

typedef struct _volume Volume;

struct _volume
{
  int number;
  int read;
};

typedef struct _manga Manga;

struct _manga
{
  int     id;
  int     current_qty;
  int     total_qty;
  char   *name;
  int     vol_count;
  Volume *volumes;
};

GList    *data_get_manga(void);
Manga    *data_get_manga_by_id(gint manga_id);
void      data_get_volumes_for_manga(Manga *manga);
gboolean  data_add_manga(gchar *name, gint total_qty);
gboolean  data_add_to_manga(gint id, gint count);
gboolean  data_add_volume_to_manga(gint manga_id, gint volume);
gboolean  data_mark_volume_read(gint read, gint manga_id, gint volume);
gboolean  data_remove_volume_from_manga(gint manga_id, gint volume);

#endif /* __DATA_H__ */