[gtk+/rendering-cleanup: 102/124] gtk-demo: Adapt textview example for stipple removal
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/rendering-cleanup: 102/124] gtk-demo: Adapt textview example for stipple removal
- Date: Thu, 22 Jul 2010 02:07:13 +0000 (UTC)
commit 384c296bbfce98afb6d08d973b24d726a150aded
Author: Benjamin Otte <otte redhat com>
Date: Wed Jul 21 03:16:29 2010 +0200
gtk-demo: Adapt textview example for stipple removal
demos/gtk-demo/textview.c | 24 +-----------------------
1 files changed, 1 insertions(+), 23 deletions(-)
---
diff --git a/demos/gtk-demo/textview.c b/demos/gtk-demo/textview.c
index f17f880..ad42aed 100644
--- a/demos/gtk-demo/textview.c
+++ b/demos/gtk-demo/textview.c
@@ -23,8 +23,6 @@ static char gray50_bits[] = {
static void
create_tags (GtkTextBuffer *buffer)
{
- GdkBitmap *stipple;
-
/* Create a bunch of tags. Note that it's also possible to
* create tags with gtk_text_tag_new() then add them to the
* tag table for the buffer, gtk_text_buffer_create_tag() is
@@ -74,18 +72,6 @@ create_tags (GtkTextBuffer *buffer)
gtk_text_buffer_create_tag (buffer, "red_background",
"background", "red", NULL);
- stipple = gdk_bitmap_create_from_data (NULL,
- gray50_bits, gray50_width,
- gray50_height);
-
- gtk_text_buffer_create_tag (buffer, "background_stipple",
- "background_stipple", stipple, NULL);
-
- gtk_text_buffer_create_tag (buffer, "foreground_stipple",
- "foreground_stipple", stipple, NULL);
-
- g_object_unref (stipple);
-
gtk_text_buffer_create_tag (buffer, "big_gap_before_line",
"pixels_above_lines", 30, NULL);
@@ -227,17 +213,9 @@ insert_text (GtkTextBuffer *buffer)
"red_background", NULL);
gtk_text_buffer_insert (buffer, &iter, " or even ", -1);
gtk_text_buffer_insert_with_tags_by_name (buffer, &iter,
- "a stippled red background", -1,
- "red_background",
- "background_stipple",
- NULL);
-
- gtk_text_buffer_insert (buffer, &iter, " or ", -1);
- gtk_text_buffer_insert_with_tags_by_name (buffer, &iter,
- "a stippled blue foreground on solid red background", -1,
+ "a blue foreground on red background", -1,
"blue_foreground",
"red_background",
- "foreground_stipple",
NULL);
gtk_text_buffer_insert (buffer, &iter, " (select that to read it) can be used.\n\n", -1);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]