File: scim_color_button.h

package info (click to toggle)
scim-chewing 0.3.4-1.2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,416 kB
  • sloc: sh: 10,619; cpp: 2,483; makefile: 77
file content (86 lines) | stat: -rw-r--r-- 2,850 bytes parent folder | download | duplicates (5)
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
/* 
 * Copyright (C) 2005 Hiroyuki Ikezoe <poincare@ikezoe.net>
 *
 * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
/*
 * The original code is gimpfgbgeditor.h in GIMP-2.3.2.
 * Copyright (C) 2004 Michael Natterer <mitch@gimp.org>
 */

#ifndef __SCIM_COLOR_BUTTON_H__
#define __SCIM_COLOR_BUTTON_H__


#include <gtk/gtk.h>
#include <scim.h>

using namespace scim;

#define SCIM_TYPE_COLOR_BUTTON            (scim_color_button_get_type ())
#define SCIM_COLOR_BUTTON(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), SCIM_TYPE_COLOR_BUTTON, ScimChewingColorButton))
#define SCIM_COLOR_BUTTON_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), SCIM_TYPE_COLOR_BUTTON, ScimChewingColorButtonClass))
#define SCIM_IS_COLOR_BUTTON(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SCIM_TYPE_COLOR_BUTTON))
#define SCIM_IS_COLOR_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SCIM_TYPE_COLOR_BUTTON))
#define SCIM_COLOR_BUTTON_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), SCIM_TYPE_COLOR_BUTTON, ScimChewingColorButtonClass))


typedef struct _ScimChewingColorButtonClass ScimChewingColorButtonClass;
typedef struct _ScimChewingColorButton ScimChewingColorButton;

struct _ScimChewingColorButton
{
  GtkDrawingArea   parent_instance;

  guchar          *render_buf;
  gint             render_buf_size;

  GdkPixbuf       *swap_icon;

  gint             rect_width;
  gint             rect_height;
  gint             click_target;

#if GTK_CHECK_VERSION(3, 0, 0)
  GdkRGBA          fg_color;
  GdkRGBA          bg_color;
#else
  GdkColor         fg_color;
  GdkColor	   bg_color;
#endif
};

struct _ScimChewingColorButtonClass
{
  GtkDrawingAreaClass  parent_class;

  /*  signals  */

  void (* color_changed) (ScimChewingColorButton  *button);
};


GType       scim_color_button_get_type    (void) G_GNUC_CONST;

GtkWidget * scim_color_button_new         (void);

gboolean    scim_color_button_get_colors  (ScimChewingColorButton *button,
					   String *fg_value,
					   String *bg_value);
gboolean    scim_color_button_set_colors  (ScimChewingColorButton *button,
					   const String &fg_value,
					   const String &bg_value);

#endif  /*  __SCIM_COLOR_BUTTON_H__  */