全然更新しないブログ
HSPメモ帳
Scintilla
関連
- Scintilla 公式
- A free source code editing component for Win32, GTK, and OS X
ライセンス
License
License for Scintilla and SciTE Copyright 1998-2002 by Neil HodgsonAll Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
準備
- SciLexer.dll
- Download Scintilla and SciTEから、
SciTEをダウンロードする。(例 full 32-bit download)
現状、HSPは64ビットをフルサポートしていないので32-bitを使用してください。解凍して、SciLexer.dllを検索パスにコピーする。
Scintilla Edit コントロールの作成
上記画像は、右クリックでのメニューも表示させています。
エラーがなければ、Scintillaコントロールが作成されて、文字を入力できます。
デフォルト状態では、文字が小さかったので、次はフォントの変更をしてみます。
#include "user32.as" #include "kernel32.as" screen 0, 300, 200 title "Scintilla" LoadLibrary "SciLexer.dll" dllSciLexer = stat if ( dllSciLexer == 0 ){ dialog "Err SciLexer.dll", , "終了" : end } st = 0x52010000 : w = ginfo_winx : h = ginfo_winy CreateWindowEx 0, "Scintilla", "Scintilla", st, 0, 0, w, h, hwnd, 0x8000, hinstance, 0 hEdit = stat SetFocus hEdit stop
コメント ( 0 ) | Trackback ( 0 )
« mod_WebView2_... | WebView2 1.0.... » |
コメント |
コメントはありません。 |
コメントを投稿する |