aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/sctp_graph_dlg.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-01-06 17:13:48 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-01-06 17:13:48 +0000
commit9520710d835226880b6f21f93e9ca7e40098739e (patch)
tree8e71a418dc7a02976ab9e70c3f182056c32907ab /ui/gtk/sctp_graph_dlg.c
parent69c0967fc743372d8dc4a0ab6d76d85df53b8169 (diff)
Use gdk_cairo_set_source_rgba and GdkRGBA
svn path=/trunk/; revision=46977
Diffstat (limited to 'ui/gtk/sctp_graph_dlg.c')
-rw-r--r--ui/gtk/sctp_graph_dlg.c27
1 files changed, 14 insertions, 13 deletions
diff --git a/ui/gtk/sctp_graph_dlg.c b/ui/gtk/sctp_graph_dlg.c
index 99ed64c59d..96ba1684da 100644
--- a/ui/gtk/sctp_graph_dlg.c
+++ b/ui/gtk/sctp_graph_dlg.c
@@ -146,9 +146,10 @@ draw_sack_graph(struct sctp_udata *u_data)
guint8 type;
guint32 tsnumber, dupx;
gint xvalue, yvalue;
- GdkColor red_color = {0, 65535, 0, 0};
- GdkColor green_color = {0, 0, 65535, 0};
- GdkColor cyan_color = {0, 0, 65535, 65535};
+ GdkRGBA red_color = {1.0, 0.0, 0.0, 1.0};
+ GdkRGBA green_color = {0.0, 1.0, 0.0, 1.0};
+ GdkRGBA cyan_color = {0.0, 1.0, 1.0, 1.0};
+
struct sack_chunk_header *sack_header;
struct gaps *gap;
guint32 /*max_num,*/ diff;
@@ -228,7 +229,7 @@ draw_sack_graph(struct sctp_udata *u_data)
#else
cr = gdk_cairo_create (u_data->io->pixmap);
#endif
- gdk_cairo_set_source_color (cr, &green_color);
+ gdk_cairo_set_source_rgba (cr, &green_color);
cairo_arc(cr,
xvalue,
yvalue,
@@ -265,7 +266,7 @@ draw_sack_graph(struct sctp_udata *u_data)
#else
cr = gdk_cairo_create (u_data->io->pixmap);
#endif
- gdk_cairo_set_source_color (cr, &red_color);
+ gdk_cairo_set_source_rgba (cr, &red_color);
cairo_arc(cr,
xvalue,
yvalue,
@@ -300,7 +301,7 @@ draw_sack_graph(struct sctp_udata *u_data)
#else
cr = gdk_cairo_create (u_data->io->pixmap);
#endif
- gdk_cairo_set_source_color (cr, &cyan_color);
+ gdk_cairo_set_source_rgba (cr, &cyan_color);
cairo_arc(cr,
xvalue,
yvalue,
@@ -337,9 +338,9 @@ draw_nr_sack_graph(struct sctp_udata *u_data)
guint8 type;
guint32 tsnumber, j;
gint xvalue, yvalue;
- GdkColor red_color = {0, 65535, 0, 0};
- GdkColor blue_color = {0, 0, 0, 65535};
- GdkColor green_color = {0, 0, 65535, 0};
+ GdkRGBA red_color = {1.0, 0.0, 0.0, 1.0};
+ GdkRGBA green_color = {0.0, 1.0, 0.0, 1.0};
+ GdkRGBA blue_color = {0.0, 0.0, 1.0, 1.0};
struct nr_sack_chunk_header *nr_sack_header;
struct gaps *nr_gap;
guint32 /*max_num,*/ diff;
@@ -428,7 +429,7 @@ draw_nr_sack_graph(struct sctp_udata *u_data)
#else
cr = gdk_cairo_create (u_data->io->pixmap);
#endif
- gdk_cairo_set_source_color (cr, &blue_color);
+ gdk_cairo_set_source_rgba (cr, &blue_color);
cairo_arc(cr,
xvalue,
yvalue,
@@ -449,7 +450,7 @@ draw_nr_sack_graph(struct sctp_udata *u_data)
#else
cr = gdk_cairo_create (u_data->io->pixmap);
#endif
- gdk_cairo_set_source_color (cr, &green_color);
+ gdk_cairo_set_source_rgba (cr, &green_color);
cairo_arc(cr,
xvalue,
yvalue,
@@ -467,7 +468,7 @@ draw_nr_sack_graph(struct sctp_udata *u_data)
#else
cr = gdk_cairo_create (u_data->io->pixmap);
#endif
- gdk_cairo_set_source_color (cr, &green_color);
+ gdk_cairo_set_source_rgba (cr, &green_color);
cairo_arc(cr,
xvalue,
yvalue,
@@ -504,7 +505,7 @@ draw_nr_sack_graph(struct sctp_udata *u_data)
#else
cr = gdk_cairo_create (u_data->io->pixmap);
#endif
- gdk_cairo_set_source_color (cr, &red_color);
+ gdk_cairo_set_source_rgba (cr, &red_color);
cairo_arc(cr,
xvalue,
yvalue,