aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@helixcode.com>2000-06-16 05:05:28 +0800
committerChris Toshok <toshok@src.gnome.org>2000-06-16 05:05:28 +0800
commitcb802b193c974a70e308624c6c407c8e6d5485fc (patch)
tree103dcb0ed89a3f6531d9c212fb3effd253700669
parent49b37933f943d47bfa6518d30ca12026c83802d9 (diff)
downloadgsoc2013-evolution-cb802b193c974a70e308624c6c407c8e6d5485fc.tar
gsoc2013-evolution-cb802b193c974a70e308624c6c407c8e6d5485fc.tar.gz
gsoc2013-evolution-cb802b193c974a70e308624c6c407c8e6d5485fc.tar.bz2
gsoc2013-evolution-cb802b193c974a70e308624c6c407c8e6d5485fc.tar.lz
gsoc2013-evolution-cb802b193c974a70e308624c6c407c8e6d5485fc.tar.xz
gsoc2013-evolution-cb802b193c974a70e308624c6c407c8e6d5485fc.tar.zst
gsoc2013-evolution-cb802b193c974a70e308624c6c407c8e6d5485fc.zip
print the icon for the tree control.
2000-06-15 Chris Toshok <toshok@helixcode.com> * e-cell-tree.c (ect_print): print the icon for the tree control. svn path=/trunk/; revision=3579
-rw-r--r--widgets/e-table/ChangeLog4
-rw-r--r--widgets/e-table/e-cell-tree.c48
-rw-r--r--widgets/table/e-cell-tree.c48
3 files changed, 58 insertions, 42 deletions
diff --git a/widgets/e-table/ChangeLog b/widgets/e-table/ChangeLog
index e030642d5f..eb06ac3203 100644
--- a/widgets/e-table/ChangeLog
+++ b/widgets/e-table/ChangeLog
@@ -1,3 +1,7 @@
+2000-06-15 Chris Toshok <toshok@helixcode.com>
+
+ * e-cell-tree.c (ect_print): print the icon for the tree control.
+
2000-06-14 Chris Toshok <toshok@helixcode.com>
* e-tree-example-1.c (print_tree): new function, to generate
diff --git a/widgets/e-table/e-cell-tree.c b/widgets/e-table/e-cell-tree.c
index 508d39e60f..41eb805cdc 100644
--- a/widgets/e-table/e-cell-tree.c
+++ b/widgets/e-table/e-cell-tree.c
@@ -362,16 +362,22 @@ ect_print (ECellView *ecell_view, GnomePrintContext *context,
ETreePath *node = e_cell_tree_get_node (tree_model, row);
int offset = offset_of_node (tree_model, node);
int subcell_offset = offset;
+ gboolean expandable = e_tree_model_node_is_expandable (tree_model, node);
+ gboolean expanded = e_tree_model_node_is_expanded (tree_model, node);
/* draw our lines */
if (E_CELL_TREE(tree_view->cell_view.ecell)->draw_lines) {
- gnome_print_moveto (context,
- offset - INDENT_AMOUNT / 2,
- height / 2);
- gnome_print_lineto (context,
- offset,
- height / 2);
+ if (!e_tree_model_node_is_root (tree_model, node)
+ || e_tree_model_node_get_children (tree_model, node, NULL) > 0) {
+ gnome_print_moveto (context,
+ offset - INDENT_AMOUNT / 2,
+ height / 2);
+
+ gnome_print_lineto (context,
+ offset,
+ height / 2);
+ }
if (visible_depth_of_node (tree_model, node) != 0) {
gnome_print_moveto (context,
@@ -403,29 +409,29 @@ ect_print (ECellView *ecell_view, GnomePrintContext *context,
}
}
-#if 0
/* now draw our icon if we're expandable */
if (expandable) {
+ double image_matrix [6] = {16, 0, 0, 16, 0, 0};
GdkPixbuf *image = (expanded
? E_CELL_TREE(tree_view->cell_view.ecell)->open_pixbuf
: E_CELL_TREE(tree_view->cell_view.ecell)->closed_pixbuf);
- int width, height;
+ int image_width, image_height, image_rowstride;
+ guchar *image_pixels;
- width = gdk_pixbuf_get_width(image);
- height = gdk_pixbuf_get_height(image);
+ image_width = gdk_pixbuf_get_width(image);
+ image_height = gdk_pixbuf_get_height(image);
+ image_pixels = gdk_pixbuf_get_pixels(image);
+ image_rowstride = gdk_pixbuf_get_rowstride(image);
- gdk_pixbuf_render_to_drawable_alpha (image,
- drawable,
- 0, 0,
- x1 + subcell_offset - INDENT_AMOUNT / 2 - width / 2,
- y1 + (y2 - y1) / 2 - height / 2,
- width, height,
- GDK_PIXBUF_ALPHA_BILEVEL,
- 128,
- GDK_RGB_DITHER_NORMAL,
- width, 0);
+ image_matrix [4] = subcell_offset - INDENT_AMOUNT / 2 - image_width / 2;
+ image_matrix [5] = height / 2 - image_height / 2;
+
+ gnome_print_gsave (context);
+ gnome_print_concat (context, image_matrix);
+
+ gnome_print_rgbaimage (context, image_pixels, image_width, image_height, image_rowstride);
+ gnome_print_grestore (context);
}
-#endif
gnome_print_stroke (context);
diff --git a/widgets/table/e-cell-tree.c b/widgets/table/e-cell-tree.c
index 508d39e60f..41eb805cdc 100644
--- a/widgets/table/e-cell-tree.c
+++ b/widgets/table/e-cell-tree.c
@@ -362,16 +362,22 @@ ect_print (ECellView *ecell_view, GnomePrintContext *context,
ETreePath *node = e_cell_tree_get_node (tree_model, row);
int offset = offset_of_node (tree_model, node);
int subcell_offset = offset;
+ gboolean expandable = e_tree_model_node_is_expandable (tree_model, node);
+ gboolean expanded = e_tree_model_node_is_expanded (tree_model, node);
/* draw our lines */
if (E_CELL_TREE(tree_view->cell_view.ecell)->draw_lines) {
- gnome_print_moveto (context,
- offset - INDENT_AMOUNT / 2,
- height / 2);
- gnome_print_lineto (context,
- offset,
- height / 2);
+ if (!e_tree_model_node_is_root (tree_model, node)
+ || e_tree_model_node_get_children (tree_model, node, NULL) > 0) {
+ gnome_print_moveto (context,
+ offset - INDENT_AMOUNT / 2,
+ height / 2);
+
+ gnome_print_lineto (context,
+ offset,
+ height / 2);
+ }
if (visible_depth_of_node (tree_model, node) != 0) {
gnome_print_moveto (context,
@@ -403,29 +409,29 @@ ect_print (ECellView *ecell_view, GnomePrintContext *context,
}
}
-#if 0
/* now draw our icon if we're expandable */
if (expandable) {
+ double image_matrix [6] = {16, 0, 0, 16, 0, 0};
GdkPixbuf *image = (expanded
? E_CELL_TREE(tree_view->cell_view.ecell)->open_pixbuf
: E_CELL_TREE(tree_view->cell_view.ecell)->closed_pixbuf);
- int width, height;
+ int image_width, image_height, image_rowstride;
+ guchar *image_pixels;
- width = gdk_pixbuf_get_width(image);
- height = gdk_pixbuf_get_height(image);
+ image_width = gdk_pixbuf_get_width(image);
+ image_height = gdk_pixbuf_get_height(image);
+ image_pixels = gdk_pixbuf_get_pixels(image);
+ image_rowstride = gdk_pixbuf_get_rowstride(image);
- gdk_pixbuf_render_to_drawable_alpha (image,
- drawable,
- 0, 0,
- x1 + subcell_offset - INDENT_AMOUNT / 2 - width / 2,
- y1 + (y2 - y1) / 2 - height / 2,
- width, height,
- GDK_PIXBUF_ALPHA_BILEVEL,
- 128,
- GDK_RGB_DITHER_NORMAL,
- width, 0);
+ image_matrix [4] = subcell_offset - INDENT_AMOUNT / 2 - image_width / 2;
+ image_matrix [5] = height / 2 - image_height / 2;
+
+ gnome_print_gsave (context);
+ gnome_print_concat (context, image_matrix);
+
+ gnome_print_rgbaimage (context, image_pixels, image_width, image_height, image_rowstride);
+ gnome_print_grestore (context);
}
-#endif
gnome_print_stroke (context);