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
|
/*
* vala-panel
* Copyright (C) 2015-2017 Konstantin Pugin <ria.freelander@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 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 Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "runner-app.h"
#include "config.h"
#include "runner.h"
#include "util.h"
#include <locale.h>
struct _ValaPanelRunApplication
{
GtkApplication __parent__;
GtkWindow *run_dialog;
};
G_DEFINE_TYPE(ValaPanelRunApplication, vala_panel_run_application, GTK_TYPE_APPLICATION)
static ValaPanelRunApplication *vala_panel_run_application_new(void)
{
return VALA_PANEL_RUN_APPLICATION(g_object_new(vala_panel_run_application_get_type(),
"application-id",
"org.valapanel.extras.Runner",
"flags",
0,
NULL));
}
static void vala_panel_run_application_activate(GApplication *application)
{
ValaPanelRunApplication *app = VALA_PANEL_RUN_APPLICATION(application);
if (app->run_dialog == NULL)
app->run_dialog = GTK_WINDOW(vala_panel_runner_new(GTK_APPLICATION(app)));
gtk_run(VALA_PANEL_RUNNER(app->run_dialog));
}
static void vala_panel_run_application_finalize(GObject *app)
{
GtkWidget *w = GTK_WIDGET(VALA_PANEL_RUN_APPLICATION(app)->run_dialog);
g_clear_pointer(&w, gtk_widget_destroy);
(*G_OBJECT_CLASS(vala_panel_run_application_parent_class)->finalize)(app);
}
static void vala_panel_run_application_init(G_GNUC_UNUSED ValaPanelRunApplication *self)
{
setlocale(LC_CTYPE, "");
bindtextdomain(GETTEXT_PACKAGE, LOCALE_DIR);
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
textdomain(GETTEXT_PACKAGE);
}
static void vala_panel_run_application_class_init(ValaPanelRunApplicationClass *klass)
{
GApplicationClass *parent = G_APPLICATION_CLASS(klass);
parent->activate = vala_panel_run_application_activate;
GObjectClass *obj_class = G_OBJECT_CLASS(klass);
obj_class->finalize = vala_panel_run_application_finalize;
}
int main(int argc, char *argv[])
{
ValaPanelRunApplication *rd = vala_panel_run_application_new();
return g_application_run(G_APPLICATION(rd), argc, argv);
}
|