aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-04-05 09:36:51 +0800
committerChris Lahey <clahey@src.gnome.org>2000-04-05 09:36:51 +0800
commit9ca0010b6de60b1eec18de4fcae499c6c82630b3 (patch)
tree9ecdbb2cda3b34174bae6ab8c76dd00cf1b94dfb
parent0d327d6fc33813fcc06ae52b10cb74c7b0421acd (diff)
downloadgsoc2013-evolution-9ca0010b6de60b1eec18de4fcae499c6c82630b3.tar
gsoc2013-evolution-9ca0010b6de60b1eec18de4fcae499c6c82630b3.tar.gz
gsoc2013-evolution-9ca0010b6de60b1eec18de4fcae499c6c82630b3.tar.bz2
gsoc2013-evolution-9ca0010b6de60b1eec18de4fcae499c6c82630b3.tar.lz
gsoc2013-evolution-9ca0010b6de60b1eec18de4fcae499c6c82630b3.tar.xz
gsoc2013-evolution-9ca0010b6de60b1eec18de4fcae499c6c82630b3.tar.zst
gsoc2013-evolution-9ca0010b6de60b1eec18de4fcae499c6c82630b3.zip
Got rid of some runtime errors. Changed to "fixed" font so that it will
2000-04-04 Christopher James Lahey <clahey@helixcode.com> * widgets/e-text/e-text-test.c: Got rid of some runtime errors. Changed to "fixed" font so that it will work on everyone's machine. Added a white background rectangle. Made resizing the window resize the contained text item. Changed to using affines (e_canvas_item_move_absolute) instead of "x" and "y" attributes. Set the text in the entries so that they match the original values of the displayed text object. svn path=/trunk/; revision=2292
-rw-r--r--ChangeLog10
-rw-r--r--widgets/e-text/e-text-test.c63
-rw-r--r--widgets/text/e-text-test.c63
3 files changed, 122 insertions, 14 deletions
diff --git a/ChangeLog b/ChangeLog
index 324b91fe68..2699334ebe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2000-04-04 Christopher James Lahey <clahey@helixcode.com>
+ * widgets/e-text/e-text-test.c: Got rid of some runtime errors.
+ Changed to "fixed" font so that it will work on everyone's
+ machine. Added a white background rectangle. Made resizing the
+ window resize the contained text item. Changed to using affines
+ (e_canvas_item_move_absolute) instead of "x" and "y" attributes.
+ Set the text in the entries so that they match the original values
+ of the displayed text object.
+
+2000-04-04 Christopher James Lahey <clahey@helixcode.com>
+
* widgets/e-minicard/e-minicard.c: Fixed some referencing and
lifetime issues.
diff --git a/widgets/e-text/e-text-test.c b/widgets/e-text/e-text-test.c
index 41a24db6e8..12a31cce7e 100644
--- a/widgets/e-text/e-text-test.c
+++ b/widgets/e-text/e-text-test.c
@@ -7,6 +7,40 @@
#include "e-text.h"
#include <gnome.h>
+#include "e-util/e-canvas.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 );
+ gtk_object_get(GTK_OBJECT(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;
+ gtk_object_get(GTK_OBJECT(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 (GtkWidget *widget,
@@ -55,7 +89,7 @@ main (int argc,
gtk_widget_push_visual (gdk_rgb_get_visual ());
gtk_widget_push_colormap (gdk_rgb_get_cmap ());
- canvas = gnome_canvas_new ();
+ canvas = e_canvas_new ();
gtk_widget_pop_visual ();
gtk_widget_pop_colormap ();
scroller = gtk_scrolled_window_new (NULL, NULL);
@@ -67,28 +101,37 @@ main (int argc,
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.",
- "x", 10.0,
- "y", 10.0,
- "font", "-adobe-helvetica-medium-r-normal--12-*-72-72-p-*-iso8859-1",
+ "font", "fixed",
"fill_color", "black",
"anchor", GTK_ANCHOR_NW,
+ "clip", TRUE,
"use_ellipsis", TRUE,
- "ellipsis", "...",
"editable", TRUE,
"line_wrap", TRUE,
- "max_lines", 3,
- "clip_width", 150.0,
+ "max_lines", 2,
+ "width", 150.0,
NULL);
gtk_signal_connect (GTK_OBJECT (text), "activate",
@@ -96,6 +139,12 @@ main (int argc,
gtk_signal_connect (GTK_OBJECT (font), "activate",
GTK_SIGNAL_FUNC (change_font_cb), item);
+ gtk_signal_connect( GTK_OBJECT( canvas ), "size_allocate",
+ GTK_SIGNAL_FUNC( allocate_callback ),
+ item );
+ gtk_signal_connect( GTK_OBJECT( canvas ), "reflow",
+ GTK_SIGNAL_FUNC( 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 ();
diff --git a/widgets/text/e-text-test.c b/widgets/text/e-text-test.c
index 41a24db6e8..12a31cce7e 100644
--- a/widgets/text/e-text-test.c
+++ b/widgets/text/e-text-test.c
@@ -7,6 +7,40 @@
#include "e-text.h"
#include <gnome.h>
+#include "e-util/e-canvas.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 );
+ gtk_object_get(GTK_OBJECT(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;
+ gtk_object_get(GTK_OBJECT(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 (GtkWidget *widget,
@@ -55,7 +89,7 @@ main (int argc,
gtk_widget_push_visual (gdk_rgb_get_visual ());
gtk_widget_push_colormap (gdk_rgb_get_cmap ());
- canvas = gnome_canvas_new ();
+ canvas = e_canvas_new ();
gtk_widget_pop_visual ();
gtk_widget_pop_colormap ();
scroller = gtk_scrolled_window_new (NULL, NULL);
@@ -67,28 +101,37 @@ main (int argc,
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.",
- "x", 10.0,
- "y", 10.0,
- "font", "-adobe-helvetica-medium-r-normal--12-*-72-72-p-*-iso8859-1",
+ "font", "fixed",
"fill_color", "black",
"anchor", GTK_ANCHOR_NW,
+ "clip", TRUE,
"use_ellipsis", TRUE,
- "ellipsis", "...",
"editable", TRUE,
"line_wrap", TRUE,
- "max_lines", 3,
- "clip_width", 150.0,
+ "max_lines", 2,
+ "width", 150.0,
NULL);
gtk_signal_connect (GTK_OBJECT (text), "activate",
@@ -96,6 +139,12 @@ main (int argc,
gtk_signal_connect (GTK_OBJECT (font), "activate",
GTK_SIGNAL_FUNC (change_font_cb), item);
+ gtk_signal_connect( GTK_OBJECT( canvas ), "size_allocate",
+ GTK_SIGNAL_FUNC( allocate_callback ),
+ item );
+ gtk_signal_connect( GTK_OBJECT( canvas ), "reflow",
+ GTK_SIGNAL_FUNC( 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 ();