aboutsummaryrefslogtreecommitdiffstats
path: root/image
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>1998-11-17 04:29:13 +0000
committerGerald Combs <gerald@wireshark.org>1998-11-17 04:29:13 +0000
commit6ca358948b8c5aa99a4e0db8595f601ab834e76e (patch)
tree750ab11a6661c391b126d4ce990b7fc01cb98d46 /image
parent8d616b03429fe2185782f5153d7b187a44698b5d (diff)
* Added column formatting functionality.
* Added check_col(), add_col_str() and add_col_fmt() to replace references to ft->win_info. * Added column prefs handling code. svn path=/trunk/; revision=97
Diffstat (limited to 'image')
-rw-r--r--image/dn_arrow.xpm21
-rw-r--r--image/up_arrow.xpm21
2 files changed, 42 insertions, 0 deletions
diff --git a/image/dn_arrow.xpm b/image/dn_arrow.xpm
new file mode 100644
index 0000000000..8f71d31e55
--- /dev/null
+++ b/image/dn_arrow.xpm
@@ -0,0 +1,21 @@
+/* XPM */
+static char *dn_arrow[] = {
+/* width height num_colors chars_per_pixel */
+" 11 12 2 1",
+/* colors */
+". c None",
+"# c #000000",
+/* pixels */
+"...........",
+".#.......#.",
+".##.....##.",
+"..##...##..",
+"...##.##...",
+".#..###..#.",
+".##..#..##.",
+"..##...##..",
+"...##.##...",
+"....###....",
+".....#.....",
+"..........."
+};
diff --git a/image/up_arrow.xpm b/image/up_arrow.xpm
new file mode 100644
index 0000000000..a33294ca5d
--- /dev/null
+++ b/image/up_arrow.xpm
@@ -0,0 +1,21 @@
+/* XPM */
+static char *up_arrow[] = {
+/* width height num_colors chars_per_pixel */
+" 11 12 2 1",
+/* colors */
+". c None",
+"# c #000000",
+/* pixels */
+"...........",
+".....#.....",
+"....###....",
+"...##.##...",
+"..##...##..",
+".##..#..##.",
+".#..###..#.",
+"...##.##...",
+"..##...##..",
+".##.....##.",
+".#.......#.",
+"..........."
+};