summaryrefslogtreecommitdiff
path: root/src/gui/core
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2024-11-02 22:03:25 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2024-11-02 22:03:25 (GMT)
commit1bef27ee10a820ceabdcfc6389e61b7fab934eea (patch)
tree2194de32593137d3bfda7256c1e65cb1743e70db /src/gui/core
parent699e2811a9305f871fe9adcb4797461e947cc863 (diff)
Load UI plugins only in case of graphical support.
Diffstat (limited to 'src/gui/core')
-rw-r--r--src/gui/core/Makefile.am1
-rw-r--r--src/gui/core/core.c1
-rw-r--r--src/gui/core/nox.c48
-rw-r--r--src/gui/core/nox.h37
4 files changed, 87 insertions, 0 deletions
diff --git a/src/gui/core/Makefile.am b/src/gui/core/Makefile.am
index 3c4cbc7..a854977 100644
--- a/src/gui/core/Makefile.am
+++ b/src/gui/core/Makefile.am
@@ -24,6 +24,7 @@ libguicore_la_CFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
libguicore4_la_SOURCES = \
core.h core.c \
logs.h logs.c \
+ nox.h nox.c \
panels.h panels.c
libguicore4_la_CFLAGS = $(LIBGTK_CFLAGS) $(LIBXML_CFLAGS)
diff --git a/src/gui/core/core.c b/src/gui/core/core.c
index d02d54c..4a6809c 100644
--- a/src/gui/core/core.c
+++ b/src/gui/core/core.c
@@ -33,6 +33,7 @@
static AvailableGuiComponent __loaded = AGC_NONE;
+
/******************************************************************************
* *
* Paramètres : flags = liste d'éléments à charger. *
diff --git a/src/gui/core/nox.c b/src/gui/core/nox.c
new file mode 100644
index 0000000..7f3ae1f
--- /dev/null
+++ b/src/gui/core/nox.c
@@ -0,0 +1,48 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * nox.c - indication de présence ou d'absence de support graphique
+ *
+ * Copyright (C) 2024 Cyrille Bagard
+ *
+ * This file is part of Chrysalide.
+ *
+ * Chrysalide 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.
+ *
+ * Chrysalide 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 Chrysalide. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#include "nox.h"
+
+
+
+/******************************************************************************
+* *
+* Paramètres : - *
+* *
+* Description : Indique la présence ou l'absence d'un affichage graphique. *
+* *
+* Retour : Statut à transmettre. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+bool _run_in_nox_mode(void)
+{
+ bool result; /* Statut à retournr */
+
+ result = false;
+
+ return result;
+
+}
diff --git a/src/gui/core/nox.h b/src/gui/core/nox.h
new file mode 100644
index 0000000..e03b365
--- /dev/null
+++ b/src/gui/core/nox.h
@@ -0,0 +1,37 @@
+
+/* Chrysalide - Outil d'analyse de fichiers binaires
+ * nox.h - prototypes pour l'indication de présence ou d'absence de support graphique
+ *
+ * Copyright (C) 2024 Cyrille Bagard
+ *
+ * This file is part of Chrysalide.
+ *
+ * Chrysalide 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.
+ *
+ * Chrysalide 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 Chrysalide. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef _GUI_CORE_NOX_H
+#define _GUI_CORE_NOX_H
+
+
+#include <stdbool.h>
+
+
+
+/* Indique la présence ou l'absence d'un affichage graphique. */
+bool _run_in_nox_mode(void);
+
+
+
+#endif /* _GUI_CORE_NOX_H */