aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/test-color.c
blob: c61dc268896916aafb7e1b9b4abd605d8cbf0fa3 (plain) (blame)
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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* 
 * test-color.c
 * Copyright 2000, 2001, Ximian, Inc.
 *
 * Authors:
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License, version 2, as published by the Free Software Foundation.
 *
 * This library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 */

#include <gnome.h>
#include "widget-color-combo.h"
#include "color-palette.h"
#include "e-colors.h"
#include "pixmaps/cursor_hand_open.xpm"

/* To compile (from src/widgets):

gcc -I..  -I../.. -L. -Wall -o tester tester.c ../color.c `gnome-config --cflags --libs gnome gnomeui` -lwidgets

*/

gint
main ( gint argc, gchar* argv[] )
{
    GtkWidget * dialog;
    GtkWidget * T;
    ColorGroup *cg;

    gnome_init ("tester", "1.0", argc, argv);

    dialog = gnome_dialog_new ("TESTER", GNOME_STOCK_BUTTON_OK,
                   GNOME_STOCK_BUTTON_CANCEL, NULL);
    cg = color_group_fetch ("fore_color_group", dialog);
    T = color_palette_new ("Color Palette", NULL, cg);

    gtk_box_pack_start(GTK_BOX (GNOME_DIALOG (dialog)-> vbox ),
               T, TRUE, TRUE, 5);
    gtk_widget_show_all (T);

    cg = color_group_fetch ("fore_color_group", dialog);
    T = color_combo_new (cursor_hand_open_xpm, _("Automatic"),
                 &e_black, cg);
    gtk_box_pack_start(GTK_BOX (GNOME_DIALOG (dialog)-> vbox ),
               T, TRUE, TRUE, 5);
    gtk_widget_show_all (T);

    cg = color_group_fetch ("back_color_group", dialog);
    T = color_combo_new (cursor_hand_open_xpm, _("Automatic"),
                 &e_black, cg);
    gtk_box_pack_start(GTK_BOX (GNOME_DIALOG (dialog)-> vbox ),
               T, TRUE, TRUE, 5);
    gtk_widget_show_all (T);

    gnome_dialog_run_and_close ( GNOME_DIALOG (dialog) );
    return 0;
}