/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2007 Novell, Inc. * Copyright (C) 2008 Red Hat, Inc. * * 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 * Lesser 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 __GSM_APP_H__ #define __GSM_APP_H__ #include #include #include "eggdesktopfile.h" #include "gsm-manager.h" #include "gsm-client.h" #ifdef __cplusplus extern "C" { #endif #define GSM_TYPE_APP (gsm_app_get_type ()) #define GSM_APP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GSM_TYPE_APP, GsmApp)) #define GSM_APP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GSM_TYPE_APP, GsmAppClass)) #define GSM_IS_APP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GSM_TYPE_APP)) #define GSM_IS_APP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GSM_TYPE_APP)) #define GSM_APP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GSM_TYPE_APP, GsmAppClass)) typedef struct _GsmApp GsmApp; typedef struct _GsmAppClass GsmAppClass; typedef struct _GsmAppPrivate GsmAppPrivate; struct _GsmApp { GObject parent; GsmAppPrivate *priv; }; struct _GsmAppClass { GObjectClass parent_class; /* signals */ void (*exited) (GsmApp *app); void (*died) (GsmApp *app); void (*registered) (GsmApp *app); /* virtual methods */ gboolean (*impl_start) (GsmApp *app, GError **error); gboolean (*impl_restart) (GsmApp *app, GError **error); gboolean (*impl_stop) (GsmApp *app, GError **error); int (*impl_peek_autostart_delay) (GsmApp *app); gboolean (*impl_provides) (GsmApp *app, const char *service); gboolean (*impl_has_autostart_condition) (GsmApp *app, const char *service); gboolean (*impl_is_running) (GsmApp *app); gboolean (*impl_get_autorestart) (GsmApp *app); const char *(*impl_get_app_id) (GsmApp *app); gboolean (*impl_is_disabled) (GsmApp *app); gboolean (*impl_is_conditionally_disabled) (GsmApp *app); }; typedef enum { GSM_APP_ERROR_GENERAL = 0, GSM_APP_ERROR_START, GSM_APP_ERROR_STOP, GSM_APP_NUM_ERRORS } GsmAppError; #define GSM_APP_ERROR gsm_app_error_quark () GQuark gsm_app_error_quark (void); GType gsm_app_get_type (void) G_GNUC_CONST; gboolean gsm_app_peek_autorestart (GsmApp *app); const char *gsm_app_peek_id (GsmApp *app); const char *gsm_app_peek_app_id (GsmApp *app); const char *gsm_app_peek_startup_id (GsmApp *app); GsmManagerPhase gsm_app_peek_phase (GsmApp *app); gboolean gsm_app_peek_is_disabled (GsmApp *app); gboolean gsm_app_peek_is_conditionally_disabled (GsmApp *app); gboolean gsm_app_start (GsmApp *app, GError **error); gboolean gsm_app_restart (GsmApp *app, GError **error); gboolean gsm_app_stop (GsmApp *app, GError **error); gboolean gsm_app_is_running (GsmApp *app); void gsm_app_exited (GsmApp *app); void gsm_app_died (GsmApp *app); gboolean gsm_app_provides (GsmApp *app, const char *service); gboolean gsm_app_has_autostart_condition (GsmApp *app, const char *condition); void gsm_app_registered (GsmApp *app); int gsm_app_peek_autostart_delay (GsmApp *app); /* exported to bus */ gboolean gsm_app_get_app_id (GsmApp *app, char **id, GError **error); gboolean gsm_app_get_startup_id (GsmApp *app, char **id, GError **error); gboolean gsm_app_get_phase (GsmApp *app, guint *phase, GError **error); #ifdef __cplusplus } #endif #endif /* __GSM_APP_H__ */