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 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
/*
* java-gnome, a UI library for writing GTK and GNOME programs from Java!
*
* Copyright © 2009-2011 Operational Dynamics Consulting, Pty Ltd and Others
*
* 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 sourceview;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import org.gnome.gdk.Event;
import org.gnome.gtk.Gtk;
import org.gnome.gtk.PolicyType;
import org.gnome.gtk.ScrolledWindow;
import org.gnome.gtk.Stock;
import org.gnome.gtk.TextBuffer;
import org.gnome.gtk.ToolButton;
import org.gnome.gtk.Toolbar;
import org.gnome.gtk.VBox;
import org.gnome.gtk.Widget;
import org.gnome.gtk.Window;
import org.gnome.pango.FontDescription;
import org.gnome.sourceview.Language;
import org.gnome.sourceview.LanguageManager;
import org.gnome.sourceview.SourceBuffer;
import org.gnome.sourceview.SourceView;
/**
* A simple text editor demonstrating the GtkSourceView API.
*
* @author Stefan Schweizer
*/
public class ExampleEditor
{
private final SourceView view;
private final SourceBuffer buffer;
private final ToolButton buttonUndo;
private final ToolButton buttonRedo;
private ExampleEditor() {
final Window w;
final VBox x;
final Toolbar toolbar;
final ScrolledWindow scroll;
final LanguageManager manager;
final Language lang;
final FontDescription desc;
w = new Window();
w.setTitle("java-gnome editor");
w.setDefaultSize(550, 600);
w.connect(new Window.DeleteEvent() {
public boolean onDeleteEvent(Widget source, Event event) {
Gtk.mainQuit();
return false;
}
});
x = new VBox(false, 3);
w.add(x);
/*
* Create a toolbar with buttons for undo and redo.
*/
toolbar = new Toolbar();
buttonUndo = new ToolButton(Stock.UNDO);
buttonRedo = new ToolButton(Stock.REDO);
toolbar.add(buttonUndo);
toolbar.add(buttonRedo);
x.packStart(toolbar, false, false, 0);
/*
* Create the SourceBuffer and SourceView. Setup syntax highlighting
* and configure the view to meet our coding standards.
*/
buffer = new SourceBuffer();
manager = LanguageManager.getDefault();
lang = manager.getLanguage("java");
buffer.setLanguage(lang);
view = new SourceView(buffer);
view.setShowLineNumbers(true);
view.setHighlightCurrentLine(true);
view.setShowRightMargin(true);
view.setRightMarginPosition(105);
view.setTabWidth(4);
view.setInsertSpacesInsteadOfTabs(true);
view.setAutoIndent(true);
desc = new FontDescription("Deja Vu Sans Mono, 11");
view.overrideFont(desc);
scroll = new ScrolledWindow();
scroll.setPolicy(PolicyType.AUTOMATIC, PolicyType.ALWAYS);
scroll.add(view);
x.add(scroll);
/*
* Whenever the buffer is changed, recheck if there are actions that
* can be undone or redone. Update the sensivity of the buttons
* accordingly.
*/
buffer.connect(new TextBuffer.Changed() {
public void onChanged(TextBuffer source) {
updateButtons();
}
});
/*
* Connect handlers for undo and redo buttons. It is important to
* check if there is something to undo first to prevent a Gtk
* exception.
*/
buttonUndo.connect(new ToolButton.Clicked() {
public void onClicked(ToolButton source) {
if (buffer.canUndo()) {
buffer.undo();
}
updateButtons();
}
});
buttonRedo.connect(new ToolButton.Clicked() {
public void onClicked(ToolButton source) {
if (buffer.canRedo()) {
buffer.redo();
}
updateButtons();
}
});
w.showAll();
/*
* Load the source file into the editor. The user should not be able
* to undo that, that is why the call to setText() is marked as an
* undoable action.
*/
buffer.beginNotUndoableAction();
buffer.setText(readFile("doc/examples/sourceview/ExampleEditor.java"));
buffer.endNotUndoableAction();
/*
* Move the cursor to the start of the file.
*/
buffer.placeCursor(buffer.getIter(0));
view.grabFocus();
}
private void updateButtons() {
buttonUndo.setSensitive(buffer.canUndo());
buttonRedo.setSensitive(buffer.canRedo());
}
private String readFile(String filename) {
final StringBuilder content;
BufferedReader reader = null;
content = new StringBuilder();
try {
reader = new BufferedReader(new FileReader(filename));
for (int c = reader.read(); c != -1; c = reader.read()) {
content.append((char) c);
}
} catch (IOException ioe) {
content.append(ioe.getMessage());
} finally {
try {
if (reader != null) {
reader.close();
}
} catch (IOException e) {
}
}
return content.toString();
}
public static void main(String[] args) {
Gtk.init(args);
new ExampleEditor();
Gtk.main();
}
}
|