summaryrefslogtreecommitdiffstats
path: root/src/eulogium.c
blob: e97758cf3979b93662884366f305a757caed3c2d (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
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
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include <Eina.h>
#include <Ecore.h>
#include <Ecore_Evas.h>
#include <Ecore_Getopt.h>
#include <Edje.h>
#include <stdlib.h>

#include "gettext.h"

#define COPYRIGHT "Copyright © 2015 Olliver Schinagl <oliver@schinagl.nl> and various contributors (see AUTHORS)."

#define EULOGIUM_THEME "eulogium.edj"

int main(int argc EINA_UNUSED, char **argv EINA_UNUSED)
{
	Eina_Bool quit_option = EINA_FALSE;
	static const Ecore_Getopt optdesc = {
		"eulogium",
		"%prog [options]",
		PACKAGE_VERSION,
		COPYRIGHT,
		"Affero GPLv3",
		"eulogium program",
		0,
		{
			ECORE_GETOPT_LICENSE('L', "license"),
			ECORE_GETOPT_COPYRIGHT('C', "copyright"),
			ECORE_GETOPT_VERSION('V', "version"),
			ECORE_GETOPT_HELP('h', "help"),
			ECORE_GETOPT_SENTINEL
		}
	};
	Ecore_Getopt_Value values[] = {
		ECORE_GETOPT_VALUE_BOOL(quit_option),
		ECORE_GETOPT_VALUE_BOOL(quit_option),
		ECORE_GETOPT_VALUE_BOOL(quit_option),
		ECORE_GETOPT_VALUE_BOOL(quit_option),
		ECORE_GETOPT_VALUE_NONE
	};
	int args;
	Eina_Prefix *prefix;
	Ecore_Evas *ee;
	Evas *canvas;
	Eina_List *engines, *l;
	const char *eulogium_edj = EULOGIUM_THEME;

#if ENABLE_NLS
	setlocale(LC_ALL, "");
	bindtextdomain(PACKAGE, LOCALEDIR);
	bind_textdomain_codeset(PACKAGE, "UTF-8");
	textdomain(PACKAGE);
#endif

	if (!ecore_evas_init())
		return EXIT_FAILURE;
	
	if (!edje_init())
		return EXIT_FAILURE;

	prefix = eina_prefix_new(argv[0], main,
				"EULOGIUM",
				"eulogium",
				eulogium_edj,
				PACKAGE_BIN_DIR,
                	        PACKAGE_LIB_DIR,
        	                PACKAGE_DATA_DIR,
	                        LOCALE_DIR);

	args = ecore_getopt_parse(&optdesc, values, argc, argv);
	if (args < 0)
		EINA_LOG_CRIT("Could not parse arguments.");
	if (args == 1)
		ecore_getopt_help(stderr, &optdesc);

	ecore_evas_shutdown();
	edje_shutdown();

	return 0;
}