aboutsummaryrefslogtreecommitdiff
path: root/liblogdiag/liblogdiag.h
blob: d39fb19ca804f18630b7ba7892d2377cf0d6c4f2 (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
/*
 * liblogdiag.h
 *
 * This file is a part of logdiag.
 * Copyright Přemysl Janouch 2011, 2012
 *
 * See the file LICENSE for licensing information.
 *
 */

#ifndef __LIBLOGDIAG_H__
#define __LIBLOGDIAG_H__

/* Whatever, I don't care, someone should at least appreciate my effort of
 * porting it to GTK+ 3 in the first place.  You make me work for free!
 */
#ifdef GDK_VERSION_3_8
#define GDK_VERSION_MIN_REQUIRED GDK_VERSION_3_8
#else  // ! GDK_VERSION_3_8
#define GDK_VERSION_MIN_REQUIRED GDK_VERSION_3_4
#endif  // ! GDK_VERSION_3_8

#include <gtk/gtk.h>
#include <json-glib/json-glib.h>

#include "ld-marshal.h"
#include "ld-types.h"

#include "ld-symbol.h"
#include "ld-category.h"
#include "ld-library.h"

#include "ld-undo-action.h"
#include "ld-diagram-object.h"
#include "ld-diagram-symbol.h"
#include "ld-diagram-connection.h"
#include "ld-diagram.h"

#include "ld-diagram-view.h"
#include "ld-category-view.h"
#include "ld-category-symbol-view.h"
#include "ld-category-tree-view.h"

#include "ld-lua.h"
#include "ld-lua-symbol.h"

#endif /* ! __LIBLOGDIAG_H__ */