aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaTest/AppController.mm
diff options
context:
space:
mode:
authornyamatongwe <nyamatongwe@gmail.com>2013-05-02 09:46:17 +1000
committernyamatongwe <nyamatongwe@gmail.com>2013-05-02 09:46:17 +1000
commit689638d1e56d14d052fbb48048e03b8c361e5a67 (patch)
treeedd2cba36f3065aa7c45863f209f663ae31ef702 /cocoa/ScintillaTest/AppController.mm
parentfeeb0152926363ab76b13d850b47528f879b864d (diff)
downloadscintilla-mirror-689638d1e56d14d052fbb48048e03b8c361e5a67.tar.gz
Feature: [feature-requests:#988]. Cocoa support for font quality.
From Mark Yen.
Diffstat (limited to 'cocoa/ScintillaTest/AppController.mm')
-rw-r--r--cocoa/ScintillaTest/AppController.mm5
1 files changed, 5 insertions, 0 deletions
diff --git a/cocoa/ScintillaTest/AppController.mm b/cocoa/ScintillaTest/AppController.mm
index c28974109..168a67681 100644
--- a/cocoa/ScintillaTest/AppController.mm
+++ b/cocoa/ScintillaTest/AppController.mm
@@ -271,6 +271,11 @@ static const char * box_xpm[] = {
[self showAutocompletion];
}
+-(IBAction) setFontQuality: (id) sender
+{
+ [ScintillaView directCall:mEditor message:SCI_SETFONTQUALITY wParam:[sender tag] lParam:0];
+}
+
@end
//--------------------------------------------------------------------------------------------------