Mercurial > projects > pk-update-icon
view main.c @ 15:c7eac2574c76
add clobber target
author | Guido Berhoerster <guido@berhoerster.name> |
---|---|
date | Thu, 20 Oct 2011 09:06:52 +0200 |
parents | 64f05992d8ec |
children | 7af115023d5a |
line wrap: on
line source
/* * Copyright (C) 2011 Guido Berhoerster <gber@opensuse.org> * * Licensed under the GNU General Public License Version 2 * * 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 Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include <locale.h> #include <glib/gi18n.h> #include <gtk/gtk.h> #include <unique/unique.h> #include <libnotify/notify.h> #include "pkui-icon.h" int main(int argc, char **argv) { PkuiIcon *icon; UniqueApp *app; int exitval = 0; setlocale(LC_ALL, ""); bindtextdomain(PACKAGE, LOCALEDIR); bind_textdomain_codeset(PACKAGE, "UTF-8"); textdomain(PACKAGE); gtk_init(&argc, &argv); app = unique_app_new(APP_NAME, NULL); if (unique_app_is_running(app)) { g_printerr("Another instance of pk-update-icon is already " "running. Exiting.\n"); exitval = 1; goto out; } notify_init(PACKAGE); icon = pkui_icon_new(10, 2 * 3600); gtk_main(); g_object_unref(icon); out: g_object_unref(app); if (notify_is_initted()) notify_uninit (); return (exitval); }