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 <[email protected]>
*
* 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 <[email protected]>
*/
#ifndef __SCIM_ANTHY_COLOR_BUTTON_H__
#define __SCIM_ANTHY_COLOR_BUTTON_H__
#include <gtk/gtk.h>
#include <scim.h>
using namespace scim;
#define SCIM_ANTHY_TYPE_COLOR_BUTTON (scim_anthy_color_button_get_type ())
#define SCIM_ANTHY_COLOR_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SCIM_ANTHY_TYPE_COLOR_BUTTON, ScimAnthyColorButton))
#define SCIM_ANTHY_COLOR_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SCIM_ANTHY_TYPE_COLOR_BUTTON, ScimAnthyColorButtonClass))
#define SCIM_ANTHY_IS_COLOR_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SCIM_ANTHY_TYPE_COLOR_BUTTON))
#define SCIM_ANTHY_IS_COLOR_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SCIM_ANTHY_TYPE_COLOR_BUTTON))
#define SCIM_ANTHY_COLOR_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SCIM_ANTHY_TYPE_COLOR_BUTTON, ScimAnthyColorButtonClass))
typedef struct _ScimAnthyColorButtonClass ScimAnthyColorButtonClass;
typedef struct _ScimAnthyColorButton ScimAnthyColorButton;
struct _ScimAnthyColorButton
{
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 _ScimAnthyColorButtonClass
{
GtkDrawingAreaClass parent_class;
/* signals */
void (* color_changed) (ScimAnthyColorButton *button);
};
GType scim_anthy_color_button_get_type (void) G_GNUC_CONST;
GtkWidget * scim_anthy_color_button_new (void);
gboolean scim_anthy_color_button_get_colors (ScimAnthyColorButton *button,
String *fg_value,
String *bg_value);
gboolean scim_anthy_color_button_set_colors (ScimAnthyColorButton *button,
const String &fg_value,
const String &bg_value);
#endif /* __SCIM_ANTHY_COLOR_BUTTON_H__ */
|