/* * maction.h * Copyright (C) 2022 David García Goñi * * This file is part of Elektroid. * * Elektroid 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. * * Elektroid 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 Elektroid. If not, see . */ #ifndef MACTION_H #define MACTION_H #include #include "backend.h" #include "audio.h" enum maction_type { MACTION_BUTTON, MACTION_SEPARATOR }; struct maction { enum maction_type type; const gchar *name; gboolean sensitive; GCallback callback; }; struct maction_context { GtkWidget *box; gboolean separator; //This does not need to be initialized as it's used internally. }; extern GSList *mactions; extern struct maction_context maction_context; typedef struct maction *(*t_maction_builder) (struct maction_context * context); void maction_menu_clear (struct maction_context *context); void maction_menu_setup (struct maction_context *context); struct maction *maction_separator_builder (struct maction_context *context); #endif