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 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
/*
* java-gnome, a UI library for writing GTK and GNOME programs from Java!
*
* Copyright © 2007-2010 Operational Dynamics Consulting, Pty Ltd
* Copyright © 2008 Vreixo Formoso
*
* The code in this file, and the program it is a part of, is made available
* to you by its authors as open source software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License version
* 2 ("GPL") as published by the Free Software Foundation.
*
* This program 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 GPL for more details.
*
* You should have received a copy of the GPL along with this program. If not,
* see http://www.gnu.org/licenses/. The authors of this program may be
* contacted through http://java-gnome.sourceforge.net/.
*/
package org.gnome.pango;
import org.freedesktop.cairo.Context;
import org.freedesktop.cairo.Format;
import org.freedesktop.cairo.ImageSurface;
import org.freedesktop.cairo.Surface;
import org.gnome.gdk.Event;
import org.gnome.gdk.EventExpose;
import org.gnome.gdk.EventFocus;
import org.gnome.gtk.Gtk;
import org.gnome.gtk.Image;
import org.gnome.gtk.GraphicalTestCase;
import org.gnome.gtk.Widget;
import org.gnome.gtk.Window;
/**
* Evaluate problems relating to memory management of Pango Attribute structs.
*
* @author Vreixo Formoso
* @author Andrew Cowie
*/
public class ValidatePangoAttributeUsage extends GraphicalTestCase
{
private static Layout draw(Context cr) {
final Layout layout;
FontDescription desc;
final AttributeList list;
Attribute attr;
/*
* ...that we use to create a Pango Layout. The Context represents the
* backend where the text will be actually drawn. The Layout
* represents the text and its format attributes.
*/
layout = new Layout(cr);
/*
* You can set the default font description.
*/
desc = new FontDescription("DejaVu Serif, 18");
layout.setFontDescription(desc);
/*
* Build up the text and its formatting
*/
list = new AttributeList();
layout.setText("H€lloworldPeace武道");
attr = new StyleAttribute(Style.ITALIC);
attr.setIndices(0, 5);
list.insert(attr);
desc = new FontDescription();
desc.setWeight(Weight.BOLD);
attr = new FontDescriptionAttribute(desc);
attr.setIndices(5, 10);
list.insert(attr);
attr = new ForegroundColorAttribute(0.9, 0.1, 0.2);
attr.setIndices(10, 5);
list.insert(attr);
attr = new StyleAttribute(Style.NORMAL);
attr.setIndices(10, 5);
list.insert(attr);
attr = new BackgroundColorAttribute(1.0, 1.0, 0.0);
attr.setIndices(10, 5);
list.insert(attr);
attr = new WeightAttribute(Weight.NORMAL);
attr.setIndices(11, 4);
list.insert(attr);
attr = new VariantAttribute(Variant.SMALL_CAPS);
attr.setIndices(11, 4);
list.insert(attr);
attr = new ForegroundColorAttribute(0.0, 0.0, 0.0);
attr.setIndices(15, 2);
list.insert(attr);
attr = new FallbackAttribute(false);
attr.setIndices(15, 2);
list.insert(attr);
attr = new ForegroundColorAttribute(0.1, 0.5, 0.7);
list.insert(attr);
layout.setAttributes(list);
/*
* You can set the alignment of the Layout. Note that you should set
* its width too.
*/
layout.setWidth(290.0);
layout.setAlignment(Alignment.CENTER);
/*
* And finally, we draw the text!
*/
cr.showLayout(layout);
return layout;
}
public static void main(String[] args) {
final Window w;
final Image i;
Gtk.init(args);
w = new Window();
w.setDefaultSize(300, 70);
i = new Image();
w.add(i);
w.showAll();
i.connect(new Widget.ExposeEvent() {
public boolean onExposeEvent(Widget source, EventExpose event) {
final Context cr;
/*
* We need a Cairo context...
*/
cr = new Context(source.getWindow());
draw(cr);
return false;
}
});
/*
* This allows us to test the memory management problem where we were
* crashing the VM due to our not being aware that AttributeList's
* insert() steals the ownership of an Attribute.
*/
w.connect(new Widget.FocusOutEvent() {
public boolean onFocusOutEvent(Widget source, EventFocus event) {
System.gc();
return false;
}
});
w.connect(new Window.DeleteEvent() {
public boolean onDeleteEvent(Widget source, Event event) {
Gtk.mainQuit();
return false;
}
});
Gtk.main();
}
public final void testPangoAttributeOwnership() throws InterruptedException {
final Surface surface;
final Context cr;
Layout layout;
System.gc();
Thread.sleep(50);
surface = new ImageSurface(Format.ARGB32, 150, 150);
cr = new Context(surface);
layout = draw(cr);
assertNotNull(PangoLayout.getAttributes(layout));
layout = null;
System.gc();
Thread.sleep(50);
}
}
|