" - Icons from <a href=\"http://en.wikipedia.org/wiki/KDE4\">KDE4</a> project (<a href=\"http://www.kde.org/\">http://www.kde.org</a>)</p>" +
"<p style=\"white-space:nowrap\">QEdit is <a href=\"http://heresylabs.org/\">Heresylabs</a> product. " +
"See <a href=\"http://heresylabs.googlecode.com/\">http://heresylabs.googlecode.com</a> for more information.</p>"));
}
@ActionAnnotation(text = "Cu&t", standardKey = StandardKey.Cut, statusTip = "Cut the current selection's contents to the clipboard", icon = "edit-cut.png")
private void cut() {
textEdit.cut();
}
@ActionAnnotation(text = "&Copy", standardKey = StandardKey.Copy, statusTip = "Copy the current selection's contents to the clipboard", icon = "edit-copy.png")
private void copy() {
textEdit.copy();
}
@ActionAnnotation(text = "&Paste", standardKey = StandardKey.Paste, statusTip = "Paste the clipboard's contents into the current selection", icon = "edit-paste.png")