Home
last modified time | relevance | path

Searched refs:colorsel (Results 1 – 25 of 557) sorted by relevance

12345678910>>...23

/dports/x11-toolkits/p5-Gtk2/Gtk2-1.24993/xs/
H A DGtkColorSelection.xs34 GtkColorSelection * colorsel
39 GtkColorSelection * colorsel
45 GtkColorSelection * colorsel
50 GtkColorSelection * colorsel
56 GtkColorSelection * colorsel
62 GtkColorSelection * colorsel
68 GtkColorSelection * colorsel
80 GtkColorSelection * colorsel
85 GtkColorSelection * colorsel
91 GtkColorSelection * colorsel
[all …]
/dports/x11-toolkits/gtk30/gtk+-3.24.31/gtk/deprecated/
H A Dgtkcolorsel.c167 GtkWidget *colorsel; member
409 priv = colorsel->private_data = gtk_color_selection_get_instance_private (colorsel); in gtk_color_selection_init()
787 update_color (colorsel); in set_color_internal()
1749 update_color (colorsel); in grab_color_at_pointer()
2060 update_color (colorsel); in hsv_changed()
2113 update_color (colorsel); in adjustment_changed()
2135 update_color (colorsel); in opacity_entry_changed()
2270 g_object_ref (colorsel); in update_color()
2521 update_color (colorsel); in gtk_color_selection_set_current_color()
2552 update_color (colorsel); in gtk_color_selection_set_current_alpha()
[all …]
H A Dgtkcolorsel.h121 void gtk_color_selection_set_current_alpha (GtkColorSelection *colorsel,
124 guint16 gtk_color_selection_get_current_alpha (GtkColorSelection *colorsel);
126 void gtk_color_selection_set_previous_alpha (GtkColorSelection *colorsel,
132 void gtk_color_selection_set_current_rgba (GtkColorSelection *colorsel,
135 void gtk_color_selection_get_current_rgba (GtkColorSelection *colorsel,
138 void gtk_color_selection_set_previous_rgba (GtkColorSelection *colorsel,
141 void gtk_color_selection_get_previous_rgba (GtkColorSelection *colorsel,
159 void gtk_color_selection_set_current_color (GtkColorSelection *colorsel,
162 void gtk_color_selection_get_current_color (GtkColorSelection *colorsel,
165 void gtk_color_selection_set_previous_color (GtkColorSelection *colorsel,
[all …]
H A Dgtkcolorseldialog.c65 GtkWidget *colorsel; member
102 GtkColorSelectionDialog *colorsel = GTK_COLOR_SELECTION_DIALOG (object); in gtk_color_selection_dialog_get_property() local
103 GtkColorSelectionDialogPrivate *priv = colorsel->priv; in gtk_color_selection_dialog_get_property()
108 g_value_set_object (value, priv->colorsel); in gtk_color_selection_dialog_get_property()
183 priv->colorsel = gtk_color_selection_new (); in gtk_color_selection_dialog_init()
184 gtk_container_set_border_width (GTK_CONTAINER (priv->colorsel), 5); in gtk_color_selection_dialog_init()
187 gtk_container_add (GTK_CONTAINER (content_area), priv->colorsel); in gtk_color_selection_dialog_init()
188 gtk_widget_show (priv->colorsel); in gtk_color_selection_dialog_init()
252 g_return_val_if_fail (GTK_IS_COLOR_SELECTION_DIALOG (colorsel), NULL); in gtk_color_selection_dialog_get_color_selection()
254 return colorsel->priv->colorsel; in gtk_color_selection_dialog_get_color_selection()
[all …]
/dports/graphics/gcolor3/gcolor3-17dca0125fc3c931418d8723b684332d35bd5715/src/
H A Dgcolor3-color-selection.c153 GtkWidget *colorsel; member
685 update_palette (colorsel); in gcolor3_color_selection_realize()
758 update_color (colorsel); in set_color_internal()
1714 update_color (colorsel); in grab_color_at_pointer()
2025 update_color (colorsel); in hsv_changed()
2078 update_color (colorsel); in adjustment_changed()
2100 update_color (colorsel); in opacity_entry_changed()
2226 g_object_ref (colorsel); in update_color()
2475 update_color (colorsel); in gcolor3_color_selection_set_current_color()
2507 update_color (colorsel); in gcolor3_color_selection_set_current_alpha()
[all …]
H A Dgcolor3-color-selection.h107 void gcolor3_color_selection_set_current_alpha (Gcolor3ColorSelection *colorsel,
109 guint16 gcolor3_color_selection_get_current_alpha (Gcolor3ColorSelection *colorsel);
110 void gcolor3_color_selection_set_previous_alpha (Gcolor3ColorSelection *colorsel,
114 void gcolor3_color_selection_set_current_rgba (Gcolor3ColorSelection *colorsel,
116 void gcolor3_color_selection_get_current_rgba (Gcolor3ColorSelection *colorsel,
118 void gcolor3_color_selection_set_previous_rgba (Gcolor3ColorSelection *colorsel,
120 void gcolor3_color_selection_get_previous_rgba (Gcolor3ColorSelection *colorsel,
133 void gcolor3_color_selection_set_current_color (Gcolor3ColorSelection *colorsel,
135 void gcolor3_color_selection_get_current_color (Gcolor3ColorSelection *colorsel,
137 void gcolor3_color_selection_set_previous_color (Gcolor3ColorSelection *colorsel,
[all …]
/dports/x11-toolkits/gtk20/gtk+-2.24.33/gtk/
H A Dgtkcolorsel.c151 GtkWidget *colorsel; member
680 update_color (colorsel); in set_color_internal()
927 colorsel); in color_sample_setup_dnd()
940 colorsel); in color_sample_setup_dnd()
945 colorsel); in color_sample_setup_dnd()
948 colorsel); in color_sample_setup_dnd()
995 colorsel); in color_sample_new()
998 colorsel); in color_sample_new()
1297 colorsel); in palette_set_color()
1300 colorsel); in palette_set_color()
[all …]
H A Dgtkcolorsel.h92 void gtk_color_selection_set_current_color (GtkColorSelection *colorsel,
94 void gtk_color_selection_set_current_alpha (GtkColorSelection *colorsel,
96 void gtk_color_selection_get_current_color (GtkColorSelection *colorsel,
98 guint16 gtk_color_selection_get_current_alpha (GtkColorSelection *colorsel);
99 void gtk_color_selection_set_previous_color (GtkColorSelection *colorsel,
101 void gtk_color_selection_set_previous_alpha (GtkColorSelection *colorsel,
103 void gtk_color_selection_get_previous_color (GtkColorSelection *colorsel,
105 guint16 gtk_color_selection_get_previous_alpha (GtkColorSelection *colorsel);
125 void gtk_color_selection_set_color (GtkColorSelection *colorsel,
127 void gtk_color_selection_get_color (GtkColorSelection *colorsel,
[all …]
H A Dgtkcolorseldialog.c69 GtkColorSelectionDialog *colorsel; in gtk_color_selection_dialog_get_property() local
71 colorsel = GTK_COLOR_SELECTION_DIALOG (object); in gtk_color_selection_dialog_get_property()
76 g_value_set_object (value, colorsel->colorsel); in gtk_color_selection_dialog_get_property()
79 g_value_set_object (value, colorsel->ok_button); in gtk_color_selection_dialog_get_property()
82 g_value_set_object (value, colorsel->cancel_button); in gtk_color_selection_dialog_get_property()
85 g_value_set_object (value, colorsel->help_button); in gtk_color_selection_dialog_get_property()
140 colorseldiag->colorsel = gtk_color_selection_new (); in gtk_color_selection_dialog_init()
145 gtk_widget_show (colorseldiag->colorsel); in gtk_color_selection_dialog_init()
203 g_return_val_if_fail (GTK_IS_COLOR_SELECTION_DIALOG (colorsel), NULL); in gtk_color_selection_dialog_get_color_selection()
205 return colorsel->colorsel; in gtk_color_selection_dialog_get_color_selection()
[all …]
/dports/x11/mate-desktop/mate-desktop-1.26.0/libmate-desktop/
H A Dmate-colorsel.c125 GtkWidget *colorsel; member
668 update_color (colorsel); in set_color_internal()
913 colorsel); in color_sample_setup_dnd()
926 colorsel); in color_sample_setup_dnd()
931 colorsel); in color_sample_setup_dnd()
934 colorsel); in color_sample_setup_dnd()
981 colorsel); in color_sample_new()
984 colorsel); in color_sample_new()
1277 colorsel); in palette_set_color()
1280 colorsel); in palette_set_color()
[all …]
H A Dmate-colorsel.h89 void mate_color_selection_set_current_color (MateColorSelection *colorsel,
91 void mate_color_selection_set_current_alpha (MateColorSelection *colorsel,
93 void mate_color_selection_get_current_color (MateColorSelection *colorsel,
95 guint16 mate_color_selection_get_current_alpha (MateColorSelection *colorsel);
96 void mate_color_selection_set_previous_color (MateColorSelection *colorsel,
98 void mate_color_selection_set_previous_alpha (MateColorSelection *colorsel,
100 void mate_color_selection_get_previous_color (MateColorSelection *colorsel,
102 guint16 mate_color_selection_get_previous_alpha (MateColorSelection *colorsel);
104 gboolean mate_color_selection_is_adjusting (MateColorSelection *colorsel);
122 void mate_color_selection_set_color (MateColorSelection *colorsel,
[all …]
H A Dmate-colorseldialog.c66 MateColorSelectionDialog *colorsel; in mate_color_selection_dialog_get_property() local
68 colorsel = MATE_COLOR_SELECTION_DIALOG (object); in mate_color_selection_dialog_get_property()
73 g_value_set_object (value, colorsel->colorsel); in mate_color_selection_dialog_get_property()
76 g_value_set_object (value, colorsel->ok_button); in mate_color_selection_dialog_get_property()
79 g_value_set_object (value, colorsel->cancel_button); in mate_color_selection_dialog_get_property()
82 g_value_set_object (value, colorsel->help_button); in mate_color_selection_dialog_get_property()
155 colorseldiag->colorsel = mate_color_selection_new (); in mate_color_selection_dialog_init()
160 gtk_widget_show (colorseldiag->colorsel); in mate_color_selection_dialog_init()
218 g_return_val_if_fail (MATE_IS_COLOR_SELECTION_DIALOG (colorsel), NULL); in mate_color_selection_dialog_get_color_selection()
220 return colorsel->colorsel; in mate_color_selection_dialog_get_color_selection()
[all …]
/dports/multimedia/gmerlin/gmerlin-1.2.0/lib/gtk/
H A Dcfg_color.c33 GtkWidget * colorsel; member
50 if(priv->colorsel) in destroy()
51 gtk_widget_destroy(priv->colorsel); in destroy()
235 if(!priv->colorsel) in button_callback()
237 priv->colorsel = in button_callback()
242 g_signal_connect(G_OBJECT(GTK_COLOR_SELECTION_DIALOG(priv->colorsel)->colorsel), in button_callback()
274 gtk_widget_show(priv->colorsel); in button_callback()
277 else if(priv->colorsel) in button_callback()
282 gtk_widget_hide(priv->colorsel); in button_callback()
288 (w == priv->colorsel)) in button_callback()
[all …]
/dports/lang/fpc-source/fpc-3.2.2/packages/gtk2/src/gtk+/gtk/
H A Dgtkcolorsel.inc46 function gtk_color_selection_get_has_opacity_control(colorsel:PGtkColorSelection):gboolean; cdecl; …
48 function gtk_color_selection_get_has_palette(colorsel:PGtkColorSelection):gboolean; cdecl; external…
50 procedure gtk_color_selection_set_current_color(colorsel:PGtkColorSelection; color:PGdkColor); cdec…
51 procedure gtk_color_selection_set_current_alpha(colorsel:PGtkColorSelection; alpha:guint16); cdecl;…
52 procedure gtk_color_selection_get_current_color(colorsel:PGtkColorSelection; color:PGdkColor); cdec…
53 function gtk_color_selection_get_current_alpha(colorsel:PGtkColorSelection):guint16; cdecl; externa…
55 procedure gtk_color_selection_set_previous_alpha(colorsel:PGtkColorSelection; alpha:guint16); cdecl…
57 function gtk_color_selection_get_previous_alpha(colorsel:PGtkColorSelection):guint16; cdecl; extern…
58 function gtk_color_selection_is_adjusting(colorsel:PGtkColorSelection):gboolean; cdecl; external gt…
68 procedure gtk_color_selection_set_color(colorsel:PGtkColorSelection; color:Pgdouble); cdecl; extern…
[all …]
/dports/x11-toolkits/fpc-gtk2/fpc-3.2.2/packages/gtk2/src/gtk+/gtk/
H A Dgtkcolorsel.inc46 function gtk_color_selection_get_has_opacity_control(colorsel:PGtkColorSelection):gboolean; cdecl; …
48 function gtk_color_selection_get_has_palette(colorsel:PGtkColorSelection):gboolean; cdecl; external…
50 procedure gtk_color_selection_set_current_color(colorsel:PGtkColorSelection; color:PGdkColor); cdec…
51 procedure gtk_color_selection_set_current_alpha(colorsel:PGtkColorSelection; alpha:guint16); cdecl;…
52 procedure gtk_color_selection_get_current_color(colorsel:PGtkColorSelection; color:PGdkColor); cdec…
53 function gtk_color_selection_get_current_alpha(colorsel:PGtkColorSelection):guint16; cdecl; externa…
55 procedure gtk_color_selection_set_previous_alpha(colorsel:PGtkColorSelection; alpha:guint16); cdecl…
57 function gtk_color_selection_get_previous_alpha(colorsel:PGtkColorSelection):guint16; cdecl; extern…
58 function gtk_color_selection_is_adjusting(colorsel:PGtkColorSelection):gboolean; cdecl; external gt…
68 procedure gtk_color_selection_set_color(colorsel:PGtkColorSelection; color:Pgdouble); cdecl; extern…
[all …]
/dports/editors/abiword/abiword-3.0.5/src/af/xap/gtk/
H A Dxap_UnixDlg_ColorChooser.cpp28 GtkColorChooser *colorsel = NULL; in XAP_UnixDlg_RunColorChooser() local
32 colorsel = GTK_COLOR_CHOOSER(colordlg); in XAP_UnixDlg_RunColorChooser()
34colorsel = GTK_COLOR_SELECTION (gtk_color_selection_dialog_get_color_selection(GTK_COLOR_SELECTION… in XAP_UnixDlg_RunColorChooser()
35 gtk_color_selection_set_has_palette (colorsel, TRUE); in XAP_UnixDlg_RunColorChooser()
40 gtk_color_chooser_set_rgba(colorsel, &initialColor); in XAP_UnixDlg_RunColorChooser()
48 gtk_color_chooser_get_rgba (colorsel, &color); in XAP_UnixDlg_RunColorChooser()
/dports/x11-toolkits/p5-Gtk2/Gtk2-1.24993/gtk-demo/
H A Dcolorsel.pl10 package colorsel; package
26 my $colorsel = $dialog->colorsel;
28 $colorsel->set_previous_color ($color);
29 $colorsel->set_current_color ($color);
30 $colorsel->set_has_palette (TRUE);
35 $color = $colorsel->get_current_color;
/dports/mail/evolution/evolution-3.42.1/src/mail/
H A De-mail-label-dialog.c33 GtkWidget *colorsel; member
112 g_clear_object (&priv->colorsel); in mail_label_dialog_dispose()
224 dialog->priv->colorsel = g_object_ref (widget); in e_mail_label_dialog_init()
270 GtkColorSelection *colorsel; in e_mail_label_dialog_get_label_color() local
275 colorsel = GTK_COLOR_SELECTION (dialog->priv->colorsel); in e_mail_label_dialog_get_label_color()
277 gtk_color_selection_get_current_color (colorsel, label_color); in e_mail_label_dialog_get_label_color()
284 GtkColorSelection *colorsel; in e_mail_label_dialog_set_label_color() local
289 colorsel = GTK_COLOR_SELECTION (dialog->priv->colorsel); in e_mail_label_dialog_set_label_color()
291 gtk_color_selection_set_current_color (colorsel, label_color); in e_mail_label_dialog_set_label_color()
/dports/editors/abiword/abiword-3.0.5/src/wp/ap/gtk/
H A Dap_UnixDialog_Background.cpp147 GtkWidget *colorsel; in _constructWindowContents() local
154 colorsel = gtk_color_chooser_widget_new(); in _constructWindowContents()
156 gtk_color_selection_set_has_palette (GTK_COLOR_SELECTION (colorsel), TRUE); in _constructWindowContents()
158 gtk_color_chooser_set_use_alpha(GTK_COLOR_CHOOSER(colorsel), false); in _constructWindowContents()
159 gtk_widget_show (colorsel); in _constructWindowContents()
160 gtk_container_add (GTK_CONTAINER(vbox), colorsel); in _constructWindowContents()
170 gtk_color_chooser_set_rgba( GTK_COLOR_CHOOSER ( colorsel ), gcolor); in _constructWindowContents()
173 m_wColorsel = colorsel; in _constructWindowContents()
205 g_signal_connect (G_OBJECT(colorsel), in _constructWindowContents()
/dports/lang/fpc-source/fpc-3.2.2/packages/gtk2/examples/gtk_demo/
H A Dcolorsel.inc19 colorsel : PGtkColorSelection;
27 colorsel := PGtkColorSelection ( PGtkColorSelectionDialog(dialog)^.colorsel );
29 gtk_color_selection_set_previous_color (colorsel, @colorsel_color);
30 gtk_color_selection_set_current_color (colorsel, @colorsel_color);
31 gtk_color_selection_set_has_palette (colorsel, TRUE);
37 gtk_color_selection_get_current_color (colorsel, @colorsel_color);
/dports/x11-toolkits/fpc-gtk2/fpc-3.2.2/packages/gtk2/examples/gtk_demo/
H A Dcolorsel.inc19 colorsel : PGtkColorSelection;
27 colorsel := PGtkColorSelection ( PGtkColorSelectionDialog(dialog)^.colorsel );
29 gtk_color_selection_set_previous_color (colorsel, @colorsel_color);
30 gtk_color_selection_set_current_color (colorsel, @colorsel_color);
31 gtk_color_selection_set_has_palette (colorsel, TRUE);
37 gtk_color_selection_get_current_color (colorsel, @colorsel_color);
/dports/x11-toolkits/pyl-gtk2/pygtk-2.24.0/examples/pylgtk-demo/demos/
H A Dcolorsel.py55 colorsel = dialog.colorsel
57 colorsel.set_previous_color(self.color)
58 colorsel.set_current_color(self.color)
59 colorsel.set_has_palette(True)
64 self.color = colorsel.get_current_color()
/dports/graphics/fyre/fyre-1.0.1/src/
H A Dcolor-button.c149 GtkWidget *colorsel; in color_button_activate() local
156 colorsel = GTK_COLOR_SELECTION_DIALOG(self->dialog)->colorsel; in color_button_activate()
157 gtk_color_selection_set_has_opacity_control(GTK_COLOR_SELECTION(colorsel), TRUE); in color_button_activate()
161 gtk_color_selection_set_update_policy(GTK_COLOR_SELECTION(colorsel), GTK_UPDATE_CONTINUOUS); in color_button_activate()
162 … g_signal_connect(G_OBJECT(colorsel), "color-changed", G_CALLBACK(color_changed), (gpointer) self); in color_button_activate()
168 gtk_color_selection_set_current_alpha(GTK_COLOR_SELECTION(colorsel), self->alpha); in color_button_activate()
169 gtk_color_selection_set_previous_alpha(GTK_COLOR_SELECTION(colorsel), self->previous_alpha); in color_button_activate()
170 gtk_color_selection_set_current_color(GTK_COLOR_SELECTION(colorsel), &self->color); in color_button_activate()
171 gtk_color_selection_set_previous_color(GTK_COLOR_SELECTION(colorsel), &self->previous_color); in color_button_activate()
/dports/x11-toolkits/gtk20/gtk+-2.24.33/demos/gtk-demo/
H A Dcolorsel.c48 GtkColorSelection *colorsel; in change_color_callback() local
55 colorsel = in change_color_callback()
58 gtk_color_selection_set_previous_color (colorsel, &color); in change_color_callback()
59 gtk_color_selection_set_current_color (colorsel, &color); in change_color_callback()
60 gtk_color_selection_set_has_palette (colorsel, TRUE); in change_color_callback()
66 gtk_color_selection_get_current_color (colorsel, in change_color_callback()
/dports/lang/fpc-source/fpc-3.2.2/packages/gtk1/src/gtk/
H A Dgtkcolorsel.pp38 color_changed : procedure (colorsel:PGtkColorSelection); cdecl;
44 colorsel : PGtkWidget;
71 procedure gtk_color_selection_set_update_policy(colorsel:PGtkColorSelection; policy:TGtkUpdateType)…
72 procedure gtk_color_selection_set_opacity(colorsel:PGtkColorSelection; use_opacity:gint);cdecl;exte…
73 procedure gtk_color_selection_set_color(colorsel:PGtkColorSelection; color:Pgdouble);cdecl;external…
74 procedure gtk_color_selection_get_color(colorsel:PGtkColorSelection; color:Pgdouble);cdecl;external…

12345678910>>...23