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
|
/*
* java-gnome, a UI library for writing GTK and GNOME programs from Java!
*
* Copyright © 2009-2011 Operational Dynamics Consulting, Pty Ltd
*
* 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/.
*/
import org.freedesktop.cairo.Context;
import org.gnome.gdk.Event;
import org.gnome.gdk.EventKey;
import org.gnome.gtk.DrawingArea;
import org.gnome.gtk.Gtk;
import org.gnome.gtk.InputMethod;
import org.gnome.gtk.SimpleInputMethod;
import org.gnome.gtk.Widget;
import org.gnome.gtk.Window;
import org.gnome.pango.FontDescription;
import org.gnome.pango.Layout;
/**
* Experiment with GTK's input method system.
*
* @author AndrewCowie
*/
public class ManualInput
{
public static void main(String[] args) {
final Window w;
final DrawingArea d;
final InputMethod im;
final StringBuilder buf;
Gtk.init(args);
w = new Window();
w.setTitle("Text editor");
w.setDefaultSize(200, 100);
d = new DrawingArea();
d.setCanFocus(true);
w.add(d);
im = new SimpleInputMethod();
im.setUsePreedit(true);
buf = new StringBuilder("Hello");
d.connect(new Widget.Draw() {
public boolean onDraw(Widget source, Context cr) {
final Layout layout;
final FontDescription desc;
layout = new Layout(cr);
desc = new FontDescription("DejaVu Serif, Book 12");
layout.setFontDescription(desc);
layout.setText(buf.toString());
source.setSizeRequest(layout.getPixelWidth(), layout.getPixelHeight());
cr.showLayout(layout);
return false;
}
});
d.connect(new Widget.KeyPressEvent() {
public boolean onKeyPressEvent(Widget source, EventKey event) {
if (im.filterKeypress(event)) {
return true;
}
return false;
}
});
d.connect(new Widget.KeyReleaseEvent() {
public boolean onKeyReleaseEvent(Widget source, EventKey event) {
if (im.filterKeypress(event)) {
return true;
}
return false;
}
});
im.connect(new InputMethod.Commit() {
public void onCommit(InputMethod source, String str) {
buf.append(str);
d.queueDraw();
}
});
w.connect(new Window.DeleteEvent() {
public boolean onDeleteEvent(Widget source, Event event) {
Gtk.mainQuit();
return false;
}
});
w.showAll();
Gtk.main();
}
}
|