-
Notifications
You must be signed in to change notification settings - Fork 165
/
CEditDoc.cpp
1037 lines (890 loc) · 32.8 KB
/
CEditDoc.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
/*! @file
@brief 文書関連情報の管理
@author Norio Nakatani
@date 1998/03/13 作成
*/
/*
Copyright (C) 1998-2001, Norio Nakatani
Copyright (C) 2000, genta
Copyright (C) 2001, genta, YAZAKI, jepro, novice, asa-o, MIK,
Copyright (C) 2002, YAZAKI, hor, genta, aroka, frozen, Moca, MIK
Copyright (C) 2003, MIK, genta, ryoji, Moca, zenryaku, naoh, wmlhq
Copyright (C) 2004, genta, novice, Moca, MIK, zenryaku
Copyright (C) 2005, genta, naoh, FILE, Moca, ryoji, D.S.Koba, aroka
Copyright (C) 2006, genta, ryoji, aroka
Copyright (C) 2007, ryoji, maru
Copyright (C) 2008, ryoji, nasukoji
Copyright (C) 2009, nasukoji
Copyright (C) 2011, ryoji
Copyright (C) 2013, Uchi
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented;
you must not claim that you wrote the original software.
If you use this software in a product, an acknowledgment
in the product documentation would be appreciated but is
not required.
2. Altered source versions must be plainly marked as such,
and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
#include "StdAfx.h"
#include <stdlib.h>
#include <string.h> // Apr. 03, 2003 genta
#include <memory>
#include <OleCtl.h>
#include <wincodec.h>
#pragma comment(lib, "windowscodecs.lib")
#include <wrl.h>
#include "doc/CEditDoc.h"
#include "doc/logic/CDocLine.h" /// 2002/2/3 aroka
#include "doc/layout/CLayout.h" // 2007.08.22 ryoji 追加
#include "docplus/CModifyManager.h"
#include "_main/global.h"
#include "_main/CAppMode.h"
#include "_main/CControlTray.h"
#include "_main/CNormalProcess.h"
#include "window/CEditWnd.h"
#include "_os/CClipboard.h"
#include "CCodeChecker.h"
#include "CEditApp.h"
#include "CGrepAgent.h"
#include "print/CPrintPreview.h"
#include "uiparts/CVisualProgress.h"
#include "charset/CCodeMediator.h"
#include "charset/charcode.h"
#include "debug/CRunningTimer.h"
#include "env/CSakuraEnvironment.h"
#include "env/CShareData.h"
#include "env/DLLSHAREDATA.h"
#include "func/Funccode.h"
#include "outline/CFuncInfoArr.h" /// 2002/2/3 aroka
#include "macro/CSMacroMgr.h"
#include "recent/CMRUFolder.h"
#include "util/file.h"
#include "util/format.h"
#include "util/module.h"
#include "util/string_ex2.h"
#include "util/window.h"
#include "sakura_rc.h"
#define IDT_ROLLMOUSE 1
//! 編集禁止コマンド
static const EFunctionCode EIsModificationForbidden[] = {
F_WCHAR,
F_IME_CHAR,
F_UNDO, // 2007.10.12 genta
F_REDO, // 2007.10.12 genta
F_DELETE,
F_DELETE_BACK,
F_WordDeleteToStart,
F_WordDeleteToEnd,
F_WordCut,
F_WordDelete,
F_LineCutToStart,
F_LineCutToEnd,
F_LineDeleteToStart,
F_LineDeleteToEnd,
F_CUT_LINE,
F_DELETE_LINE,
F_DUPLICATELINE,
F_INDENT_TAB,
F_UNINDENT_TAB,
F_INDENT_SPACE,
F_UNINDENT_SPACE,
F_LTRIM, // 2001.12.03 hor
F_RTRIM, // 2001.12.03 hor
F_SORT_ASC, // 2001.12.11 hor
F_SORT_DESC, // 2001.12.11 hor
F_MERGE, // 2001.12.11 hor
F_CUT,
F_PASTE,
F_PASTEBOX,
F_INSTEXT_W,
F_ADDTAIL_W,
F_INS_DATE,
F_INS_TIME,
F_CTRL_CODE_DIALOG, //@@@ 2002.06.02 MIK
F_TOLOWER,
F_TOUPPER,
F_TOHANKAKU,
F_TOZENKAKUKATA,
F_TOZENKAKUHIRA,
F_HANKATATOZENKATA,
F_HANKATATOZENHIRA,
F_TOZENEI, // 2001/07/30 Misaka
F_TOHANEI,
F_TOHANKATA, // 2002/08/29 ai
F_TABTOSPACE,
F_SPACETOTAB, //---- Stonee, 2001/05/27
F_CODECNV_AUTO2SJIS,
F_CODECNV_EMAIL,
F_CODECNV_EUC2SJIS,
F_CODECNV_UNICODE2SJIS,
F_CODECNV_UTF82SJIS,
F_CODECNV_UTF72SJIS,
F_CODECNV_UNICODEBE2SJIS,
F_CODECNV_SJIS2JIS,
F_CODECNV_SJIS2EUC,
F_CODECNV_SJIS2UTF8,
F_CODECNV_SJIS2UTF7,
F_REPLACE_DIALOG,
F_REPLACE,
F_REPLACE_ALL,
F_CHGMOD_INS,
F_HOKAN,
};
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
// 生成と破棄 //
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
/*!
@note
m_pcEditWnd はコンストラクタ内では使用しないこと.
@date 2000.05.12 genta 初期化方法変更
@date 2002.2.17 YAZAKI CShareDataのインスタンスは、CProcessにひとつあるのみ。
@date 2002.01.14 YAZAKI 印刷プレビューをCPrintPreviewに独立させたことによる変更
@date 2004.06.21 novice タグジャンプ機能追加
*/
CEditDoc::CEditDoc(CEditApp* pcApp)
: m_cDocFile(this) // warning C4355: 'this' : ベース メンバー初期化子リストで使用されました。
, m_cDocFileOperation(this) // warning C4355: 'this' : ベース メンバー初期化子リストで使用されました。
, m_cDocEditor(this) // warning C4355: 'this' : ベース メンバー初期化子リストで使用されました。
, m_cDocType(this) // warning C4355: 'this' : ベース メンバー初期化子リストで使用されました。
, m_cDocOutline(this) // warning C4355: 'this' : ベース メンバー初期化子リストで使用されました。
, m_nCommandExecNum( 0 ) /* コマンド実行回数 */
, m_hBackImg(NULL)
{
MY_RUNNINGTIMER( cRunningTimer, "CEditDoc::CEditDoc" );
// レイアウト管理情報の初期化
m_cLayoutMgr.Create( this, &m_cDocLineMgr );
// レイアウト情報の変更
// 2008.06.07 nasukoji 折り返し方法の追加に対応
// 「指定桁で折り返す」以外の時は折り返し幅をMAXLINEKETASで初期化する
// 「右端で折り返す」は、この後のOnSize()で再設定される
const STypeConfig& ref = m_cDocType.GetDocumentAttribute();
CKetaXInt nMaxLineKetas = ref.m_nMaxLineKetas;
if( ref.m_nTextWrapMethod != WRAP_SETTING_WIDTH ){
nMaxLineKetas = CKetaXInt(MAXLINEKETAS);
}
m_cLayoutMgr.SetLayoutInfo( true, false, ref, ref.m_nTabSpace, ref.m_nTsvMode, nMaxLineKetas, CLayoutXInt(1), NULL );
// 自動保存の設定 // Aug, 21, 2000 genta
m_cAutoSaveAgent.ReloadAutoSaveParam();
//$$ CModifyManager インスタンスを生成
CModifyManager::getInstance();
//$$ CCodeChecker インスタンスを生成
CCodeChecker::getInstance();
// 2008.06.07 nasukoji テキストの折り返し方法を初期化
m_nTextWrapMethodCur = m_cDocType.GetDocumentAttribute().m_nTextWrapMethod; // 折り返し方法
m_bTextWrapMethodCurTemp = false; // 一時設定適用中を解除
m_blfCurTemp = false;
m_nPointSizeCur = -1;
m_nPointSizeOrg = -1;
m_bTabSpaceCurTemp = false;
// 文字コード種別を初期化
m_cDocFile.SetCodeSet( ref.m_encoding.m_eDefaultCodetype, ref.m_encoding.m_bDefaultBom );
m_cDocEditor.m_cNewLineCode = ref.m_encoding.m_eDefaultEoltype;
// 排他制御オプションを初期化
m_cDocFile.SetShareMode( GetDllShareData().m_Common.m_sFile.m_nFileShareMode );
#ifdef _DEBUG
{
// 編集禁止コマンドの並びをチェック
int i;
for ( i = 0; i < _countof(EIsModificationForbidden) - 1; i++){
assert( EIsModificationForbidden[i] < EIsModificationForbidden[i+1] );
}
}
#endif
}
CEditDoc::~CEditDoc()
{
if( m_hBackImg ){
::DeleteObject( m_hBackImg );
}
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
// 生成と破棄 //
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
void CEditDoc::Clear()
{
// ファイルの排他ロック解除
m_cDocFileOperation.DoFileUnlock();
// 書込み禁止のクリア
m_cDocLocker.Clear();
// アンドゥ・リドゥバッファのクリア
m_cDocEditor.m_cOpeBuf.ClearAll();
// テキストデータのクリア
m_cDocLineMgr.DeleteAllLine();
// ファイルパスとアイコンのクリア
SetFilePathAndIcon( _T("") );
// ファイルのタイムスタンプのクリア
m_cDocFile.ClearFileTime();
// 「基本」のタイプ別設定を適用
m_cDocType.SetDocumentType( CDocTypeManager().GetDocumentTypeOfPath( m_cDocFile.GetFilePath() ), true );
m_blfCurTemp = false;
m_pcEditWnd->m_pcViewFontMiniMap->UpdateFont(&m_pcEditWnd->GetLogfont());
InitCharWidthCache( m_pcEditWnd->m_pcViewFontMiniMap->GetLogfont(), CWM_FONT_MINIMAP );
SelectCharWidthCache( CWM_FONT_EDIT, m_pcEditWnd->GetLogfontCacheMode() );
InitCharWidthCache( m_pcEditWnd->GetLogfont() );
m_pcEditWnd->m_pcViewFont->UpdateFont(&m_pcEditWnd->GetLogfont());
// 2008.06.07 nasukoji 折り返し方法の追加に対応
const STypeConfig& ref = m_cDocType.GetDocumentAttribute();
CKetaXInt nMaxLineKetas = ref.m_nMaxLineKetas;
if( ref.m_nTextWrapMethod != WRAP_SETTING_WIDTH ){
nMaxLineKetas = CKetaXInt(MAXLINEKETAS);
}
m_cLayoutMgr.SetLayoutInfo( true, false, ref, ref.m_nTabSpace, ref.m_nTsvMode, nMaxLineKetas, CLayoutXInt(-1), &m_pcEditWnd->GetLogfont() );
m_pcEditWnd->ClearViewCaretPosInfo();
}
/* 既存データのクリア */
void CEditDoc::InitDoc()
{
CAppMode::getInstance()->SetViewMode(false); // ビューモード $$ 今後OnClearDocを用意したい
CAppMode::getInstance()->m_szGrepKey[0] = L'\0'; //$$
CEditApp::getInstance()->m_pcGrepAgent->m_bGrepMode = false; /* Grepモード */ //$$同上
m_cAutoReloadAgent.m_eWatchUpdate = WU_QUERY; // Dec. 4, 2002 genta 更新監視方法 $$
// 2005.06.24 Moca バグ修正
// アウトプットウィンドウで「閉じて(無題)」を行ってもアウトプットウィンドウのまま
if( CAppMode::getInstance()->IsDebugMode() ){
CAppMode::getInstance()->SetDebugModeOFF();
}
// Sep. 10, 2002 genta
// アイコン設定はファイル名設定と一体化のためここからは削除
Clear();
/* 変更フラグ */
m_cDocEditor.SetModified(false,false); // Jan. 22, 2002 genta
/* 文字コード種別 */
const STypeConfig& ref = m_cDocType.GetDocumentAttribute();
m_cDocFile.SetCodeSet( ref.m_encoding.m_eDefaultCodetype, ref.m_encoding.m_bDefaultBom );
m_cDocEditor.m_cNewLineCode = ref.m_encoding.m_eDefaultEoltype;
// Oct. 2, 2005 genta 挿入モード
m_cDocEditor.SetInsMode( GetDllShareData().m_Common.m_sGeneral.m_bIsINSMode );
m_cCookie.DeleteAll(L"document");
}
void CEditDoc::SetBackgroundImage()
{
CFilePath path = m_cDocType.GetDocumentAttribute().m_szBackImgPath.c_str();
if( m_hBackImg ){
::DeleteObject( m_hBackImg );
m_hBackImg = NULL;
}
if( 0 == path[0] ){
return;
}
if( _IS_REL_PATH(path.c_str()) ){
CFilePath fullPath;
GetInidirOrExedir( &fullPath[0], &path[0] );
path = fullPath;
}
using namespace Microsoft::WRL;
ComPtr<IWICImagingFactory> pIWICFactory;
HRESULT hr;
hr = CoCreateInstance(
CLSID_WICImagingFactory,
NULL,
CLSCTX_INPROC_SERVER,
IID_PPV_ARGS(&pIWICFactory));
if( FAILED(hr) ) return;
ComPtr<IWICBitmapDecoder> pDecoder;
hr = pIWICFactory->CreateDecoderFromFilename(
path.c_str(),
NULL,
GENERIC_READ,
WICDecodeMetadataCacheOnLoad,
&pDecoder);
if( FAILED(hr) ) return;
ComPtr<IWICBitmapFrameDecode> pFrame;
hr = pDecoder->GetFrame(0, &pFrame);
if( FAILED(hr) ) return;
//WICPixelFormatGUID pixelFormat;
//hr = pFrame->GetPixelFormat(&pixelFormat);
//if( FAILED(hr) ) return;
ComPtr<IWICFormatConverter> pConverter;
pIWICFactory->CreateFormatConverter(&pConverter);
if( FAILED(hr) ) return;
hr = pConverter->Initialize(
pFrame.Get(),
GUID_WICPixelFormat32bppPBGRA,
WICBitmapDitherTypeNone,
NULL,
0.f,
WICBitmapPaletteTypeCustom);
if( FAILED(hr) ) return;
UINT width, height;
hr = pConverter->GetSize(&width, &height);
if( FAILED(hr) ) return;
BITMAPINFO bminfo = {0};
BITMAPINFOHEADER& bmih = bminfo.bmiHeader;
bmih.biSize = sizeof(BITMAPINFOHEADER);
bmih.biWidth = (LONG)width;
bmih.biHeight = -(LONG)height;
bmih.biPlanes = 1;
bmih.biBitCount = 32;
bmih.biCompression = BI_RGB;
HDC hdcScreen = GetDC(NULL);
if( !hdcScreen ) return;
void *pvImageBits = NULL;
m_hBackImg = CreateDIBSection(hdcScreen, &bminfo, DIB_RGB_COLORS, &pvImageBits, NULL, 0);
ReleaseDC(NULL, hdcScreen);
if( !m_hBackImg ) return;
UINT lineStride = 4 * width;
hr = pConverter->CopyPixels(
NULL,
lineStride,
lineStride * height,
(BYTE*)pvImageBits);
if( FAILED(hr) ){
::DeleteObject(m_hBackImg);
m_hBackImg = NULL;
}
m_nBackImgWidth = (int)width;
m_nBackImgHeight = (int)height;
}
/* 全ビューの初期化:ファイルオープン/クローズ時等に、ビューを初期化する */
void CEditDoc::InitAllView( void )
{
m_nCommandExecNum = 0; /* コマンド実行回数 */
// 2008.05.30 nasukoji テキストの折り返し方法を初期化
m_nTextWrapMethodCur = m_cDocType.GetDocumentAttribute().m_nTextWrapMethod; // 折り返し方法
m_bTextWrapMethodCurTemp = false; // 一時設定適用中を解除
m_blfCurTemp = false;
m_bTabSpaceCurTemp = false;
// 2009.08.28 nasukoji 「折り返さない」ならテキスト最大幅を算出、それ以外は変数をクリア
if( m_nTextWrapMethodCur == WRAP_NO_TEXT_WRAP )
m_cLayoutMgr.CalculateTextWidth(); // テキスト最大幅を算出する
else
m_cLayoutMgr.ClearLayoutLineWidth(); // 各行のレイアウト行長の記憶をクリアする
// CEditWndに引越し
m_pcEditWnd->InitAllViews();
return;
}
/*! ウィンドウの作成等
@date 2001.09.29 genta マクロクラスを渡すように
@date 2002.01.03 YAZAKI m_tbMyButtonなどをCShareDataからCMenuDrawerへ移動したことによる修正。
*/
BOOL CEditDoc::Create( CEditWnd* pcEditWnd )
{
MY_RUNNINGTIMER( cRunningTimer, "CEditDoc::Create" );
m_pcEditWnd = pcEditWnd;
// Oct. 2, 2001 genta
m_cFuncLookup.Init( GetDllShareData().m_Common.m_sMacro.m_MacroTable, &GetDllShareData().m_Common );
SetBackgroundImage();
MY_TRACETIME( cRunningTimer, "End: PropSheet" );
return TRUE;
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
// 設定 //
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
/*!
ファイル名の設定
ファイル名を設定すると同時に,ウィンドウアイコンを適切に設定する.
@param szFile [in] ファイルのパス名
@author genta
@date 2002.09.09
*/
void CEditDoc::SetFilePathAndIcon(const TCHAR* szFile)
{
TCHAR szWork[MAX_PATH];
if( ::GetLongFileName( szFile, szWork ) ){
szFile = szWork;
}
m_cDocFile.SetFilePath(szFile);
m_cDocType.SetDocumentIcon();
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
// 属性 //
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
//! ドキュメントの文字コードを取得
ECodeType CEditDoc::GetDocumentEncoding() const
{
return m_cDocFile.GetCodeSet();
}
//! ドキュメントのBOM付加を取得
bool CEditDoc::GetDocumentBomExist() const
{
return m_cDocFile.IsBomExist();
}
//! ドキュメントの文字コードを設定
void CEditDoc::SetDocumentEncoding(ECodeType eCharCode, bool bBom)
{
if(!IsValidCodeOrCPType(eCharCode))return; //無効な範囲を受け付けない
m_cDocFile.SetCodeSet( eCharCode, bBom );
}
void CEditDoc::GetSaveInfo(SSaveInfo* pSaveInfo) const
{
pSaveInfo->cFilePath = m_cDocFile.GetFilePath();
pSaveInfo->eCharCode = m_cDocFile.GetCodeSet();
pSaveInfo->bBomExist = m_cDocFile.IsBomExist();
pSaveInfo->bChgCodeSet = m_cDocFile.IsChgCodeSet();
pSaveInfo->cEol = m_cDocEditor.m_cNewLineCode; //編集時改行コードを保存時改行コードとして設定
}
/* 編集ファイル情報を格納 */
void CEditDoc::GetEditInfo(
EditInfo* pfi //!< [out]
) const
{
//ファイルパス
_tcscpy(pfi->m_szPath, m_cDocFile.GetFilePath());
//表示域
pfi->m_nViewTopLine = m_pcEditWnd->GetActiveView().GetTextArea().GetViewTopLine(); /* 表示域の一番上の行(0開始) */
pfi->m_nViewLeftCol = m_pcEditWnd->GetActiveView().GetTextArea().GetViewLeftCol(); /* 表示域の一番左の桁(0開始) */
//キャレット位置
pfi->m_ptCursor.Set(m_pcEditWnd->GetActiveView().GetCaret().GetCaretLogicPos());
//各種状態
pfi->m_bIsModified = m_cDocEditor.IsModified(); /* 変更フラグ */
pfi->m_nCharCode = m_cDocFile.GetCodeSet(); /* 文字コード種別 */
pfi->m_bBom = GetDocumentBomExist();
pfi->m_nTypeId = m_cDocType.GetDocumentAttribute().m_id;
//GREPモード
pfi->m_bIsGrep = CEditApp::getInstance()->m_pcGrepAgent->m_bGrepMode;
wcscpy( pfi->m_szGrepKey, CAppMode::getInstance()->m_szGrepKey );
//デバッグモニタ (アウトプットウインドウ) モード
pfi->m_bIsDebug = CAppMode::getInstance()->IsDebugMode();
}
/*! @brief 指定コマンドによる書き換えが禁止されているかどうか
@retval true 禁止
@retval false 許可
@date 2000.08.14 genta 新規作成
@date 2014.07.27 novice 編集禁止の場合の検索方法変更
*/
bool CEditDoc::IsModificationForbidden( EFunctionCode nCommand ) const
{
// 編集可能の場合
if( IsEditable() )
return false; // 常に書き換え許可
// 編集禁止の場合(バイナリサーチ)
{
int lbound = 0;
int ubound = _countof(EIsModificationForbidden) - 1;
while( lbound <= ubound ){
int mid = ( lbound + ubound ) / 2;
if( nCommand < EIsModificationForbidden[mid] ){
ubound = mid - 1;
} else if( nCommand > EIsModificationForbidden[mid] ){
lbound = mid + 1;
}else{
return true;
}
}
}
return false;
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
// 状態 //
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
/*! @brief このウィンドウで新しいファイルを開けるか
新しいウィンドウを開かずに現在のウィンドウを再利用できるかどうかのテストを行う.
変更済み,ファイルを開いている,Grepウィンドウ,アウトプットウィンドウの場合には
再利用不可.
@author Moca
@date 2005.06.24 Moca
*/
bool CEditDoc::IsAcceptLoad() const
{
if(m_cDocEditor.IsModified())return false;
if(m_cDocFile.GetFilePathClass().IsValidPath())return false;
if(CEditApp::getInstance()->m_pcGrepAgent->m_bGrepMode)return false;
if(CAppMode::getInstance()->IsDebugMode())return false;
return true;
}
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
// イベント //
// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- //
/*! コマンドコードによる処理振り分け
@param[in] nCommand MAKELONG( コマンドコード,送信元識別子 )
@date 2006.05.19 genta 上位16bitに送信元の識別子が入るように変更
@date 2007.06.20 ryoji グループ内で巡回するように変更
*/
BOOL CEditDoc::HandleCommand( EFunctionCode nCommand )
{
// May. 19, 2006 genta 上位16bitに送信元の識別子が入るように変更したので
// 下位16ビットのみを取り出す
switch( LOWORD( nCommand )){
case F_PREVWINDOW: //前のウィンドウ
{
int nPane = m_pcEditWnd->m_cSplitterWnd.GetPrevPane();
if( -1 != nPane ){
m_pcEditWnd->SetActivePane( nPane );
}else{
CControlTray::ActiveNextWindow( m_pcEditWnd->GetHwnd() );
}
}
return TRUE;
case F_NEXTWINDOW: //次のウィンドウ
{
int nPane = m_pcEditWnd->m_cSplitterWnd.GetNextPane();
if( -1 != nPane ){
m_pcEditWnd->SetActivePane( nPane );
}
else{
CControlTray::ActivePrevWindow( m_pcEditWnd->GetHwnd() );
}
}
return TRUE;
case F_CHG_CHARSET:
return m_pcEditWnd->GetActiveView().GetCommander().HandleCommand( nCommand, true, (LPARAM)CODE_NONE, 0, 0, 0 );
default:
return m_pcEditWnd->GetActiveView().GetCommander().HandleCommand( nCommand, true, 0, 0, 0, 0 );
}
}
/*! タイプ別設定の適用を変更
@date 2011.12.15 CViewCommander::Command_TYPE_LISTから移動
*/
void CEditDoc::OnChangeType()
{
/* 設定変更を反映させる */
m_bTextWrapMethodCurTemp = false; // 折り返し方法の一時設定適用中を解除 // 2008.06.08 ryoji
m_blfCurTemp = false;
m_bTabSpaceCurTemp = false;
OnChangeSetting();
// 新規で無変更ならデフォルト文字コードを適用する // 2011.01.24 ryoji
if( !m_cDocFile.GetFilePathClass().IsValidPath() ){
if( !m_cDocEditor.IsModified() && m_cDocLineMgr.GetLineCount() == 0 ){
const STypeConfig& types = m_cDocType.GetDocumentAttribute();
m_cDocFile.SetCodeSet( types.m_encoding.m_eDefaultCodetype, types.m_encoding.m_bDefaultBom );
m_cDocEditor.m_cNewLineCode = types.m_encoding.m_eDefaultEoltype;
m_pcEditWnd->GetActiveView().GetCaret().ShowCaretPosInfo();
}
}
// 2006.09.01 ryoji タイプ変更後自動実行マクロを実行する
RunAutoMacro( GetDllShareData().m_Common.m_sMacro.m_nMacroOnTypeChanged );
}
/*! ビューに設定変更を反映させる
@param [in] bDoLayout レイアウト情報の再作成
@date 2004.06.09 Moca レイアウト再構築中にProgress Barを表示する.
@date 2008.05.30 nasukoji テキストの折り返し方法の変更処理を追加
@date 2013.04.22 novice レイアウト情報の再作成を設定できるようにした
*/
void CEditDoc::OnChangeSetting(
bool bDoLayout,
bool bBlockingHook
)
{
int i;
HWND hwndProgress = NULL;
CEditWnd* pCEditWnd = m_pcEditWnd; // Sep. 10, 2002 genta
if( NULL != pCEditWnd ){
hwndProgress = pCEditWnd->m_cStatusBar.GetProgressHwnd();
// Status Barが表示されていないときはm_hwndProgressBar == NULL
}
if( hwndProgress ){
::ShowWindow( hwndProgress, SW_SHOW );
}
/* ファイルの排他モード変更 */
if( m_cDocFile.GetShareMode() != GetDllShareData().m_Common.m_sFile.m_nFileShareMode ){
m_cDocFile.SetShareMode( GetDllShareData().m_Common.m_sFile.m_nFileShareMode );
/* ファイルの排他ロック解除 */
m_cDocFileOperation.DoFileUnlock();
// ファイル書込可能のチェック処理
bool bOld = m_cDocLocker.IsDocWritable();
m_cDocLocker.CheckWritable(bOld && !CAppMode::getInstance()->IsViewMode()); // 書込可から不可に遷移したときだけメッセージを出す(出過ぎると鬱陶しいよね?)
/* ファイルの排他ロック */
if( m_cDocLocker.IsDocWritable() ){
m_cDocFileOperation.DoFileLock();
}
}
/* 共有データ構造体のアドレスを返す */
CFileNameManager::getInstance()->TransformFileName_MakeCache();
CLogicPointEx* posSaveAry = NULL;
if( m_pcEditWnd->m_posSaveAry ){
if( bDoLayout ){
posSaveAry = m_pcEditWnd->m_posSaveAry;
m_pcEditWnd->m_posSaveAry = NULL;
}
}else{
if( m_pcEditWnd->m_pPrintPreview ){
// 一時的に設定を戻す
SelectCharWidthCache( CWM_FONT_EDIT, CWM_CACHE_NEUTRAL );
}
if( bDoLayout ){
posSaveAry = m_pcEditWnd->SavePhysPosOfAllView();
}
}
// 旧情報の保持
const int nTypeId = m_cDocType.GetDocumentAttribute().m_id;
const bool bFontTypeOld = m_cDocType.GetDocumentAttribute().m_bUseTypeFont;
int nFontPointSizeOld = m_nPointSizeOrg;
if( bFontTypeOld ){
nFontPointSizeOld = m_cDocType.GetDocumentAttribute().m_nPointSize;
}
const CKetaXInt nTabSpaceOld = m_cDocType.GetDocumentAttribute().m_nTabSpace;
// 文書種別
m_cDocType.SetDocumentType( CDocTypeManager().GetDocumentTypeOfPath( m_cDocFile.GetFilePath() ), false );
const STypeConfig& ref = m_cDocType.GetDocumentAttribute();
// タイプ別設定の種類が変更されたら、一時適用を元に戻す
if( nTypeId != ref.m_id ){
m_blfCurTemp = false;
if( bDoLayout ){
m_bTextWrapMethodCurTemp = false;
m_bTabSpaceCurTemp = false;
}
}
// フォントサイズの一時設定
if( m_blfCurTemp ){
if( bFontTypeOld != ref.m_bUseTypeFont ){
m_blfCurTemp = false;
}else if( nFontPointSizeOld != pCEditWnd->GetFontPointSize(false) ){
m_blfCurTemp = false; // フォント設定が変更された。元に戻す
}else{
// フォントの種類の変更に追随する
int lfHeight = m_lfCur.lfHeight;
m_lfCur = pCEditWnd->GetLogfont(false);
m_lfCur.lfHeight = lfHeight;
}
}
// フォント更新
m_pcEditWnd->m_pcViewFont->UpdateFont(&m_pcEditWnd->GetLogfont());
m_pcEditWnd->m_pcViewFontMiniMap->UpdateFont(&m_pcEditWnd->GetLogfont());
InitCharWidthCache( m_pcEditWnd->m_pcViewFontMiniMap->GetLogfont(), CWM_FONT_MINIMAP );
SelectCharWidthCache( CWM_FONT_EDIT, m_pcEditWnd->GetLogfontCacheMode() );
InitCharWidthCache( m_pcEditWnd->GetLogfont() );
CKetaXInt nMaxLineKetas = ref.m_nMaxLineKetas;
CKetaXInt nTabSpace = ref.m_nTabSpace;
int nTsvMode = ref.m_nTsvMode;
if( bDoLayout ){
// 2008.06.07 nasukoji 折り返し方法の追加に対応
// 折り返し方法の一時設定とタイプ別設定が一致したら一時設定適用中は解除
if( m_nTextWrapMethodCur == ref.m_nTextWrapMethod ){
if( m_nTextWrapMethodCur == WRAP_SETTING_WIDTH
&& m_cLayoutMgr.GetMaxLineKetas() != ref.m_nMaxLineKetas ){
// 2013.05.29 折り返し幅が違うのでそのままにする
}else if( bDoLayout ){
m_bTextWrapMethodCurTemp = false; // 一時設定適用中を解除
}
}
// 一時設定適用中でなければ折り返し方法変更
if( !m_bTextWrapMethodCurTemp )
m_nTextWrapMethodCur = ref.m_nTextWrapMethod; // 折り返し方法
// 指定桁で折り返す:タイプ別設定を使用
// 右端で折り返す:仮に現在の折り返し幅を使用
// 上記以外:MAXLINEKETASを使用
switch( m_nTextWrapMethodCur ){
case WRAP_NO_TEXT_WRAP:
nMaxLineKetas = MAXLINEKETAS;
break;
case WRAP_SETTING_WIDTH:
if( m_bTextWrapMethodCurTemp ){
// 2013.05.29 現在の一時適用の折り返し幅を使うように
nMaxLineKetas = m_cLayoutMgr.GetMaxLineKetas();
}
break;
case WRAP_WINDOW_WIDTH:
nMaxLineKetas = m_cLayoutMgr.GetMaxLineKetas(); // 現在の折り返し幅
break;
}
if( m_bTabSpaceCurTemp ){
if( nTabSpaceOld != ref.m_nTabSpace ){
// タイプ別設定が変更されたので一時適用解除
m_bTabSpaceCurTemp = false;
}else{
// 一時適用継続
nTabSpace = m_cLayoutMgr.GetTabSpaceKetas();
}
}
}else{
// レイアウトを再構築しないので元の設定を維持
nMaxLineKetas = m_cLayoutMgr.GetMaxLineKetas(); // 現在の折り返し幅
nTabSpace = m_cLayoutMgr.GetTabSpaceKetas(); // 現在のタブ幅
}
CProgressSubject* pOld = CEditApp::getInstance()->m_pcVisualProgress->CProgressListener::Listen(&m_cLayoutMgr);
m_cLayoutMgr.SetLayoutInfo( bDoLayout, bBlockingHook, ref, nTabSpace, nTsvMode, nMaxLineKetas, CLayoutXInt(-1), &m_pcEditWnd->GetLogfont() );
CEditApp::getInstance()->m_pcVisualProgress->CProgressListener::Listen(pOld);
m_pcEditWnd->ClearViewCaretPosInfo();
// 2009.08.28 nasukoji 「折り返さない」ならテキスト最大幅を算出、それ以外は変数をクリア
if( m_nTextWrapMethodCur == WRAP_NO_TEXT_WRAP )
m_cLayoutMgr.CalculateTextWidth(); // テキスト最大幅を算出する
else
m_cLayoutMgr.ClearLayoutLineWidth(); // 各行のレイアウト行長の記憶をクリアする
/* ビューに設定変更を反映させる */
int viewCount = m_pcEditWnd->GetAllViewCount();
for( i = 0; i < viewCount; ++i ){
m_pcEditWnd->GetView(i).OnChangeSetting();
}
m_pcEditWnd->GetMiniMap().OnChangeSetting();
if( posSaveAry ){
m_pcEditWnd->RestorePhysPosOfAllView( posSaveAry );
}
for( i = 0; i < viewCount; i++ ){
m_pcEditWnd->GetView(i).AdjustScrollBars(); // 2008.06.18 ryoji
}
m_pcEditWnd->GetMiniMap().AdjustScrollBars();
if( hwndProgress ){
::ShowWindow( hwndProgress, SW_HIDE );
}
if( m_pcEditWnd->m_pPrintPreview ){
// 設定を戻す
SelectCharWidthCache( CWM_FONT_PRINT, CWM_CACHE_LOCAL );
}
// 親ウィンドウのタイトルを更新
m_pcEditWnd->UpdateCaption();
}
/*! ファイルを閉じるときのMRU登録 & 保存確認 & 保存実行
@retval TRUE: 終了して良い / FALSE: 終了しない
*/
BOOL CEditDoc::OnFileClose(bool bGrepNoConfirm)
{
int nRet;
int nBool;
//クローズ事前処理
ECallbackResult eBeforeCloseResult = NotifyBeforeClose();
if(eBeforeCloseResult==CALLBACK_INTERRUPT)return FALSE;
// デバッグモニタモードのときは保存確認しない
if(CAppMode::getInstance()->IsDebugMode())return TRUE;
//GREPモードで、かつ、「GREPモードで保存確認するか」がOFFだったら、保存確認しない
// 2011.11.13 GrepモードでGrep直後は"未編集"状態になっているが保存確認が必要
if( CEditApp::getInstance()->m_pcGrepAgent->m_bGrepMode ){
if( bGrepNoConfirm ){ // Grepで保存確認しないモード
return TRUE;
}
if( !GetDllShareData().m_Common.m_sSearch.m_bGrepExitConfirm ){
return TRUE;
}
}else{
//テキスト,文字コードセットが変更されていない場合は保存確認しない
if (!m_cDocEditor.IsModified() && !m_cDocFile.IsChgCodeSet()) {
return TRUE;
}
}
// -- -- 保存確認 -- -- //
TCHAR szGrepTitle[90];
LPCTSTR pszTitle = m_cDocFile.GetFilePathClass().IsValidPath() ? m_cDocFile.GetFilePath() : NULL;
if( CEditApp::getInstance()->m_pcGrepAgent->m_bGrepMode ){
LPCWSTR pszGrepKey = CAppMode::getInstance()->m_szGrepKey;
int nLen = (int)wcslen( pszGrepKey );
CNativeW cmemDes;
LimitStringLengthW( pszGrepKey , nLen, 64, cmemDes );
auto_sprintf( szGrepTitle, LS(STR_TITLE_GREP),
cmemDes.GetStringPtr(),
( nLen > cmemDes.GetStringLength() ) ? _T("...") : _T("")
);
pszTitle = szGrepTitle;
}
if( NULL == pszTitle ){
const EditNode* node = CAppNodeManager::getInstance()->GetEditNode( CEditWnd::getInstance()->GetHwnd() );
auto_sprintf( szGrepTitle, _T("%s%d"), LS(STR_NO_TITLE1), node->m_nId ); //(無題)
pszTitle = szGrepTitle;
}
/* ウィンドウをアクティブにする */
HWND hwndMainFrame = CEditWnd::getInstance()->GetHwnd();
ActivateFrameWindow( hwndMainFrame );
if( CAppMode::getInstance()->IsViewMode() ){ /* ビューモード */
ConfirmBeep();
nRet = ::MYMESSAGEBOX(
hwndMainFrame,
MB_YESNOCANCEL | MB_ICONQUESTION | MB_TOPMOST,
GSTR_APPNAME,
LS(STR_ERR_DLGEDITDOC30),
pszTitle
);
switch( nRet ){
case IDYES:
nBool = m_cDocFileOperation.FileSaveAs(); // 2006.12.30 ryoji
return nBool;
case IDNO:
return TRUE;
case IDCANCEL:
default:
return FALSE;
}
}
else{
ConfirmBeep();
if (m_cDocFile.IsChgCodeSet()) {
nRet = ::MYMESSAGEBOX(
hwndMainFrame,
MB_YESNOCANCEL | MB_ICONQUESTION | MB_TOPMOST,
GSTR_APPNAME,
LS(STR_CHANGE_CHARSET),
pszTitle);
}
else {
nRet = ::MYMESSAGEBOX(
hwndMainFrame,
MB_YESNOCANCEL | MB_ICONQUESTION | MB_TOPMOST,
GSTR_APPNAME,
LS(STR_ERR_DLGEDITDOC31),
pszTitle
);
}
switch( nRet ){
case IDYES:
if( m_cDocFile.GetFilePathClass().IsValidPath() ){
nBool = m_cDocFileOperation.FileSave(); // 2006.12.30 ryoji
}
else{
nBool = m_cDocFileOperation.FileSaveAs(); // 2006.12.30 ryoji
}
return nBool;
case IDNO:
return TRUE;
case IDCANCEL:
default:
if (m_cDocFile.IsChgCodeSet()) {
m_cDocFile.CancelChgCodeSet(); // 文字コードセットの変更をキャンセルする
this->m_pcEditWnd->GetActiveView().GetCaret().ShowCaretPosInfo(); // ステータス表示
}
return FALSE;
}
}
}
/*! @brief マクロ自動実行
@param type [in] 自動実行マクロ番号
@return
@author ryoji
@date 2006.09.01 ryoji 作成
@date 2007.07.20 genta HandleCommandに追加情報を渡す.
自動実行マクロで発行したコマンドはキーマクロに保存しない
*/
void CEditDoc::RunAutoMacro( int idx, LPCTSTR pszSaveFilePath )
{
// 開ファイル/タイプ変更時はアウトラインを再解析する
if( pszSaveFilePath == NULL ){
m_pcEditWnd->m_cDlgFuncList.Refresh();
}
static bool bRunning = false;
if( bRunning )
return; // 再入り実行はしない
bRunning = true;
if( CEditApp::getInstance()->m_pcSMacroMgr->IsEnabled(idx) ){
if( !( ::GetAsyncKeyState(VK_SHIFT) & 0x8000 ) ){ // Shift キーが押されていなければ実行
if( NULL != pszSaveFilePath )
m_cDocFile.SetSaveFilePath(pszSaveFilePath);