aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/tree-expanded.xpm
diff options
context:
space:
mode:
authorChris Toshok <toshok@helixcode.com>2000-06-09 07:16:22 +0800
committerChris Toshok <toshok@src.gnome.org>2000-06-09 07:16:22 +0800
commite581631a9ce0803ba629ac67cd8934a6e23753ae (patch)
tree16fd9ebf869dd9fd82d265ce5a60a4ea7aeba652 /widgets/table/tree-expanded.xpm
parentf856d999c5cade657d045ea22b1fb64be481829d (diff)
downloadgsoc2013-evolution-e581631a9ce0803ba629ac67cd8934a6e23753ae.tar
gsoc2013-evolution-e581631a9ce0803ba629ac67cd8934a6e23753ae.tar.gz
gsoc2013-evolution-e581631a9ce0803ba629ac67cd8934a6e23753ae.tar.bz2
gsoc2013-evolution-e581631a9ce0803ba629ac67cd8934a6e23753ae.tar.lz
gsoc2013-evolution-e581631a9ce0803ba629ac67cd8934a6e23753ae.tar.xz
gsoc2013-evolution-e581631a9ce0803ba629ac67cd8934a6e23753ae.tar.zst
gsoc2013-evolution-e581631a9ce0803ba629ac67cd8934a6e23753ae.zip
New files. A tree model using a GNode structure to store it's info.
2000-06-08 Chris Toshok <toshok@helixcode.com> * e-tree-gnode.c, e-tree-gnode.h: New files. A tree model using a GNode structure to store it's info. * e-tree-model.c, e-tree-model.h: New files. A proxy model sitting between a table model and the real tree model (of which ETreeGNode is an example). * e-cell-tree.c, e-cell-tree.h: New files. A cell renderer capable of wrapping up a subcell and drawing the tree controls for expanding/collapsing trees. * tree-expanded.xpm, tree-unexpanded.xpm: New files. the standard + and - icons. * e-tree-example-1.c: New file, giving a (pretty poor :) example of using ETreeGNode. * Makefile.am: at the tree stuff to the build, and build tree-example-1. * .cvsignore: ignore tree-example-1. svn path=/trunk/; revision=3483
Diffstat (limited to 'widgets/table/tree-expanded.xpm')
-rw-r--r--widgets/table/tree-expanded.xpm22
1 files changed, 22 insertions, 0 deletions
diff --git a/widgets/table/tree-expanded.xpm b/widgets/table/tree-expanded.xpm
new file mode 100644
index 0000000000..fc748953eb
--- /dev/null
+++ b/widgets/table/tree-expanded.xpm
@@ -0,0 +1,22 @@
+/* XPM */
+static char * tree_expanded_xpm[] = {
+"16 16 3 1",
+" c None",
+". c #000000",
+"+ c #FFFFFF",
+" ",
+" ",
+" ",
+" ",
+" ......... ",
+" .+++++++. ",
+" .+++++++. ",
+" .+++++++. ",
+" .+.....+. ",
+" .+++++++. ",
+" .+++++++. ",
+" .+++++++. ",
+" ......... ",
+" ",
+" ",
+" "};