-
Notifications
You must be signed in to change notification settings - Fork 0
/
DictionaryDlg.cpp
1092 lines (880 loc) · 26.1 KB
/
DictionaryDlg.cpp
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*******************************************************************************
Copyright (c) 1999-2010 by Text Analysis International, Inc.
All rights reserved.
*******************************************************************************/
// DictionaryDlg.cpp : implementation file
//
#include "stdafx.h"
#include "Utils.h"
#include "kb.h"
#include "MainFrm.h"
#include "DictionaryDlg.h"
extern CG *cg;
extern bool kbDirty;
extern CVisualTextApp theApp;
_TCHAR *attrDisplayStrs [] = {
_T("All"),
_T("With"),
_T("Without"),
_T("xxyyzz")
};
_TCHAR *findStrs [] = {
_T("Find"),
_T("Find Off"),
_T("Narrow"),
_T("xxyyzz")
};
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDictionaryDlg dialog
CDictionaryDlg::CDictionaryDlg(CWnd* pParent /*=NULL*/)
: CDialog(CDictionaryDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CDictionaryDlg)
m_strWord = _T("");
m_strCount = _T("");
m_strAttrsDisplay = _T("");
m_boolAttributes = false;
m_strFindType = _T("");
//}}AFX_DATA_INIT
}
void CDictionaryDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDictionaryDlg)
DDX_Control(pDX, IDC_LIST, m_listCtrlList);
DDX_Control(pDX, IDC_UP, m_buttonUp);
DDX_Control(pDX, IDC_DICTIONARY_LIST, m_listCtrlDictionary);
DDX_Control(pDX, IDC_ATTRIBUTES, m_listCtrlAttributes);
DDX_Text(pDX, IDC_WORD, m_strWord);
DDX_Text(pDX, IDC_COUNT, m_strCount);
DDX_CBString(pDX, IDC_ATTRS_DISPLAY, m_strAttrsDisplay);
DDX_Check(pDX, IDC_ATTRIBUTE_TOGGLE, m_boolAttributes);
DDX_CBString(pDX, IDC_FIND_TYPE, m_strFindType);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDictionaryDlg, CDialog)
//{{AFX_MSG_MAP(CDictionaryDlg)
ON_NOTIFY(NM_CLICK, IDC_DICTIONARY_LIST, OnClickDictionaryList)
ON_NOTIFY(NM_DBLCLK, IDC_DICTIONARY_LIST, OnDblclkDictionaryList)
ON_BN_CLICKED(IDC_UP, OnUp)
ON_BN_CLICKED(IDC_BACK_LETTER, OnBackLetter)
ON_BN_CLICKED(IDC_BACK, OnBack)
ON_BN_CLICKED(IDC_FORWARD, OnForward)
ON_BN_CLICKED(IDC_FORWARD_LETTER, OnForwardLetter)
ON_BN_CLICKED(IDC_ADD, OnAdd)
ON_BN_CLICKED(IDC_DELETE, OnDelete)
ON_NOTIFY(NM_RCLICK, IDC_DICTIONARY_LIST, OnRclickDictionaryList)
ON_CBN_SELCHANGE(IDC_ATTRS_DISPLAY, OnAttrComboChange)
ON_COMMAND(ID_DICTIONRAYWORDS_MARKAS_NOUN_COUNT, OnDictionraywordsMarkasNounCount)
ON_COMMAND(ID_DICTIONRAYWORDS_MARKAS_NOUN_NOCOUNT, OnDictionraywordsMarkasNounNocount)
ON_COMMAND(ID_DICTIONRAYWORDS_MARKAS_NOUN_BOTH, OnDictionraywordsMarkasNounBoth)
ON_COMMAND(ID_DICTIONRAYWORDS_MARKAS_VERB_TRANSITIVE, OnDictionraywordsMarkasVerbTransitive)
ON_COMMAND(ID_DICTIONRAYWORDS_MARKAS_VERB_INTRANSITIVE, OnDictionraywordsMarkasVerbIntransitive)
ON_COMMAND(ID_DICTIONRAYWORDS_MARKAS_ADJECTIVE, OnDictionraywordsMarkasAdjective)
ON_COMMAND(ID_DICTIONRAYWORDS_MARKAS_ADVERB, OnDictionraywordsMarkasAdverb)
ON_BN_CLICKED(IDC_MOVE_TO_LIST, OnMoveToList)
ON_BN_CLICKED(IDC_CLEAR_LIST, OnClearList)
ON_BN_CLICKED(IDC_CLEAR_ALL, OnClearAll)
ON_BN_CLICKED(IDC_ATTRIBUTE_TOGGLE, OnAttributeToggle)
ON_BN_CLICKED(IDC_ADD_LIST, OnAddList)
ON_NOTIFY(NM_CLICK, IDC_LIST, OnClickList)
ON_EN_CHANGE(IDC_WORD, OnChangeWord)
ON_CBN_SELCHANGE(IDC_FIND_TYPE, OnSelchangeFindType)
ON_BN_CLICKED(IDC_ADD_ALL, OnAddAll)
ON_BN_CLICKED(IDC_FILE, OnFile)
ON_NOTIFY(NM_CUSTOMDRAW, IDC_DICTIONARY_LIST, OnCustomDictDraw)
ON_NOTIFY(NM_CUSTOMDRAW, IDC_LIST, OnCustomListDraw)
ON_BN_CLICKED(IDC_TO_DICT, OnToDict)
ON_BN_CLICKED(IDC_DELETE_WORD, OnDeleteWord)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDictionaryDlg message handlers
void CDictionaryDlg::FillDictionaryList(BOOL bDoSetRedraw) // SRP 010208
{
StartWaitCursor();
if (bDoSetRedraw) // SRP 010208
SetRedraw(false);
CONCEPT *sys = cg->findConcept(cg->findRoot(),_T("sys"));
CONCEPT *dict = cg->findConcept(sys,_T("dict"));
CONCEPT *a1 = cg->findConcept(dict,_T("a"));
CONCEPT *folder;
_TCHAR letterBuf[1001];
_tcscpy_s(letterBuf,_T("a"));
if (m_dictDisplayType == DICT_DISPLAY_LETTER) {
StringToChar(letterBuf,m_strLetter,1000);
}
else if (m_dictDisplayType == DICT_DISPLAY_LETTER_GROUP) {
StringToChar(letterBuf,m_strLetter,1000);
a1 = cg->findConcept(a1,letterBuf);
StringToChar(letterBuf,m_strLetterGroup,1000);
}
folder = cg->findConcept(a1,letterBuf);
m_listCtrlDictionary.DeleteAllItems();
m_intDictCount = 0;
FillDictionaryList(folder,0,m_intDictCount);
// UPDATE COUNT STRING
if (m_dictDisplayType == DICT_DISPLAY_ALPHABET)
m_strCount.Format(_T("%d"),m_intDictCount);
else if (m_dictDisplayType == DICT_DISPLAY_LETTER)
m_strCount.Format(_T("%s %d"),m_strLetter,m_intDictCount);
else if (m_dictDisplayType == DICT_DISPLAY_LETTER_GROUP)
m_strCount.Format(_T("%s/%s %d"),m_strLetter,m_strLetterGroup,m_intDictCount);
UpdateData(false);
if (bDoSetRedraw) { // SRP 010208
SetRedraw(true);
RedrawWindow(NULL, NULL, RDW_INVALIDATE | RDW_UPDATENOW); // SRP 010208
}
StopWaitCursor();
}
void CDictionaryDlg::FillDictionaryList(CONCEPT *startConcept, int level, int &count)
{
if (!startConcept)
return;
CString parentConceptStr = ConceptName(startConcept);
CONCEPT *concept = startConcept;
CString conceptStr;
ATTR *attrs;
int image = 0;
while (concept) {
conceptStr = ConceptName(concept);
attrs = cg->findAttrs(concept);
if (m_dictDisplayType == DICT_DISPLAY_ALPHABET && level == 0 ||
m_dictDisplayType == DICT_DISPLAY_LETTER && level == 1 ||
m_dictDisplayType == DICT_DISPLAY_LETTER_GROUP && level == 1) {
if (m_boolUpArrow ||
(m_findType == FIND_TYPE_NARROW && conceptStr.Find(m_strWord) == 0) ||
(m_findType != FIND_TYPE_NARROW &&
(m_attrDisplayType == ATTR_DISPLAY_ALL ||
(m_attrDisplayType == ATTR_DISPLAY_WITH && attrs) ||
(m_attrDisplayType == ATTR_DISPLAY_WITHOUT && !attrs)))) {
image = attrs ? 0 : 1;
m_listCtrlDictionary.InsertItem(count,conceptStr);
m_listCtrlDictionary.SetItemData(count,(DWORD)concept);
count++;
}
}
else if (cg->Down(concept) &&
((m_dictDisplayType == DICT_DISPLAY_LETTER && level == 0) ||
m_dictDisplayType == DICT_DISPLAY_LETTER_GROUP)) {
FillDictionaryList(cg->Down(concept),level+1,count);
break;
}
concept = cg->Next(concept);
}
}
BOOL CDictionaryDlg::OnInitDialog()
{
CDialog::OnInitDialog();
m_dictDisplayType = DICT_DISPLAY_ALPHABET;
m_attrDisplayType = ATTR_DISPLAY_ALL;
m_findType = FIND_TYPE_FIND_OFF;
m_intDictSelection = -1;
m_boolOrphans = false;
m_boolUpArrow = false;
// SET FOCUS ON ANALYZER NAME
CEdit *ed = (CEdit *)GetDlgItem(IDC_WORD);
ed->SetFocus();
m_comboBoxAttr = (CComboBox *)GetDlgItem(IDC_ATTRS_DISPLAY);
m_comboBoxAttr->SelectString(-1,_T("All"));
m_comboBoxFind = (CComboBox *)GetDlgItem(IDC_FIND_TYPE);
m_comboBoxFind->SelectString(-1,_T("Find Off"));
m_listCtrlAttributes.InsertColumn(0,_T("Name"),LVCFMT_LEFT,75);
m_listCtrlAttributes.InsertColumn(1,_T("Value"),LVCFMT_LEFT,300);
FillDictionaryList(false); // SRP 010208
m_boolAttributes = true;
m_bitmapButtonUp.LoadBitmap(IDB_UP);
m_buttonUp.SetBitmap(m_bitmapButtonUp);
// CREATE TEMP AREA OFR DICTIONARY LIST IN KB
CONCEPT *tmp = cg->findConcept(cg->findRoot(),_T("tmp"));
if (!tmp)
tmp = cg->makeConcept(cg->findRoot(),_T("tmp"));
m_conceptTemp = cg->findConcept(tmp,_T("dictlist"));
if (!m_conceptTemp)
m_conceptTemp = cg->makeConcept(tmp,_T("dictlist"));
UpdateData(false);
return false; // return true unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return false
}
void CDictionaryDlg::OnClickDictionaryList(NMHDR* pNMHDR, LRESULT* pResult)
{
SelectDictionaryList();
m_listCtrlAttributes.SetConcept(m_conceptSelected);
*pResult = 0;
}
void CDictionaryDlg::SelectDictionaryList()
{
POSITION pos = m_listCtrlDictionary.GetFirstSelectedItemPosition();
if (pos) {
m_intDictSelection = m_listCtrlDictionary.GetNextSelectedItem(pos);
m_strWord = m_listCtrlDictionary.GetItemText(m_intDictSelection,0);
m_conceptSelected =
(CONCEPT *)m_listCtrlDictionary.GetItemData(m_intDictSelection);
m_listCtrlAttributes.SetConcept(m_conceptSelected);
if (m_dictDisplayType == DICT_DISPLAY_ALPHABET)
m_strLetter = m_strWord;
else if (m_dictDisplayType == DICT_DISPLAY_LETTER)
m_strLetterGroup = m_strWord;
else if (m_dictDisplayType == DICT_DISPLAY_LETTER_GROUP)
FillAttributeList();
}
else {
m_intDictSelection = -1;
}
UpdateData(false);
}
void CDictionaryDlg::OnDblclkDictionaryList(NMHDR* pNMHDR, LRESULT* pResult)
{
DICT_DISPLAY_TYPE type = m_dictDisplayType;
if (m_dictDisplayType == DICT_DISPLAY_ALPHABET)
m_dictDisplayType = DICT_DISPLAY_LETTER;
else if (m_dictDisplayType == DICT_DISPLAY_LETTER)
m_dictDisplayType = DICT_DISPLAY_LETTER_GROUP;
if (type != m_dictDisplayType)
FillDictionaryList();
*pResult = 0;
}
void CDictionaryDlg::OnUp()
{
if (m_dictDisplayType == DICT_DISPLAY_LETTER_GROUP) {
m_dictDisplayType = DICT_DISPLAY_LETTER;
m_strLetterGroup = _T("");
}
else if (m_dictDisplayType == DICT_DISPLAY_LETTER) {
m_dictDisplayType = DICT_DISPLAY_ALPHABET;
m_strLetter = _T("");
}
m_boolUpArrow = true;
FillDictionaryList();
m_boolUpArrow = false;
}
void CDictionaryDlg::FillAttributeList(CONCEPT *concept)
{
if (!m_boolAttributes)
return;
SetRedraw(false);
m_listCtrlAttributes.DeleteAllItems();
SetRedraw(true);
if (!concept && (!m_conceptSelected || m_dictDisplayType != DICT_DISPLAY_LETTER_GROUP))
return;
if (!concept)
concept = m_conceptSelected;
ATTR *attrs = cg->findAttrs(concept);
ATTR *attr;
VAL *vals;
_TCHAR val[1001];
_TCHAR buff[1001];
CString attrStr;
CString valueStr;
int count = 0;
bool first;
while (attrs) {
attr = cg->popAttr(attrs);
cg->attrName(attr,buff,1000);
attrStr = buff;
if (KBIsSystemAttribute(attrStr))
continue;
m_listCtrlAttributes.InsertItem(count,attrStr);
vals = cg->attrVals(attr);
first = true;
while (vals) {
val[0] = '\0';
cg->popSval(vals,val);
valueStr = val;
if (!first)
m_listCtrlAttributes.InsertItem(count,attrStr);
m_listCtrlAttributes.SetItemText(count++,1,valueStr);
first = false;
}
}
}
void CDictionaryDlg::OnBackLetter()
{
if (m_dictDisplayType == DICT_DISPLAY_LETTER_GROUP) {
int itemPageCount = m_listCtrlDictionary.GetCountPerPage();
SelectItemPage(0,itemPageCount);
CButton *button = (CButton *)GetDlgItem(IDC_BACK_LETTER);
button->SetFocus();
}
}
void CDictionaryDlg::OnBack()
{
if (m_dictDisplayType == DICT_DISPLAY_LETTER_GROUP) {
int pageTop = m_listCtrlDictionary.GetTopIndex();
int itemPageCount = m_listCtrlDictionary.GetCountPerPage();
SelectItemPage(pageTop-itemPageCount*2-1,pageTop-itemPageCount);
}
}
void CDictionaryDlg::OnForward()
{
if (m_dictDisplayType == DICT_DISPLAY_LETTER_GROUP) {
int pageTop = m_listCtrlDictionary.GetTopIndex();
int itemPageCount = m_listCtrlDictionary.GetCountPerPage();
SelectItemPage(pageTop+itemPageCount, pageTop+itemPageCount*2-1);
}
}
void CDictionaryDlg::OnForwardLetter()
{
if (m_dictDisplayType == DICT_DISPLAY_LETTER_GROUP) {
int itemPageCount = m_listCtrlDictionary.GetCountPerPage();
int endItem = m_listCtrlDictionary.GetItemCount() - 1;
SelectItemPage(endItem-itemPageCount+1,endItem);
CButton *button = (CButton *)GetDlgItem(IDC_FORWARD_LETTER);
button->SetFocus();
}
}
void CDictionaryDlg::SelectItemPage(int startItem, int endItem)
{
m_listCtrlDictionary.SetFocus();
m_listCtrlDictionary.EnsureVisible(startItem,false);
m_listCtrlDictionary.EnsureVisible(endItem,false);
}
void CDictionaryDlg::OnAdd()
{
m_listCtrlAttributes.SetFocus();
int count = m_listCtrlAttributes.GetItemCount();
m_listCtrlAttributes.InsertItem(count,_T("unnamed"));
m_listCtrlAttributes.EditLabel(count);
kbDirty = true;
}
void CDictionaryDlg::OnDelete()
{
if (!m_conceptSelected)
return;
POSITION pos = m_listCtrlAttributes.GetFirstSelectedItemPosition();
if (pos != NULL) {
int nItem;
CString attrStr,valStr,valueStr;
_TCHAR attrBuff[1001];
_TCHAR valBuff[1001];
if (pos) {
nItem = m_listCtrlAttributes.GetNextSelectedItem(pos);
attrStr = m_listCtrlAttributes.GetItemText(nItem,0);
valStr = m_listCtrlAttributes.GetItemText(nItem,1);
CString msgStr;
msgStr.Format(_T("Delete the attribute value pair: \"%s\"?"),attrStr);
if (AfxMessageBox(msgStr,MB_YESNO) == IDYES) {
StringToChar(attrBuff,attrStr,1000);
StringToChar(valBuff,valStr,1000);
cg->rmAttrval(m_conceptSelected,attrBuff,valBuff);
kbDirty = true;
m_listCtrlAttributes.DeleteItem(nItem);
}
}
}
}
void CDictionaryDlg::OnRclickDictionaryList(NMHDR* pNMHDR, LRESULT* pResult)
{
UINT disables[100];
for (int i=0; i<100; i++)
disables[i] = 0;
CPoint point;
CRect rect;
m_listCtrlDictionary.GetItemPosition(m_intDictSelection,&point);
m_listCtrlDictionary.ClientToScreen(&point);
CString itemStr = m_listCtrlDictionary.GetItemText(m_intDictSelection,0);
point.x += m_listCtrlDictionary.GetStringWidth(itemStr) + 5;
PopupContextMenu(this,IDR_DICTIONARY_WORDS,point,disables);
*pResult = 0;
}
void CDictionaryDlg::OnAttrComboChange()
{
CString comboText;
m_comboBoxAttr->GetWindowText(comboText);
if (comboText == _T(""))
return;
ATTR_DISPLAY_TYPE newType = AttrDisplayTypeFromString(comboText);
if (newType != m_attrDisplayType) {
m_attrDisplayType = newType;
FillDictionaryList();
}
}
ATTR_DISPLAY_TYPE CDictionaryDlg::AttrDisplayTypeFromString(CString attrTypeStr)
{
int type = 0;
while (attrDisplayStrs[type] != _T("xxyyzz")) {
if (attrDisplayStrs[type] == attrTypeStr)
break;
type++;
}
return (ATTR_DISPLAY_TYPE)type;
}
CString CDictionaryDlg::AttrDisplayStringFromType(ATTR_DISPLAY_TYPE type)
{
return attrDisplayStrs[type];
}
FIND_TYPE CDictionaryDlg::FindTypeFromString(CString findTypeStr)
{
int type = 0;
while (findStrs[type] != _T("xxyyzz")) {
if (findStrs[type] == findTypeStr)
break;
type++;
}
return (FIND_TYPE)type;
}
CString CDictionaryDlg::FindStringFromType(FIND_TYPE type)
{
return findStrs[type];
}
void CDictionaryDlg::AddWordAttributeValue(_TCHAR *attrChar, _TCHAR *nounChar, bool redisplay)
{
cg->replaceVal(m_conceptSelected,attrChar,nounChar);
if (redisplay)
FillAttributeList();
}
void CDictionaryDlg::OnDictionraywordsMarkasNounCount()
{
AddWordAttributeValue(_T("pos"),_T("noun"));
AddWordAttributeValue(_T("noun"),_T("count"),true);
}
void CDictionaryDlg::OnDictionraywordsMarkasNounNocount()
{
AddWordAttributeValue(_T("pos"),_T("noun"));
AddWordAttributeValue(_T("noun"),_T("nocount"),true);
}
void CDictionaryDlg::OnDictionraywordsMarkasNounBoth()
{
AddWordAttributeValue(_T("pos"),_T("noun"));
AddWordAttributeValue(_T("noun"),_T("countnocount"),true);
}
void CDictionaryDlg::OnDictionraywordsMarkasVerbTransitive()
{
AddWordAttributeValue(_T("pos"),_T("verb"));
AddWordAttributeValue(_T("verb"),_T("transitive"),true);
}
void CDictionaryDlg::OnDictionraywordsMarkasVerbIntransitive()
{
AddWordAttributeValue(_T("pos"),_T("verb"));
AddWordAttributeValue(_T("verb"),_T("intransitive"),true);
}
void CDictionaryDlg::OnDictionraywordsMarkasAdjective()
{
AddWordAttributeValue(_T("pos"),_T("adjective"),true);
}
void CDictionaryDlg::OnDictionraywordsMarkasAdverb()
{
AddWordAttributeValue(_T("pos"),_T("adverb"),true);
}
void CDictionaryDlg::OnMoveToList()
{
POSITION pos = m_listCtrlDictionary.GetFirstSelectedItemPosition();
if (m_dictDisplayType != DICT_DISPLAY_LETTER_GROUP) {
AfxMessageBox(_T("Can't move indexes to word list!"));
return;
}
else if (pos == NULL) {
AfxMessageBox(_T("No words selected!"));
return;
}
int currentSelection = -1;
CString wordStr;
CONCEPT *concept;
while ((currentSelection = m_listCtrlDictionary.GetNextSelectedItem(pos)) >= 0) {
wordStr = m_listCtrlDictionary.GetItemText(currentSelection,0);
concept = (CONCEPT *)m_listCtrlDictionary.GetItemData(currentSelection);
AddWordToList(concept,wordStr);
}
}
void CDictionaryDlg::OnClearList()
{
POSITION pos = m_listCtrlList.GetFirstSelectedItemPosition();
if (pos == NULL) {
AfxMessageBox(_T("No words selected!"));
return;
}
CString msgStr;
msgStr = _T("Do you want to delete the selected words from the list?");
if (AfxMessageBox(msgStr,MB_YESNO) == IDYES) {
int currentSelection = -1;
while ((currentSelection = m_listCtrlList.GetNextSelectedItem(pos)) >= 0)
m_listCtrlList.DeleteItem(currentSelection);
}
}
void CDictionaryDlg::OnClearAll()
{
POSITION pos = m_listCtrlList.GetFirstSelectedItemPosition();
CString msgStr;
msgStr = _T("Do you want to delete the selected words from the list?");
if (AfxMessageBox(msgStr,MB_YESNO) == IDYES) {
SetRedraw(false);
m_listCtrlList.DeleteAllItems();
SetRedraw(true);
}
}
void CDictionaryDlg::OnAttributeToggle()
{
UpdateData(true);
if (m_boolAttributes) {
SelectDictionaryList();
}
else {
SetRedraw(false);
m_listCtrlAttributes.DeleteAllItems();
SetRedraw(true);
}
}
void CDictionaryDlg::OnAddList()
{
UpdateData(true);
_TCHAR buff[1001];
StringToChar(buff,m_strWord,1000);
CONCEPT *wordConcept = cg->getWordConcept(buff);
AddWordToList(wordConcept,m_strWord);
m_strWord = _T("");
UpdateData(false);
}
void CDictionaryDlg::AddWordToList(CONCEPT *concept, CString wordStr)
{
if (wordStr == _T(""))
return;
LV_FINDINFO findStruct;
findStruct.flags = LVFI_STRING;
findStruct.psz = m_strWord;
int findResult = m_listCtrlList.FindItem(&findStruct,-1);
if (findResult >= 0) {
AfxMessageBox(_T("Already exists!"));
return;
}
int newItem = InsertItemAlphabetically(wordStr);
if (!concept)
concept = AddToTempConcept(wordStr);
m_listCtrlList.SetItemData(newItem,(DWORD)concept);
}
void CDictionaryDlg::OnClickList(NMHDR* pNMHDR, LRESULT* pResult)
{
if (!m_boolAttributes)
return;
POSITION pos = m_listCtrlList.GetFirstSelectedItemPosition();
if (pos) {
int itemNum = m_listCtrlList.GetNextSelectedItem(pos);
m_strWord = m_listCtrlList.GetItemText(itemNum,0);
m_conceptSelected =
(CONCEPT *)m_listCtrlList.GetItemData(itemNum);
CONCEPT *dictCon = WordLookup(m_strWord);
if (dictCon)
CopyConceptAttributes(dictCon,m_conceptSelected);
m_listCtrlAttributes.SetConcept(m_conceptSelected);
FillAttributeList(m_conceptSelected);
}
else {
m_intDictSelection = -1;
}
UpdateData(false);
*pResult = 0;
}
void CDictionaryDlg::OnChangeWord()
{
UpdateData(true);
if (m_findType != FIND_TYPE_FIND_OFF && m_strWord != _T("") && IsAlpha(m_strWord)) {
_TCHAR wordBuff[1001];
_TCHAR pathBuff[1001];
StringToChar(wordBuff,m_strWord,1000);
CONCEPT *con = cg->wordIndex(wordBuff);
cg->conceptPath(con,pathBuff);
CString pathStr = pathBuff;
CStringList paths;
StringToWordList(paths,pathStr);
for (int i=0; paths.GetCount() && i<4; i++)
paths.RemoveHead();
CString lastStrLetter = m_strLetter;
CString lastStrLetterGroup = m_strLetterGroup;
m_strLetter = paths.RemoveHead();
m_strLetter.Remove('\"');
m_strLetterGroup = paths.RemoveHead();
m_strLetterGroup.Remove('\"');
if (m_strWord.GetLength() == 1)
m_dictDisplayType = DICT_DISPLAY_LETTER;
else
m_dictDisplayType = DICT_DISPLAY_LETTER_GROUP;
if (m_findType == FIND_TYPE_NARROW)
FillDictionaryList();
else if (m_findType == FIND_TYPE_FIND)
Find(m_strWord);
// SET FOCUS ON ANALYZER NAME
CEdit *ed = (CEdit *)GetDlgItem(IDC_WORD);
ed->SetFocus();
}
UpdateData(false);
}
bool CDictionaryDlg::Find(CString findStr)
{
CString wordStr;
int nItem = 0;
int result = 0;
while (result >= 0) {
result = m_listCtrlDictionary.GetNextItem(nItem,LVNI_ALL);
wordStr = m_listCtrlDictionary.GetItemText(nItem,0);
if (wordStr.Find(findStr) >= 0) {
m_listCtrlDictionary.SetItemState(nItem,
LVIS_SELECTED | LVIS_FOCUSED , LVIS_SELECTED | LVIS_FOCUSED);
m_listCtrlDictionary.SetFocus();
m_listCtrlDictionary.EnsureVisible(nItem,false);
return true;
break;
}
nItem++;
}
return false;
}
void CDictionaryDlg::OnSelchangeFindType()
{
CString comboText;
m_comboBoxFind->GetWindowText(comboText);
if (comboText == _T(""))
return;
FIND_TYPE newType = FindTypeFromString(comboText);
if (newType != m_findType) {
m_findType = newType;
FillDictionaryList();
}
}
void CDictionaryDlg::OnAddAll()
{
CString msgStr;
msgStr = _T("Do you want to add the current attributes to all concepts in the list?");
if (AfxMessageBox(msgStr,MB_YESNO) == IDYES) {
CONCEPT *con = m_listCtrlAttributes.GetConcept();
CONCEPT *tmp = cg->Down(m_conceptTemp);
CString tmpStr;
while (tmp) {
tmpStr = ConceptName(tmp);
if (con != tmp)
CopyConceptAttributes(con,tmp);
tmp = cg->Next(tmp);
}
}
}
void CDictionaryDlg::OnFile()
{
CFileDialog fileDlg(true);
if (fileDlg.DoModal() == IDOK) {
CString fileNameStr = fileDlg.GetPathName();
if (!FileExists(fileNameStr)) {
CString msgStr;
msgStr.Format(_T("File \"%s\" doesn't exist."),fileNameStr);
AfxMessageBox(msgStr);
return;
}
StartWaitCursor();
CStringList lines;
ReadFileToStringList(lines,fileNameStr);
CStringList lineWords,words;
CString lineStr,wordStr;
POSITION pos = lines.GetHeadPosition();
POSITION p;
while (pos && (lineStr = lines.GetNext(pos))) {
StringToWordList(lineWords,lineStr);
p = lineWords.GetHeadPosition();
while (p && (wordStr = lineWords.GetNext(p))) {
StripWord(wordStr);
wordStr.MakeLower();
if (wordStr != _T(""))
words.AddTail(wordStr);
}
lineWords.RemoveAll();
}
SortStringList(words);
RemoveSuccessiveEquals(words);
pos = words.GetHeadPosition();
_TCHAR buff[1001];
int newItem;
int image = 0;
CONCEPT *wordConcept = NULL;
while (pos && (wordStr = words.GetNext(pos))) {
StringToChar(buff,wordStr,1000);
wordConcept = cg->getWordConcept(buff);
image = wordConcept ? 0 : 1;
newItem = m_listCtrlList.InsertItem(0,wordStr,image);
m_listCtrlList.SetItemData(newItem,(DWORD)wordConcept);
}
StopWaitCursor();
}
}
void CDictionaryDlg::StripWord(CString &wordStr)
{
CString newStr;
int length = wordStr.GetLength();
_TCHAR c;
for (int i=0; i<length; i++) {
c = wordStr.GetAt(i);
if (alphabetic(c)) // 12/16/01 AM.
newStr += c;
else
break;
}
wordStr = newStr;
}
void CDictionaryDlg::OnCustomDictDraw(NMHDR* pNMHDR, LRESULT* pResult)
{
LPNMLVCUSTOMDRAW lplvcd = (LPNMLVCUSTOMDRAW)pNMHDR;
int iRow;
CONCEPT *con;
ATTR *attrs;
_TCHAR buff[1001];
CString itemStr;
switch(lplvcd->nmcd.dwDrawStage) {
case CDDS_PREPAINT:
*pResult = CDRF_NOTIFYITEMDRAW; // ask for item notifications.
break;
case CDDS_ITEMPREPAINT:
*pResult = CDRF_DODEFAULT;
iRow = lplvcd->nmcd.dwItemSpec;
itemStr = m_listCtrlDictionary.GetItemText(iRow,0);
StringToChar(buff,itemStr,1000);
con = cg->getWordConcept(buff);
attrs = cg->findAttrs(con);
if (m_dictDisplayType == DICT_DISPLAY_LETTER_GROUP) {
if (attrs) {
lplvcd->clrTextBk = RGB(255,0,0);
lplvcd->clrText = RGB(255,255,0);
*pResult = CDRF_NEWFONT;
}
}
break;
default:
*pResult = CDRF_DODEFAULT;
}
}
void CDictionaryDlg::OnCustomListDraw(NMHDR* pNMHDR, LRESULT* pResult)
{
LPNMLVCUSTOMDRAW lplvcd = (LPNMLVCUSTOMDRAW)pNMHDR;
int iRow;
CONCEPT *dictCon;
CONCEPT *itemCon;
ATTR *attrs;
CString itemStr;
switch(lplvcd->nmcd.dwDrawStage) {
case CDDS_PREPAINT:
*pResult = CDRF_NOTIFYITEMDRAW; // ask for item notifications.
break;
case CDDS_ITEMPREPAINT:
*pResult = CDRF_DODEFAULT;
iRow = lplvcd->nmcd.dwItemSpec;
itemStr = m_listCtrlList.GetItemText(iRow,0);
itemCon = (CONCEPT *)m_listCtrlList.GetItemData(iRow);
dictCon = WordLookup(itemStr);
attrs = cg->findAttrs(dictCon);
if (!dictCon) {
lplvcd->clrTextBk = RGB(255,255,255);
lplvcd->clrText = RGB(0,0,0);
*pResult = CDRF_NEWFONT;
}
else if (!attrs) {
lplvcd->clrTextBk = RGB(255,0,0);
lplvcd->clrText = RGB(255,255,255);
*pResult = CDRF_NEWFONT;
}
else if (attrs) {
lplvcd->clrTextBk = RGB(255,0,0);
lplvcd->clrText = RGB(255,255,0);
*pResult = CDRF_NEWFONT;
}
else if (itemCon) {
attrs = cg->findAttrs(itemCon);
if (attrs) {
lplvcd->clrTextBk = RGB(0,0,0);
lplvcd->clrText = RGB(255,0,0);
*pResult = CDRF_NEWFONT;
}
}
break;
default:
*pResult = CDRF_DODEFAULT;
}
}
BOOL CDictionaryDlg::PreTranslateMessage(MSG* pMsg)
{
if (pMsg->message == WM_KEYDOWN && pMsg->wParam == VK_RETURN) {
CEdit *ed = (CEdit *)GetDlgItem(IDC_WORD);
CRect rectEdit;
ed->GetWindowRect(rectEdit);
if (rectEdit.PtInRect(pMsg->pt)) {
AddWordToList(NULL,m_strWord);
m_strWord = _T("");
UpdateData(false);
}
}
else
return CDialog::PreTranslateMessage(pMsg);
return true;
}
int CDictionaryDlg::InsertItemAlphabetically(CString wordStr)