aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am16
-rw-r--r--src/data.c16
-rw-r--r--src/data.h16
-rw-r--r--src/eom-detail-window.c16
-rw-r--r--src/eom-detail-window.h16
-rw-r--r--src/eom-main-window.c16
-rw-r--r--src/eom-main-window.h16
-rw-r--r--src/eom-new-item-dialog.c16
-rw-r--r--src/eom-new-item-dialog.h16
-rw-r--r--src/eom.c16
-rw-r--r--src/eom.h16
-rw-r--r--src/interface.c16
-rw-r--r--src/interface.h16
13 files changed, 208 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 4fdcd55..b302ca3 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,3 +1,19 @@
+## Eye on Manga - Manga collection software for Maemo 5
+# Copyright (C) 2010-2013 Tom Willemse
+
+# Eye on Manga 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 3 of the License, or
+# (at your option) any later version.
+
+# Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+
bin_PROGRAMS = eye-on-manga
eye_on_manga_SOURCES = \
diff --git a/src/data.c b/src/data.c
index 970ae1a..b183e29 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1,3 +1,19 @@
+/* Eye on Manga - Manga collection software for Maemo 5
+ Copyright (C) 2010-2013 Tom Willemse
+
+ Eye on Manga 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 3 of the
+ License, or (at your option) any later version.
+
+ Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+*/
#include "data.h"
#include <errno.h>
diff --git a/src/data.h b/src/data.h
index b48b09f..035f14f 100644
--- a/src/data.h
+++ b/src/data.h
@@ -1,3 +1,19 @@
+/* Eye on Manga - Manga collection software for Maemo 5
+ Copyright (C) 2010-2013 Tom Willemse
+
+ Eye on Manga 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 3 of the
+ License, or (at your option) any later version.
+
+ Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+*/
#ifndef __DATA_H__
#define __DATA_H__
diff --git a/src/eom-detail-window.c b/src/eom-detail-window.c
index edd8954..f676b18 100644
--- a/src/eom-detail-window.c
+++ b/src/eom-detail-window.c
@@ -1,3 +1,19 @@
+/* Eye on Manga - Manga collection software for Maemo 5
+ Copyright (C) 2010-2013 Tom Willemse
+
+ Eye on Manga 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 3 of the
+ License, or (at your option) any later version.
+
+ Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+*/
#include "eom-detail-window.h"
#include <hildon/hildon.h>
diff --git a/src/eom-detail-window.h b/src/eom-detail-window.h
index 89746f3..9e1357a 100644
--- a/src/eom-detail-window.h
+++ b/src/eom-detail-window.h
@@ -1,3 +1,19 @@
+/* Eye on Manga - Manga collection software for Maemo 5
+ Copyright (C) 2010-2013 Tom Willemse
+
+ Eye on Manga 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 3 of the
+ License, or (at your option) any later version.
+
+ Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+*/
#ifndef __EOM_DETAIL_WINDOW_H__
#define __EOM_DETAIL_WINDOW_H__
diff --git a/src/eom-main-window.c b/src/eom-main-window.c
index 9dd2a5c..fb352b7 100644
--- a/src/eom-main-window.c
+++ b/src/eom-main-window.c
@@ -1,3 +1,19 @@
+/* Eye on Manga - Manga collection software for Maemo 5
+ Copyright (C) 2010-2013 Tom Willemse
+
+ Eye on Manga 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 3 of the
+ License, or (at your option) any later version.
+
+ Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+*/
#include "eom-main-window.h"
#include <string.h>
diff --git a/src/eom-main-window.h b/src/eom-main-window.h
index fb3524f..8ebf054 100644
--- a/src/eom-main-window.h
+++ b/src/eom-main-window.h
@@ -1,3 +1,19 @@
+/* Eye on Manga - Manga collection software for Maemo 5
+ Copyright (C) 2010-2013 Tom Willemse
+
+ Eye on Manga 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 3 of the
+ License, or (at your option) any later version.
+
+ Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+*/
#ifndef __EOM_MAIN_WINDOW_H__
#define __EOM_MAIN_WINDOW_H__
diff --git a/src/eom-new-item-dialog.c b/src/eom-new-item-dialog.c
index 95e74a0..171bffa 100644
--- a/src/eom-new-item-dialog.c
+++ b/src/eom-new-item-dialog.c
@@ -1,3 +1,19 @@
+/* Eye on Manga - Manga collection software for Maemo 5
+ Copyright (C) 2010-2013 Tom Willemse
+
+ Eye on Manga 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 3 of the
+ License, or (at your option) any later version.
+
+ Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+*/
#include "eom-new-item-dialog.h"
#include <gtk/gtk.h>
diff --git a/src/eom-new-item-dialog.h b/src/eom-new-item-dialog.h
index 97528a0..caa0965 100644
--- a/src/eom-new-item-dialog.h
+++ b/src/eom-new-item-dialog.h
@@ -1,3 +1,19 @@
+/* Eye on Manga - Manga collection software for Maemo 5
+ Copyright (C) 2010-2013 Tom Willemse
+
+ Eye on Manga 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 3 of the
+ License, or (at your option) any later version.
+
+ Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+*/
#ifndef __EOM_NEW_ITEM_DIALOG_H__
#define __EOM_NEW_ITEM_DIALOG_H__
diff --git a/src/eom.c b/src/eom.c
index e4d8cf3..4df4ecf 100644
--- a/src/eom.c
+++ b/src/eom.c
@@ -1,3 +1,19 @@
+/* Eye on Manga - Manga collection software for Maemo 5
+ Copyright (C) 2010-2013 Tom Willemse
+
+ Eye on Manga 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 3 of the
+ License, or (at your option) any later version.
+
+ Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+*/
#include <hildon/hildon.h>
#include <stdlib.h>
diff --git a/src/eom.h b/src/eom.h
index 5d0b8ed..c1de99f 100644
--- a/src/eom.h
+++ b/src/eom.h
@@ -1,3 +1,19 @@
+/* Eye on Manga - Manga collection software for Maemo 5
+ Copyright (C) 2010-2013 Tom Willemse
+
+ Eye on Manga 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 3 of the
+ License, or (at your option) any later version.
+
+ Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+*/
#ifndef __EOM_H__
#define __EOM_H__
diff --git a/src/interface.c b/src/interface.c
index 4483c07..0f9fad7 100644
--- a/src/interface.c
+++ b/src/interface.c
@@ -1,3 +1,19 @@
+/* Eye on Manga - Manga collection software for Maemo 5
+ Copyright (C) 2010-2013 Tom Willemse
+
+ Eye on Manga 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 3 of the
+ License, or (at your option) any later version.
+
+ Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+*/
#include <hildon/hildon.h>
#include "interface.h"
#include "eom-main-window.h"
diff --git a/src/interface.h b/src/interface.h
index a49519d..1ec5faa 100644
--- a/src/interface.h
+++ b/src/interface.h
@@ -1,3 +1,19 @@
+/* Eye on Manga - Manga collection software for Maemo 5
+ Copyright (C) 2010-2013 Tom Willemse
+
+ Eye on Manga 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 3 of the
+ License, or (at your option) any later version.
+
+ Eye on Manga 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 Eye on Manga. If not, see <http://www.gnu.org/licenses/>.
+*/
#include <gtk/gtkwindow.h>
void interface_show_main_window(void);