1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
/**
* Create a test app for your plugin quickly.
*
* #define NEW csd_media_keys_manager_new
* #define START csd_media_keys_manager_start
* #define MANAGER CsdMediaKeysManager
* #include "csd-media-keys-manager.h"
*
* #include "test-plugin.h"
*/
#include "config.h"
#include <stdlib.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include <libnotify/notify.h>
#ifndef SCHEMA_NAME
#define SCHEMA_NAME PLUGIN_NAME
#endif
#ifndef PLUGIN_NAME
#error Include PLUGIN_CFLAGS in the test application s CFLAGS
#endif /* !PLUGIN_NAME */
static MANAGER *manager = NULL;
static gboolean
has_settings (void)
{
const gchar * const * list;
guint i;
list = g_settings_list_schemas ();
for (i = 0; list[i] != NULL; i++) {
if (g_str_equal (list[i], "org.cinnamon.settings-daemon.plugins." SCHEMA_NAME))
return TRUE;
}
return FALSE;
}
int
main (int argc, char **argv)
{
GError *error;
GSettings *settings;
bindtextdomain (GETTEXT_PACKAGE, CINNAMON_SETTINGS_LOCALEDIR);
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
textdomain (GETTEXT_PACKAGE);
notify_init ("cinnamon-settings-daemon");
g_setenv ("G_MESSAGES_DEBUG", "all", TRUE);
error = NULL;
if (! gtk_init_with_args (&argc, &argv, NULL, NULL, NULL, &error)) {
fprintf (stderr, "%s\n", error->message);
g_error_free (error);
exit (1);
}
if (has_settings () == FALSE) {
fprintf (stderr, "The schemas for plugin '%s' aren't available, check your installation.\n", SCHEMA_NAME);
exit (1);
}
settings = g_settings_new ("org.cinnamon.settings-daemon.plugins." SCHEMA_NAME);
if (g_settings_get_boolean (settings, "active") != FALSE) {
fprintf (stderr, "Plugin '%s' is not disabled. You need to disable it before launching the test application.\n", SCHEMA_NAME);
fprintf (stderr, "To deactivate:\n");
fprintf (stderr, "\tgsettings set org.cinnamon.settings-daemon.plugins." SCHEMA_NAME " active false\n");
fprintf (stderr, "To reactivate:\n");
fprintf (stderr, "\tgsettings set org.cinnamon.settings-daemon.plugins." SCHEMA_NAME " active true\n");
exit (1);
}
manager = NEW ();
error = NULL;
START (manager, &error);
gtk_main ();
STOP (manager);
g_object_unref (manager);
return 0;
}
|