diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2025-02-20 21:37:10 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2025-02-20 21:37:10 (GMT) |
commit | 0bec2b96a14da29a680aafe54895fd9cfb3bcf09 (patch) | |
tree | ba2dd91ed51cd0fb0eb801439271028fbf1c6f81 /src/gui/panel.h | |
parent | f58a0e1138a3a3b8a4cfa237f1fe75a24ea8e2ba (diff) |
Create a GTK widget to launch panels.
Diffstat (limited to 'src/gui/panel.h')
-rw-r--r-- | src/gui/panel.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/panel.h b/src/gui/panel.h index 03b67d4..b14daa8 100644 --- a/src/gui/panel.h +++ b/src/gui/panel.h @@ -26,11 +26,12 @@ #define _GUI_PANEL_H -#include "../glibext/helpers.h" -#include "../gtkext/panel.h" +#include <gtk/gtk.h> -#include <gtk/gtk.h> +#include "../glibext/helpers.h" +#include "../gtkext/panel.h" +#include "../gtkext/launcher.h" @@ -56,7 +57,7 @@ typedef enum _PanelItemPersonality PanelItemPersonality g_panel_item_get_personality(const GPanelItem *); /* Fournit un composant pour lancer l'activité d'un panneau. */ -GtkWidget *g_panel_item_get_launcher(GPanelItem *); +GtkPanelLauncher *g_panel_item_get_launcher(GPanelItem *); /* Fournit un composant pour paramétrer l'activité d'un panneau. */ GtkWidget *g_panel_item_get_properties(GPanelItem *); |