unit fHunSpell; (* ***************************** BEGIN LICENSE BLOCK ********************** * * Copyright (C) 2015 * Sunil Kumar Arora (digitiger@gmail.com sunil@healthsevak.com) * All Rights Reserved. * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * Alternatively, the content of this file maybe used under the terms of either * the GNU General Public License Version 2 or later (the "GPL"), or the GNU * Lesser General Public License Version 2.1 or later (the "LGPL"), in which * case the provisions of the GPL or the LGPL are applicable instead of those * above. If you wish to allow use of your version of this file only under the * terms of either the GPL or the LGPL, and not to allow others to use your * version of this file under the terms of the MPL, indicate your division by * deleting the provisions above and replace them with the notice and other * provisions required by the GPL or LGPL. If you do not delete the provisions * above, a recipient may use your version of this file under the terms of any * one of the MPL, the GPL or the LGPL. * * *********************** END LICENSE BLOCK *********************************) interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ComCtrls, RichEdit, Buttons, ExtCtrls, ShellAPI, skaSpellCheck, VA508AccessibilityManager, fBase508Form; type TfrmHunSpell = class(TfrmBase508Form) lblDictionary: TLabel; btnClose: TButton; OpenDialog1: TOpenDialog; SpellCheck1: TskaHunSpellChecker; Edit1: TEdit; btnSelectDict: TBitBtn; lblOpenMedURL: TLabel; lblDictionariesURL: TLabel; RichEdit1: TRichEdit; pnlMisSpelled: TPanel; Label1: TLabel; lstSuggestions: TListBox; Label4: TLabel; Edit2: TEdit; btnReplaceWith: TButton; btnChangeAll: TButton; btnChange: TButton; btnAddToDictionary: TButton; btnIgnoreAll: TButton; btnIgnoreOnce: TButton; btnCancel: TButton; btnAbout: TButton; pnlAbout: TPanel; Button1: TButton; btnUndo: TButton; procedure FormCreate(Sender: TObject); procedure btnIgnoreOnceClick(Sender: TObject); procedure btnIgnoreAllClick(Sender: TObject); procedure btnChangeClick(Sender: TObject); procedure btnChangeAllClick(Sender: TObject); procedure btnCloseClick(Sender: TObject); procedure FormActivate(Sender: TObject); procedure btnSelectDictClick(Sender: TObject); procedure Edit1Enter(Sender: TObject); procedure btnReplaceWithClick(Sender: TObject); procedure btnAddToDictionaryClick(Sender: TObject); procedure FormShow(Sender: TObject); procedure FormClose(Sender: TObject; var Action: TCloseAction); procedure btnCancelClick(Sender: TObject); procedure lblOpenMedURLClick(Sender: TObject); procedure btnAboutClick(Sender: TObject); procedure Button1Click(Sender: TObject); procedure btnUndoClick(Sender: TObject); private { Private declarations } NoEngineOpted: Boolean; FSourceControl: TCustomMemo; WaitForUser: Boolean; procedure GoToURL(const aURL: String); public { Public declarations } Showhighlight:boolean; highlightcolor:TColor; HighLightList:TStringlist; OldRichEditWndProc: {integer}pointer; PRichEditWndProc:pointer; class function DoHunSpellCheck(AnEditControl: TCustomMemo): TModalResult; static; end; var frmHunSpell: TfrmHunSpell; implementation {$R *.DFM} uses uSpell, VAUtils; class function TfrmHunSpell.DoHunSpellCheck(AnEditControl: TCustomMemo): TModalResult; var frm: TfrmHunSpell; begin Result := mrCancel; frm:= TfrmHunSpell.create(Application); try frm.RichEdit1.Text:= AnEditControl.Text; frm.FSourceControl := AnEditControl; Result := frm.ShowModal; finally frm.Free; end; end; {************ HighLight ***********888} procedure TfrmHunSpell.FormShow(Sender: TObject); begin if SpellCheck1.SpellCheckState = ssNotStarted then SpellCheck1.CheckSpelling; try if lstSuggestions.Count > 0 then btnChange.SetFocus; except end; end; procedure TfrmHunSpell.GoToURL(const aURL: String); begin if length(trim(aURL)) > 4 then ShellExecute(Handle, 'open', PChar(aURL), '', '', SW_NORMAL); end; procedure TfrmHunSpell.lblOpenMedURLClick(Sender: TObject); begin inherited; GoToURL(TLabel(sender).Caption); end; {************* FormCreate **********} procedure TfrmHunSpell.btnAboutClick(Sender: TObject); begin inherited; pnlAbout.Show; pnlAbout.BringToFront; end; procedure TfrmHunSpell.btnAddToDictionaryClick(Sender: TObject); begin SpellCheck1.AddCustomWord; end; procedure TfrmHunSpell.btnReplaceWithClick(Sender: TObject); begin SpellCheck1.CorrectWithMyWord; end; procedure TfrmHunSpell.btnCancelClick(Sender: TObject); begin //popup 508 compliant confirmation/warning box if isModified if SpellCheck1.AbortSpellCheck(False) then begin Close; ModalResult := mrCancel; end; end; procedure TfrmHunSpell.btnChangeAllClick(Sender: TObject); begin SpellCheck1.ChangeAll; end; procedure TfrmHunSpell.btnChangeClick(Sender: TObject); begin SpellCheck1.Change; end; procedure TfrmHunSpell.btnCloseClick(Sender: TObject); begin close; end; procedure TfrmHunSpell.btnIgnoreAllClick(Sender: TObject); begin SpellCheck1.IgnoreAll; end; procedure TfrmHunSpell.btnIgnoreOnceClick(Sender: TObject); begin SpellCheck1.IgnoreOnce; end; procedure TfrmHunSpell.btnSelectDictClick(Sender: TObject); var aff: String; begin if OpenDialog1.Execute then begin if SpellCheck1.DictionaryFileName = OpenDialog1.FileName then exit; aff := ChangeFileExt(OpenDialog1.FileName, '.aff'); if not FileExists(aff) then begin ShowMessage('Correspong AFF file named "'+ aff + '" not found!' + #13 + ' Specify dictionary file whose *.aff is also present in same directory.'); OpenDialog1.FileName := ''; btnSelectDictClick(self); end else begin if SpellCheck1.SpellCheckState = ssChecking then SpellCheck1.AbortSpellCheck(False); Edit1.Text := OpenDialog1.FileName; SpellCheck1.DictionaryFileName := OpenDialog1.FileName; SpellCheck1.AffixFileName := aff; SpellCheck1.Open; WaitForUser := False; SpellCheck1.CheckSpelling; end; end; end; procedure TfrmHunSpell.btnUndoClick(Sender: TObject); begin inherited; SpellCheck1.Undo; end; procedure TfrmHunSpell.Button1Click(Sender: TObject); begin inherited; pnlAbout.hide; end; procedure TfrmHunSpell.Edit1Enter(Sender: TObject); begin btnSelectDict.SetFocus; end; procedure TfrmHunSpell.FormActivate(Sender: TObject); begin if ( not SpellCheck1.Active) and (not NoEngineOpted) then begin btnSelectDictClick(self); NoEngineOpted := True; end; end; procedure TfrmHunSpell.FormClose(Sender: TObject; var Action: TCloseAction); begin if SpellCheck1.SpellCheckState = ssCompleted then begin ShowMsg(TX_SPELL_COMPLETE, TShow508MessageIcon(1), smbOK) ; if Assigned(FSourceControl) then FSourceControl.Text := RichEdit1.Text; end else ShowMsg(TX_SPELL_CANCELLED + CRLF + TX_NO_CORRECTIONS,TShow508MessageIcon(1), smbOK) ; end; procedure TfrmHunSpell.FormCreate(Sender: TObject); begin if FileExists(ExtractFilePath(Application.ExeName)+'\dict\en-US-OpenMedSpel.dic') and FileExists(ExtractFilePath(Application.ExeName)+'\dict\en-US-OpenMedSpel.aff') then begin SpellCheck1.AffixFileName := ExtractFilePath(Application.ExeName)+'\dict\en-US-OpenMedSpel.aff'; SpellCheck1.DictionaryFileName := ExtractFilePath(Application.ExeName)+'\dict\en-US-OpenMedSpel.dic'; Edit1.Text := SpellCheck1.DictionaryFileName; SpellCheck1.Active := True; end else Edit1.Text := 'Dictionary File for SpellCheck Engine not found!'; SpellCheck1.SourceTextControl := RichEdit1; SpellCheck1.SuggestionList := lstSuggestions; SpellCheck1.MisSpeltWord := Edit2; SpellCheck1.btnClose := btnClose; end; end.