/* * panel-applets-manager.h * * Copyright (C) 2010 Carlos Garcia Campos * Copyright (C) 2010 Vincent Untz * Copyright (C) 2012-2021 MATE Developers * * This program 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 2 of the * License, or (at your option) any later version. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301, USA. */ #ifndef __PANEL_APPLETS_MANAGER_H__ #define __PANEL_APPLETS_MANAGER_H__ #include #include "panel-applet-frame.h" #include "panel-applet-info.h" G_BEGIN_DECLS #define PANEL_TYPE_APPLETS_MANAGER mate_panel_applets_manager_get_type () G_DECLARE_DERIVABLE_TYPE (MatePanelAppletsManager, mate_panel_applets_manager, MATE_PANEL, APPLETS_MANAGER, GObject) /** * MATE_PANEL_APPLETS_MANAGER_EXTENSION_POINT_NAME: * * Extension point for #MatePanelAppletsManager functionality. **/ #define MATE_PANEL_APPLETS_MANAGER_EXTENSION_POINT_NAME "mate-panel-applets-manager" struct _MatePanelAppletsManagerClass { GObjectClass parent_class; GList * (*get_applets) (MatePanelAppletsManager *manager); gboolean (*factory_activate) (MatePanelAppletsManager *manager, const gchar *iid); gboolean (*factory_deactivate) (MatePanelAppletsManager *manager, const gchar *iid); MatePanelAppletInfo * (*get_applet_info) (MatePanelAppletsManager *manager, const gchar *iid); MatePanelAppletInfo * (*get_applet_info_from_old_id) (MatePanelAppletsManager *manager, const gchar *iid); gboolean (*load_applet) (MatePanelAppletsManager *manager, const gchar *iid, MatePanelAppletFrameActivating *frame_act); GtkWidget * (*get_applet_widget) (MatePanelAppletsManager *manager, const gchar *iid, guint uid); }; GList *mate_panel_applets_manager_get_applets (void); gboolean mate_panel_applets_manager_factory_activate (const gchar *iid); void mate_panel_applets_manager_factory_deactivate (const gchar *iid); MatePanelAppletInfo *mate_panel_applets_manager_get_applet_info (const gchar *iid); MatePanelAppletInfo *mate_panel_applets_manager_get_applet_info_from_old_id (const gchar *iid); gboolean mate_panel_applets_manager_load_applet (const gchar *iid, MatePanelAppletFrameActivating *frame_act); GtkWidget *mate_panel_applets_manager_get_applet_widget (const gchar *iid, guint uid); G_END_DECLS #endif /* __PANEL_APPLETS_MANAGER_H__ */