aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text/e-text-test.c
blob: d10a745d8552a682e812b1e0117d7154162dd6da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* 
 * e-text-test.c - E-Text item test program
 * Copyright 2000: Iain Holmes <ih@csd.abdn.ac.uk>
 *
 * Authors:
 *   Iain Holmes <ih@csd.abdn.ac.uk>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License, version 2, as published by the Free Software Foundation.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 */

#include "e-text.h"
#include <gnome.h>
#include "gal/widgets/e-canvas.h"
#include "gal/widgets/e-unicode.h"

GnomeCanvasItem *rect;

static void allocate_callback(GtkWidget *canvas, GtkAllocation *allocation, GnomeCanvasItem *item)
{
  double height;
  gnome_canvas_item_set( item,
             "width", (double) allocation->width,
             NULL );
  g_object_get(item,
           "height", &height,
           NULL);
  height = MAX(height, allocation->height);
  gnome_canvas_set_scroll_region(GNOME_CANVAS( canvas ), 0, 0, allocation->width, height );
  gnome_canvas_item_set( rect,
             "x2", (double) allocation->width,
             "y2", (double) height,
             NULL );
}

static void
reflow (GtkWidget *canvas, GnomeCanvasItem *item)
{
  double height;
  g_object_get(item,
           "height", &height,
           NULL);
  height = MAX(height, canvas->allocation.height);
  gnome_canvas_set_scroll_region(GNOME_CANVAS( canvas ), 0, 0, canvas->allocation.width, height );
  gnome_canvas_item_set( rect,
             "x2", (double) canvas->allocation.width,
             "y2", (double) height,
             NULL );
}

static void
quit_cb (gpointer data, GObject *where_object_was)
{
  gtk_main_quit ();
}

static void
change_text_cb (GtkEntry *entry,
        EText *text)
{
  gchar *str;

  str = e_utf8_gtk_entry_get_text (entry);
  gnome_canvas_item_set (GNOME_CANVAS_ITEM (text),
             "text", str,
             NULL);
}

static void
change_font_cb (GtkEntry *entry,
        EText *text)
{
  gchar *font;

  font = gtk_entry_get_text (entry);
  gnome_canvas_item_set (GNOME_CANVAS_ITEM (text),
             "font", font,
             NULL);
}

int
main (int argc,
      char **argv)
{
  GtkWidget *window, *canvas, *scroller, *vbox, *text, *font;
  GtkWidget *frame;
  GnomeCanvasItem *item;

  gnome_init ("ETextTest", "0.0.1", argc, argv);
  window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
  gtk_window_set_title (GTK_WINDOW (window), "EText Test");
  g_object_weak_ref (G_OBJECT (window),
             quit_cb, NULL);

  gtk_widget_push_colormap (gdk_rgb_get_cmap ());
  canvas = e_canvas_new ();
  gtk_widget_pop_colormap ();
  scroller = gtk_scrolled_window_new (NULL, NULL);
  vbox = gtk_vbox_new (FALSE, 2);

  gtk_container_add (GTK_CONTAINER (window), vbox);
  gtk_box_pack_start (GTK_BOX (vbox), scroller, TRUE, TRUE, 2);
  gtk_container_add (GTK_CONTAINER (scroller), canvas);

  frame = gtk_frame_new ("Text");
  text = gtk_entry_new ();
  gtk_entry_set_text(GTK_ENTRY(text), "Hello World! This is a really long string to test out the ellipsis stuff.");
  gtk_container_add (GTK_CONTAINER (frame), text);
  gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
  
  frame = gtk_frame_new ("Font");
  font = gtk_entry_new ();
  gtk_entry_set_text(GTK_ENTRY(font), "fixed");
  gtk_container_add (GTK_CONTAINER (frame), font);
  gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);

  rect = gnome_canvas_item_new( gnome_canvas_root( GNOME_CANVAS( canvas ) ),
                gnome_canvas_rect_get_type(),
                "x1", (double) 0,
                "y1", (double) 0,
                "x2", (double) 100,
                "y2", (double) 100,
                "fill_color", "white",
                NULL );

  item = gnome_canvas_item_new (gnome_canvas_root (GNOME_CANVAS (canvas)),
                e_text_get_type (),
                "text", "Hello World! This is a really long string to test out the ellipsis stuff.",
                "font", "fixed",
                "fill_color", "black",
                "anchor", GTK_ANCHOR_NW,
                "clip", TRUE,
                "use_ellipsis", TRUE,
                "editable", TRUE,
                "line_wrap", TRUE,
                "max_lines", 2,
                "width", 150.0,
                NULL);

  g_signal_connect (text, "activate",
            G_CALLBACK (change_text_cb), item);
  g_signal_connect (font, "activate",
            G_CALLBACK (change_font_cb), item);

  g_signal_connect (canvas , "size_allocate",
            G_CALLBACK (allocate_callback),
            item );
  g_signal_connect (canvas , "reflow",
            G_CALLBACK (reflow),
            item );
  gnome_canvas_set_scroll_region (GNOME_CANVAS (canvas), 0.0, 0.0, 400.0, 400.0);
  gtk_widget_show_all (window);
  gtk_main ();

  return 0;
}