aboutsummaryrefslogtreecommitdiffstats
path: root/src/jalv_gtk.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-09-27 19:11:03 +0200
committerDavid Robillard <d@drobilla.net>2020-09-27 19:11:03 +0200
commitca7b3e1eb6693cc82668393486b2d25c558ab5c4 (patch)
tree7612360506ad4f89e4cdd7d61941af08e7523675 /src/jalv_gtk.c
parentc64c1ffa7b0deadcb34760ceaa21fc74c5fd43de (diff)
downloadjalv-ca7b3e1eb6693cc82668393486b2d25c558ab5c4.tar.gz
jalv-ca7b3e1eb6693cc82668393486b2d25c558ab5c4.tar.bz2
jalv-ca7b3e1eb6693cc82668393486b2d25c558ab5c4.zip
Clean up includes
Diffstat (limited to 'src/jalv_gtk.c')
-rw-r--r--src/jalv_gtk.c22
1 files changed, 20 insertions, 2 deletions
diff --git a/src/jalv_gtk.c b/src/jalv_gtk.c
index 375ea76..7e456e7 100644
--- a/src/jalv_gtk.c
+++ b/src/jalv_gtk.c
@@ -16,15 +16,33 @@
#include "jalv_internal.h"
+#include "lilv/lilv.h"
+#include "lv2/atom/atom.h"
+#include "lv2/atom/forge.h"
+#include "lv2/atom/util.h"
#include "lv2/core/attributes.h"
-#include "lv2/patch/patch.h"
-#include "lv2/port-props/port-props.h"
+#include "lv2/core/lv2.h"
+#include "lv2/ui/ui.h"
+#include "lv2/urid/urid.h"
+#include "suil/suil.h"
+#include "zix/common.h"
+#include "zix/sem.h"
LV2_DISABLE_DEPRECATION_WARNINGS
+#include <gdk/gdk.h>
+#include <glib-object.h>
+#include <glib.h>
+#include <gobject/gclosure.h>
#include <gtk/gtk.h>
+#include <float.h>
#include <math.h>
+#include <stdbool.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
static GtkCheckMenuItem* active_preset_item = NULL;
static bool updating = false;