Desktop

/* $Id: fontsel.c,v 1.6 2010/11/28 18:10:54 khorben Exp $ */
/* Copyright (c) 2010 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS Desktop Accessories */
/* 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, version 3 of the License.
*
* 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, see <http://www.gnu.org/licenses/>. */
#include <unistd.h>
#include <stdio.h>
#include <gtk/gtk.h>
/* Fontsel */
static gboolean _fontsel_on_closex(gpointer data);
static int _fontsel(void)
{
GtkWidget * window;
GtkWidget * fontsel;
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_container_set_border_width(GTK_CONTAINER(window), 4);
gtk_window_set_title(GTK_WINDOW(window), "Font browser");
g_signal_connect_swapped(G_OBJECT(window), "delete-event", G_CALLBACK(
_fontsel_on_closex), window);
fontsel = gtk_font_selection_new();
gtk_container_add(GTK_CONTAINER(window), fontsel);
gtk_widget_show_all(window);
gtk_main();
return 0;
}
static gboolean _fontsel_on_closex(gpointer data)
{
GtkWidget * widget = data;
gtk_widget_hide(widget);
gtk_main_quit();
return FALSE;
}
/* usage */
static int _usage(void)
{
fputs("Usage: fontsel\n", stderr);
return 1;
}
/* main */
int main(int argc, char * argv[])
{
int o;
gtk_init(&argc, &argv);
while((o = getopt(argc, argv, "")) != -1)
switch(o)
{
default:
return _usage();
}
return (_fontsel() == 0) ? 0 : 2;
}