You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
(30) |
Aug
(6) |
Sep
(3) |
Oct
(1) |
Nov
(13) |
Dec
(15) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
(17) |
Mar
(7) |
Apr
(10) |
May
(34) |
Jun
(17) |
Jul
(150) |
Aug
(59) |
Sep
(186) |
Oct
(57) |
Nov
(45) |
Dec
(22) |
2005 |
Jan
(10) |
Feb
(10) |
Mar
(6) |
Apr
(24) |
May
(10) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(35) |
Nov
(12) |
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(7) |
Nov
(1) |
Dec
|
From: boca4711 <boc...@us...> - 2005-10-16 12:01:39
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17069 Modified Files: AnyEditView.cpp AnyEditView.h Log Message: - Added calltip support - Added Jump to last change - Added insert filename, path - Added insert date - Added insert GUID - Added join/split - Added normalize - Added justification (left, right, center, block) Index: AnyEditView.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEditView.h,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** AnyEditView.h 12 Oct 2005 18:55:57 -0000 1.51 --- AnyEditView.h 16 Oct 2005 12:01:30 -0000 1.52 *************** *** 134,137 **** --- 134,141 ---- // Generated message map functions protected: + void GetAndRemoveTextBlock(CStringArray& arText); + bool m_bSmartTab; + void DoInsertText(CString strText); + void DoCodelist(bool bOneWord); bool m_bReadOnlySave; void StopIncrementalSearch(void); *************** *** 297,300 **** --- 301,325 ---- afx_msg void OnUpdateEditAdvancedInsertTextIntoLines(CCmdUI* pCmdUI); afx_msg void OnUpdateSearchFindreplace(CCmdUI* pCmdUI); + afx_msg void OnToolsCalltip(); + afx_msg void OnUpdateToolsCalltip(CCmdUI* pCmdUI); + afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags); + afx_msg void OnSearchJumpToLastChange(); + afx_msg void OnEditInsertFilename(); + afx_msg void OnEditInsertFilenameWithPath(); + afx_msg void OnEditInsertPath(); + afx_msg void OnEditInsertDateTime(); + afx_msg void OnEditInsertDate(); + afx_msg void OnEditInsertGuid(); + afx_msg void OnEditTab(); + afx_msg void OnEditFormatJoin(); + afx_msg void OnEditFormatSplit(); + afx_msg void OnUpdateEditFormatJoin(CCmdUI* pCmdUI); + afx_msg void OnUpdateEditFormatSplit(CCmdUI* pCmdUI); + afx_msg void OnEditFormatNormalize(); + afx_msg void OnUpdateEditFormatNormalize(CCmdUI* pCmdUI); + afx_msg void OnEditFormatLeft(); + afx_msg void OnEditFormatRight(); + afx_msg void OnEditFormatCenter(); + afx_msg void OnEditFormatBlock(); //}}AFX_MSG afx_msg void OnEditFind(); Index: AnyEditView.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEditView.cpp,v retrieving revision 1.91 retrieving revision 1.92 diff -C2 -d -r1.91 -r1.92 *** AnyEditView.cpp 8 May 2005 10:58:48 -0000 1.91 --- AnyEditView.cpp 16 Oct 2005 12:01:30 -0000 1.92 *************** *** 43,46 **** --- 43,51 ---- #include "Misc.h" #include "FileSpec.h" + #include "FolderDlg.h" + #include "DateDlg.h" + #include "DateTimeFormat.h" + #include "PropertiesDlg.h" + #include "FilePropertyDlg.h" #ifdef _DEBUG [...1100 lines suppressed...] + arText.SetAtGrow(nLine, strText.Mid(nLineStart)); + nLine++; + strText.Empty(); + } + if (j != nLastLine || bLastLineEmpty) + { + arText.SetAtGrow(nLine, _T("")); + nLine++; + } + } + else + strText += _T(' ') + strLine; + } + + // remove old selection + m_Scintilla.SetSel(nStartPos, nEndPos); + strText = m_Scintilla.GetSelText(); + m_Scintilla.TargetFromSelection(); + m_Scintilla.ReplaceTarget(0, _T("")); + } |
From: boca4711 <boc...@us...> - 2005-10-16 11:58:49
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16522 Modified Files: AnyEditDoc.cpp AnyEditDoc.h Log Message: - Add save last positions - Removed error message "Check for write permission in Temp directory. Class view disabled!" - File reload is possible on non modified files too Index: AnyEditDoc.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEditDoc.h,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** AnyEditDoc.h 12 Oct 2005 18:55:57 -0000 1.28 --- AnyEditDoc.h 16 Oct 2005 11:58:41 -0000 1.29 *************** *** 106,113 **** --- 106,118 ---- // Implementation public: + void LockCheckLastAccessTime(bool bLock); + bool IsOnOpenFile(void); + void SetLastChangePosition(long nPos, long nOffset); + long GetLastChangePosition(long nPos); bool IsFileReadOnly(void); void ReloadFile(void); CAnyEditView* GetFirstEditView() const; void SetDocScintilla(CScintillaEx * m_pscin); + void SetLastAccessTime(); #ifdef _DEBUG *************** *** 117,120 **** --- 122,127 ---- protected: + bool m_bOnOpenFile; + long m_arLastPositions[3]; // the three last textpositions bool m_bLockCheckLastAccessTime; bool m_bFileReadOnly; *************** *** 122,126 **** // Helpers - void SetLastAccessTime(); void RemoveTempCopy(BOOL bForgetName = FALSE); void CleanProjectFile(); --- 129,132 ---- Index: AnyEditDoc.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEditDoc.cpp,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -d -r1.53 -r1.54 *** AnyEditDoc.cpp 14 Apr 2005 12:01:42 -0000 1.53 --- AnyEditDoc.cpp 16 Oct 2005 11:58:41 -0000 1.54 *************** *** 96,99 **** --- 96,102 ---- m_bLockCheckLastAccessTime = false; m_bSelectCopy = false; + for (int i = 0; i < 3; i++) + m_arLastPositions[i] = INVALID_POSITION; + m_bOnOpenFile = false; } *************** *** 281,286 **** --- 284,295 ---- // Use Scintilla to open the file. CAnyEditView* pFirstView = GetFirstEditView(); + m_bOnOpenFile = true; if (!pFirstView->GetScintillaControl()->OpenFile(lpszPathName)) + { + m_bOnOpenFile = false; return FALSE; + } + + m_bOnOpenFile = false; SetPathName(lpszPathName); *************** *** 588,592 **** if(!fp.Open((LPCTSTR)m_sTempCopyPath, CFile::modeCreate | CFile::modeWrite, &e)) { ! AfxMessageBox("Check for Write permissions in Temp directory! Class view disabled !"); return bResult; } --- 597,602 ---- if(!fp.Open((LPCTSTR)m_sTempCopyPath, CFile::modeCreate | CFile::modeWrite, &e)) { ! // AfxMessageBox("Check for Write permissions in Temp directory! Class view disabled !"); ! // try later again return bResult; } *************** *** 916,920 **** --- 926,932 ---- int nCurrentLine = pFirstView->GetScintillaControl()->GetCurLineNumber(); pFirstView->GetScintillaControl()->SetFocus(); + m_bOnOpenFile = true; pFirstView->GetScintillaControl()->OpenFile(GetPathName()); + m_bOnOpenFile = false; if (nCurrentLine < pFirstView->GetScintillaControl()->GetLineCount()) pFirstView->GetScintillaControl()->GotoLineEnsureVisible(nCurrentLine); *************** *** 1054,1057 **** void CAnyEditDoc::OnUpdateFileReload(CCmdUI* pCmdUI) { ! pCmdUI->Enable(! GetPathName().IsEmpty() && IsModified()); } --- 1066,1158 ---- void CAnyEditDoc::OnUpdateFileReload(CCmdUI* pCmdUI) { ! // pCmdUI->Enable(! GetPathName().IsEmpty() && IsModified()); ! pCmdUI->Enable(! GetPathName().IsEmpty() ); ! } ! ! /// Get last position of change. ! long CAnyEditDoc::GetLastChangePosition(long nPos) ! { ! CScintillaEx* pScintilla = GetFirstEditView()->GetScintillaControl(); ! int nCurrentLine = pScintilla->LineFromPosition(nPos); ! ! // check if current position is on same line ! int nIndex = -1; ! for (int i = 0; i < 3; i++) ! { ! if (m_arLastPositions[i] != INVALID_POSITION && pScintilla->LineFromPosition(m_arLastPositions[i]) == nCurrentLine) ! { ! nIndex = i; ! break; ! } ! } ! long nLastPosition; ! if (nIndex == 0 || nIndex == 1) ! nLastPosition = m_arLastPositions[nIndex + 1]; ! else ! nLastPosition = m_arLastPositions[0]; ! ! // last position of change ! return nLastPosition; ! } ! ! /// Set last position of change, remove oldest entry and adjust other positions with offset if needed. ! void CAnyEditDoc::SetLastChangePosition(long nPos, long nOffset) ! { ! CScintillaEx* pScintilla = GetFirstEditView()->GetScintillaControl(); ! int nCurrentLine; ! long nNewPos = nPos + nOffset; ! ! nCurrentLine = pScintilla->LineFromPosition(nNewPos); ! // check if current position is on same line ! int nIndex = -1; ! for (int i = 0; i < 3; i++) ! { ! // ignore invalid positions ! if (m_arLastPositions[i] == INVALID_POSITION) ! break; ! if (pScintilla->LineFromPosition(m_arLastPositions[i]) == nCurrentLine) ! { ! nIndex = i; ! break; ! } ! if (i == 0 && pScintilla->LineFromPosition(m_arLastPositions[i]) == pScintilla->LineFromPosition(nPos)) ! { ! // check if last change was on same position e.g. pasting some lines ! nIndex = i; ! break; ! } ! } ! ! if (nIndex == 0) ! { ! m_arLastPositions[0] = nNewPos; ! } ! else if (nIndex == 1) ! { ! m_arLastPositions[1] = m_arLastPositions[0]; ! m_arLastPositions[0] = nNewPos; ! } ! else // (nIndex == 2 || nIndex == -1) ! { ! m_arLastPositions[2] = m_arLastPositions[1]; ! m_arLastPositions[1] = m_arLastPositions[0]; ! m_arLastPositions[0] = nNewPos; ! } ! ! // adjust positions with offset ! if (m_arLastPositions[2] > nPos) ! m_arLastPositions[2] += nOffset; ! if (m_arLastPositions[1] > nPos) ! m_arLastPositions[1] += nOffset; ! } ! ! /// If file is opened IsOnOpenFile returns true otherwise false ! bool CAnyEditDoc::IsOnOpenFile() ! { ! return m_bOnOpenFile; ! } ! ! void CAnyEditDoc::LockCheckLastAccessTime(bool bLock) ! { ! m_bLockCheckLastAccessTime = bLock; } |
From: Leon W. <moo...@us...> - 2005-10-12 18:58:47
|
Update of /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9908/Config/Default/Syntax Modified Files: asm.syn cpp.syn css.syn default.syn html.syn java.syn javascript.syn pascal.syn perl.syn python.syn sql.syn xml.syn Log Message: Changed default font to Courier New. Index: default.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/default.syn,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** default.syn 21 Dec 2004 08:27:51 -0000 1.10 --- default.syn 12 Oct 2005 18:58:39 -0000 1.11 *************** *** 50,54 **** <Name>Whitespace</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 50,54 ---- <Name>Whitespace</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 64,68 **** <Name>Default</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 64,68 ---- <Name>Default</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 78,82 **** <Name>Line Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 78,82 ---- <Name>Line Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 92,96 **** <Name>Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 92,96 ---- <Name>Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 106,110 **** <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 106,110 ---- <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 120,124 **** <Name>Indentation Guides</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 120,124 ---- <Name>Indentation Guides</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> Index: cpp.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/cpp.syn,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** cpp.syn 21 Dec 2004 08:27:51 -0000 1.13 --- cpp.syn 12 Oct 2005 18:58:39 -0000 1.14 *************** *** 60,64 **** <Name>Whitespace</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 60,64 ---- <Name>Whitespace</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 74,78 **** <Name>Default</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 74,78 ---- <Name>Default</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 88,92 **** <Name>Line Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 88,92 ---- <Name>Line Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 102,106 **** <Name>Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 102,106 ---- <Name>Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 116,120 **** <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 116,120 ---- <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 130,134 **** <Name>Indentation Guides</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 130,134 ---- <Name>Indentation Guides</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 144,148 **** <Name>Comment Block</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 144,148 ---- <Name>Comment Block</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 158,162 **** <Name>Single Line Comment</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 158,162 ---- <Name>Single Line Comment</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 172,176 **** <Name>Comment Doc</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 172,176 ---- <Name>Comment Doc</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 186,190 **** <Name>Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 186,190 ---- <Name>Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 200,204 **** <Name>Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 200,204 ---- <Name>Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 214,218 **** <Name>Strings</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 214,218 ---- <Name>Strings</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 228,232 **** <Name>Characters</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 228,232 ---- <Name>Characters</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 242,246 **** <Name>UUIDs</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 242,246 ---- <Name>UUIDs</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 256,260 **** <Name>Preprocessor Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 256,260 ---- <Name>Preprocessor Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 270,274 **** <Name>Operators</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 270,274 ---- <Name>Operators</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 284,288 **** <Name>Normal Text</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 284,288 ---- <Name>Normal Text</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 298,302 **** <Name>String EOL</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 298,302 ---- <Name>String EOL</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 312,316 **** <Name>Verbatim</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 312,316 ---- <Name>Verbatim</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 326,330 **** <Name>Regular Expression</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 326,330 ---- <Name>Regular Expression</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 340,344 **** <Name>Comment Line Doc</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 340,344 ---- <Name>Comment Line Doc</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 354,358 **** <Name>Keywords 2</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 354,358 ---- <Name>Keywords 2</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 368,372 **** <Name>Comment Doc Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 368,372 ---- <Name>Comment Doc Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 382,386 **** <Name>Comment Doc Keywords Error</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 382,386 ---- <Name>Comment Doc Keywords Error</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 396,400 **** <Name>Global Class</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 396,400 ---- <Name>Global Class</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> Index: html.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/html.syn,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** html.syn 9 Oct 2005 12:26:17 -0000 1.12 --- html.syn 12 Oct 2005 18:58:39 -0000 1.13 *************** *** 59,63 **** <Name>Whitespace</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 59,63 ---- <Name>Whitespace</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> [...1476 lines suppressed...] <Bold>0</Bold> --- 1655,1659 ---- <Name>PHP DQ String Variable</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 1669,1673 **** <Name>PHP Operator</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 1669,1673 ---- <Name>PHP Operator</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> Index: pascal.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/pascal.syn,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** pascal.syn 21 Dec 2004 08:27:51 -0000 1.10 --- pascal.syn 12 Oct 2005 18:58:39 -0000 1.11 *************** *** 59,63 **** <Name>Whitespace</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 59,63 ---- <Name>Whitespace</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 73,77 **** <Name>Default</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 73,77 ---- <Name>Default</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 87,91 **** <Name>Line Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 87,91 ---- <Name>Line Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 101,105 **** <Name>Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 101,105 ---- <Name>Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 115,119 **** <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 115,119 ---- <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 129,133 **** <Name>Indentation Guides</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 129,133 ---- <Name>Indentation Guides</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 143,147 **** <Name>Comment Block</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 143,147 ---- <Name>Comment Block</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 157,161 **** <Name>Single Line Comment</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 157,161 ---- <Name>Single Line Comment</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 171,175 **** <Name>Comment Doc</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 171,175 ---- <Name>Comment Doc</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 185,189 **** <Name>Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 185,189 ---- <Name>Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 199,203 **** <Name>Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 199,203 ---- <Name>Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 213,217 **** <Name>Strings</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 213,217 ---- <Name>Strings</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 227,231 **** <Name>Characters</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 227,231 ---- <Name>Characters</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 241,245 **** <Name>UUIDs</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 241,245 ---- <Name>UUIDs</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 255,259 **** <Name>Preprocessor Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 255,259 ---- <Name>Preprocessor Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 269,273 **** <Name>Operators</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 269,273 ---- <Name>Operators</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 283,287 **** <Name>Normal Text</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 283,287 ---- <Name>Normal Text</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 297,301 **** <Name>String EOL</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 297,301 ---- <Name>String EOL</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 311,315 **** <Name>Verbatim</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 311,315 ---- <Name>Verbatim</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 325,329 **** <Name>Inline ASM</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 325,329 ---- <Name>Inline ASM</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 339,343 **** <Name>Comment Line Doc</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 339,343 ---- <Name>Comment Line Doc</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 353,357 **** <Name>Keywords 2</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 353,357 ---- <Name>Keywords 2</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 367,371 **** <Name>Comment Doc Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 367,371 ---- <Name>Comment Doc Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 381,385 **** <Name>Comment Doc Keywords Error</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 381,385 ---- <Name>Comment Doc Keywords Error</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 395,399 **** <Name>Global Class</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 395,399 ---- <Name>Global Class</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> Index: xml.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/xml.syn,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** xml.syn 21 Dec 2004 08:27:51 -0000 1.10 --- xml.syn 12 Oct 2005 18:58:39 -0000 1.11 *************** *** 57,61 **** <Name>Whitespace</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 57,61 ---- <Name>Whitespace</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 71,75 **** <Name>Default</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 71,75 ---- <Name>Default</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 85,89 **** <Name>Line Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 85,89 ---- <Name>Line Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 99,103 **** <Name>Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 99,103 ---- <Name>Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 113,117 **** <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 113,117 ---- <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 127,131 **** <Name>Indentation Guides</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 127,131 ---- <Name>Indentation Guides</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 141,145 **** <Name>Tags</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 141,145 ---- <Name>Tags</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 155,159 **** <Name>Unknown Tags</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 155,159 ---- <Name>Unknown Tags</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 169,173 **** <Name>Attributes</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 169,173 ---- <Name>Attributes</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 183,187 **** <Name>Unknown Attributes</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 183,187 ---- <Name>Unknown Attributes</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 197,201 **** <Name>Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 197,201 ---- <Name>Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 211,215 **** <Name>Double Quoted Strings</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 211,215 ---- <Name>Double Quoted Strings</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 225,229 **** <Name>Single Quoted Strings</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 225,229 ---- <Name>Single Quoted Strings</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 239,243 **** <Name>Inside Tags</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 239,243 ---- <Name>Inside Tags</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 253,257 **** <Name>Comment</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 253,257 ---- <Name>Comment</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 267,271 **** <Name>Entity</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 267,271 ---- <Name>Entity</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 281,285 **** <Name>End Tag</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 281,285 ---- <Name>End Tag</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 295,299 **** <Name>XML Start</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 295,299 ---- <Name>XML Start</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 309,313 **** <Name>XML End</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 309,313 ---- <Name>XML End</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 323,327 **** <Name>Javascript</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 323,327 ---- <Name>Javascript</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 337,341 **** <Name>ASP</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 337,341 ---- <Name>ASP</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 351,355 **** <Name>ASP at</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 351,355 ---- <Name>ASP at</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 365,369 **** <Name>CDATA</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 365,369 ---- <Name>CDATA</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 379,383 **** <Name>Question</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 379,383 ---- <Name>Question</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 393,397 **** <Name>Value</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 393,397 ---- <Name>Value</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 407,411 **** <Name>XC Comment</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 407,411 ---- <Name>XC Comment</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 421,425 **** <Name>SGML Tags</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 421,425 ---- <Name>SGML Tags</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 435,439 **** <Name>SGML Command</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 435,439 ---- <Name>SGML Command</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 449,453 **** <Name>SGML 1st Param</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 449,453 ---- <Name>SGML 1st Param</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 463,467 **** <Name>SGML Double Quoted String</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 463,467 ---- <Name>SGML Double Quoted String</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 477,481 **** <Name>SGML Single Quoted String</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 477,481 ---- <Name>SGML Single Quoted String</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 491,495 **** <Name>SGML Error</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 491,495 ---- <Name>SGML Error</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 505,509 **** <Name>SGML Special Type</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 505,509 ---- <Name>SGML Special Type</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 519,523 **** <Name>SGML Entity</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 519,523 ---- <Name>SGML Entity</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 533,537 **** <Name>SGML Comment</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 533,537 ---- <Name>SGML Comment</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 547,551 **** <Name>SGML 1st Param Comment</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 547,551 ---- <Name>SGML 1st Param Comment</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 561,565 **** <Name>SGML Block</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 561,565 ---- <Name>SGML Block</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> Index: sql.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/sql.syn,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** sql.syn 21 Dec 2004 08:27:51 -0000 1.5 --- sql.syn 12 Oct 2005 18:58:39 -0000 1.6 *************** *** 56,60 **** <Name>Whitespace</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 56,60 ---- <Name>Whitespace</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 70,74 **** <Name>Default</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 70,74 ---- <Name>Default</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 84,88 **** <Name>Line Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 84,88 ---- <Name>Line Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 98,102 **** <Name>Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 98,102 ---- <Name>Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 112,116 **** <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 112,116 ---- <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 126,130 **** <Name>Indentation Guides</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 126,130 ---- <Name>Indentation Guides</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 140,144 **** <Name>Comments</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 140,144 ---- <Name>Comments</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 154,158 **** <Name>Line Comments</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 154,158 ---- <Name>Line Comments</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 168,172 **** <Name>Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 168,172 ---- <Name>Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 182,186 **** <Name>Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 182,186 ---- <Name>Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 196,200 **** <Name>Double quoted string</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 196,200 ---- <Name>Double quoted string</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 210,214 **** <Name>Single quoted string</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 210,214 ---- <Name>Single quoted string</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 224,228 **** <Name>Operators</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 224,228 ---- <Name>Operators</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 238,242 **** <Name>Identifiers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 238,242 ---- <Name>Identifiers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> Index: javascript.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/javascript.syn,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** javascript.syn 21 Dec 2004 08:27:51 -0000 1.12 --- javascript.syn 12 Oct 2005 18:58:39 -0000 1.13 *************** *** 60,64 **** <Name>Whitespace</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 60,64 ---- <Name>Whitespace</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 74,78 **** <Name>Default</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 74,78 ---- <Name>Default</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 88,92 **** <Name>Line Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 88,92 ---- <Name>Line Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 102,106 **** <Name>Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 102,106 ---- <Name>Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 116,120 **** <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 116,120 ---- <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 130,134 **** <Name>Indentation Guides</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 130,134 ---- <Name>Indentation Guides</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 144,148 **** <Name>Comment Block</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 144,148 ---- <Name>Comment Block</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 158,162 **** <Name>Single Line Comment</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 158,162 ---- <Name>Single Line Comment</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 172,176 **** <Name>Comment Doc</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 172,176 ---- <Name>Comment Doc</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 186,190 **** <Name>Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 186,190 ---- <Name>Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 200,204 **** <Name>Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 200,204 ---- <Name>Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 214,218 **** <Name>Strings</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 214,218 ---- <Name>Strings</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 228,232 **** <Name>Characters</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 228,232 ---- <Name>Characters</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 242,246 **** <Name>UUIDs</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 242,246 ---- <Name>UUIDs</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 256,260 **** <Name>Preprocessor Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 256,260 ---- <Name>Preprocessor Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 270,274 **** <Name>Operators</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 270,274 ---- <Name>Operators</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 284,288 **** <Name>Normal Text</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 284,288 ---- <Name>Normal Text</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 298,302 **** <Name>String EOL</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 298,302 ---- <Name>String EOL</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 312,316 **** <Name>Verbatim</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 312,316 ---- <Name>Verbatim</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 326,330 **** <Name>Regular Expression</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 326,330 ---- <Name>Regular Expression</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 340,344 **** <Name>Comment Line Doc</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 340,344 ---- <Name>Comment Line Doc</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 354,358 **** <Name>Keywords 2</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 354,358 ---- <Name>Keywords 2</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 368,372 **** <Name>Comment Doc Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 368,372 ---- <Name>Comment Doc Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 382,386 **** <Name>Comment Doc Keywords Error</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 382,386 ---- <Name>Comment Doc Keywords Error</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 396,400 **** <Name>Global Class</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 396,400 ---- <Name>Global Class</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> Index: java.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/java.syn,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** java.syn 21 Dec 2004 08:27:51 -0000 1.14 --- java.syn 12 Oct 2005 18:58:39 -0000 1.15 *************** *** 60,64 **** <Name>Whitespace</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 60,64 ---- <Name>Whitespace</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 74,78 **** <Name>Default</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 74,78 ---- <Name>Default</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 88,92 **** <Name>Line Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 88,92 ---- <Name>Line Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 102,106 **** <Name>Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 102,106 ---- <Name>Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 116,120 **** <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 116,120 ---- <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 130,134 **** <Name>Indentation Guides</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 130,134 ---- <Name>Indentation Guides</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 144,148 **** <Name>Comment Block</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 144,148 ---- <Name>Comment Block</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 158,162 **** <Name>Single Line Comment</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 158,162 ---- <Name>Single Line Comment</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 172,176 **** <Name>Comment Doc</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 172,176 ---- <Name>Comment Doc</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 186,190 **** <Name>Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 186,190 ---- <Name>Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 200,204 **** <Name>Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 200,204 ---- <Name>Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 214,218 **** <Name>Strings</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 214,218 ---- <Name>Strings</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 228,232 **** <Name>Characters</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 228,232 ---- <Name>Characters</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 242,246 **** <Name>UUIDs</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 242,246 ---- <Name>UUIDs</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 256,260 **** <Name>Preprocessor Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 256,260 ---- <Name>Preprocessor Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 270,274 **** <Name>Operators</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 270,274 ---- <Name>Operators</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 284,288 **** <Name>Normal Text</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 284,288 ---- <Name>Normal Text</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 298,302 **** <Name>String EOL</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 298,302 ---- <Name>String EOL</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 312,316 **** <Name>Verbatim</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 312,316 ---- <Name>Verbatim</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 326,330 **** <Name>Regular Expression</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 326,330 ---- <Name>Regular Expression</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 340,344 **** <Name>Comment Line Doc</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 340,344 ---- <Name>Comment Line Doc</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 354,358 **** <Name>Keywords 2</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 354,358 ---- <Name>Keywords 2</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 368,372 **** <Name>Comment Doc Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 368,372 ---- <Name>Comment Doc Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 382,386 **** <Name>Comment Doc Keywords Error</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 382,386 ---- <Name>Comment Doc Keywords Error</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 396,400 **** <Name>Global Class</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 396,400 ---- <Name>Global Class</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> Index: python.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/python.syn,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** python.syn 21 Dec 2004 08:27:51 -0000 1.12 --- python.syn 12 Oct 2005 18:58:39 -0000 1.13 *************** *** 57,61 **** <Name>Whitespace</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 57,61 ---- <Name>Whitespace</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 71,75 **** <Name>Default</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 71,75 ---- <Name>Default</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 85,89 **** <Name>Line Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 85,89 ---- <Name>Line Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 99,103 **** <Name>Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 99,103 ---- <Name>Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 113,117 **** <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 113,117 ---- <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 127,131 **** <Name>Indentation Guides</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 127,131 ---- <Name>Indentation Guides</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 141,145 **** <Name>Comment</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 141,145 ---- <Name>Comment</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 155,159 **** <Name>Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 155,159 ---- <Name>Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 169,173 **** <Name>Strings</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 169,173 ---- <Name>Strings</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 183,187 **** <Name>Characters</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 183,187 ---- <Name>Characters</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 197,201 **** <Name>Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 197,201 ---- <Name>Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 211,215 **** <Name>Triple</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 211,215 ---- <Name>Triple</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 225,229 **** <Name>Triple Double</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 225,229 ---- <Name>Triple Double</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 239,243 **** <Name>Classname</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 239,243 ---- <Name>Classname</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 253,257 **** <Name>Defined Name</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 253,257 ---- <Name>Defined Name</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 267,271 **** <Name>Operators</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 267,271 ---- <Name>Operators</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 281,285 **** <Name>Normal Text</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 281,285 ---- <Name>Normal Text</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 295,299 **** <Name>Comment Block</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 295,299 ---- <Name>Comment Block</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 309,313 **** <Name>String EOL</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 309,313 ---- <Name>String EOL</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> Index: css.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/css.syn,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** css.syn 9 Oct 2005 12:28:31 -0000 1.12 --- css.syn 12 Oct 2005 18:58:39 -0000 1.13 *************** *** 56,60 **** <Name>Whitespace</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 56,60 ---- <Name>Whitespace</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 70,74 **** <Name>Default</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 70,74 ---- <Name>Default</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 84,88 **** <Name>Line Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 84,88 ---- <Name>Line Numbers</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 98,102 **** <Name>Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 98,102 ---- <Name>Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 112,116 **** <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 112,116 ---- <Name>Bad Brace Matching</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 126,130 **** <Name>Indentation Guides</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 126,130 ---- <Name>Indentation Guides</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 140,144 **** <Name>Tag</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 140,144 ---- <Name>Tag</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 154,158 **** <Name>Class</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 154,158 ---- <Name>Class</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 168,172 **** <Name>Pseudo Class</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 168,172 ---- <Name>Pseudo Class</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 182,186 **** <Name>Unknown Pseudo Class</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 182,186 ---- <Name>Unknown Pseudo Class</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 196,200 **** <Name>Operator</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 196,200 ---- <Name>Operator</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 210,214 **** <Name>CSS1 Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 210,214 ---- <Name>CSS1 Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 224,228 **** <Name>Unknown Identifier</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 224,228 ---- <Name>Unknown Identifier</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 238,242 **** <Name>Value</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 238,242 ---- <Name>Value</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 252,256 **** <Name>Comment</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 252,256 ---- <Name>Comment</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 266,270 **** <Name>ID</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 266,270 ---- <Name>ID</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 280,284 **** <Name>Important</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 280,284 ---- <Name>Important</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 294,298 **** <Name>Directive</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>1</Bold> --- 294,298 ---- <Name>Directive</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>1</Bold> *************** *** 308,312 **** <Name>Double Quoted String</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 308,312 ---- <Name>Double Quoted String</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 322,326 **** <Name>Single Quoted String</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 322,326 ---- <Name>Single Quoted String</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 336,340 **** <Name>CSS2 Keywords</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 336,340 ---- <Name>CSS2 Keywords</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 350,354 **** <Name>Attribute</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 350,354 ---- <Name>Attribute</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> Index: perl.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/perl.syn,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** perl.syn 21 Dec 2004 08:27:51 -0000 1.12 --- perl.syn 12 Oct 2005 18:58:39 -0000 1.13 *************** *** 56,60 **** <Name>Whitespace</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 56,60 ---- <Name>Whitespace</Name> <Font> ! <Name>Courier New New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 70,74 **** <Name>Default</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 70,74 ---- <Name>Default</Name> <Font> ! <Name>Courier New</Name> <Size>10</Size> <Bold>0</Bold> *************** *** 84,88 **** <Name>Line Numbers</Name> <Font> ! <Name>Courier</Name> <Size>10</Size> <Bold>0</Bold> --- 84,88 --... [truncated message content] |
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9079 Modified Files: AECommandLineInfo.cpp AECommandLineInfo.h AEPlugin.cpp AEPlugin.h AnyEdit.h AnyEditChildFrame.h AnyEditDoc.h AnyEditView.h ArrayParser.h AskFileSaveDlg.cpp AskFileSaveDlg.h AssociationPref.h AutoComp.h AutoCompImages.h BrowserDoc.cpp BrowserDoc.h BrowserFrame.h BrowserView.cpp BrowserView.h BugReport.h ClassTree.cpp ClassTree.h ClassViewPref.cpp ClassViewPref.h ClipTextEditor.h ClipTree.h CodingPref.h ColorPref.h ConfigFile.cpp ConfigFile.h CreateTagThread.cpp CreateTagThread.h CreditStatic.cpp CreditStatic.h CreditsThread.cpp CreditsThread.h EditorPref.h FileDialogEx.cpp FileDialogEx.h FileTree.h FindComboBox.h FindDialog.cpp FindDialog.h FindInFilesDlg.h FindReplace.cpp FindReplace.h FindReplaceManager.cpp FindReplaceManager.h FontPref.h FuncComboBox.h GDIThread.cpp GDIThread.h GeneralPref.h HtmlFile.cpp InputBox.h KeywordPref.cpp KeywordPref.h LangPref.h LangToolsPref.h MainColorFontPref.cpp MainColorFontPref.h MainFrm.h Misc.h MyComboBox.cpp NewFile.cpp NewFile.h NewParent.cpp NewParent.h NewProject.cpp NewProject.h NewWorkspace.cpp NewWorkspace.h OpenDocsListCtrl.cpp OpenDocsListCtrl.h OutputBar.h OutputEdit.cpp OutputEdit.h Parser.h ParserFactory.h Plugin.cpp Plugin.h Process.cpp Process.h PropertiesDlg.cpp PropertiesDlg.h QuickJump.cpp QuickJump.h RegProfile.cpp RegProfile.h RegexOutputParser.cpp RegexOutputParser.h ScintillaEx.cpp ScintillaEx.h SelectFolderDlg.cpp SelectFolderDlg.h SortDlg.cpp SortDlg.h Splash.cpp Splash.h StdAfx.h SyntaxFile.cpp SyntaxFile.h TabCtrlSSL.cpp TabCtrlSSL.h TabPageSSL.cpp TabPageSSL.h TagManager.h ToolPref.h ToolRunner.cpp ToolRunner.h ToolsFile.cpp ToolsFile.h WorkspaceBar.h WorkspaceManager.cpp WorkspaceManager.h WorkspaceTreeCtrl.cpp WorkspaceTreeCtrl.h XMLFile.cpp XMLFile.h inserttextdlg.cpp inserttextdlg.h Log Message: Copyright header added. Index: OutputEdit.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/OutputEdit.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** OutputEdit.h 31 Jan 2005 22:55:51 -0000 1.6 --- OutputEdit.h 12 Oct 2005 18:55:57 -0000 1.7 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 M. Deepak + + 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. + + http://www.anyedit.org + *****************************************************************************/ + #if !defined(AFX_OUTPUTEDIT_H__D4127D16_A006_4E56_8266_660696D3A16C__INCLUDED_) #define AFX_OUTPUTEDIT_H__D4127D16_A006_4E56_8266_660696D3A16C__INCLUDED_ *************** *** 77,81 **** int GetCount(); void SetReadOnly(BOOL bReadOnly = TRUE) {m_bReadOnly = bReadOnly;}; ! DECLARE_MESSAGE_MAP() }; --- 101,105 ---- int GetCount(); void SetReadOnly(BOOL bReadOnly = TRUE) {m_bReadOnly = bReadOnly;}; ! DECLARE_MESSAGE_MAP() }; Index: XMLFile.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/XMLFile.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** XMLFile.cpp 14 Apr 2005 11:30:19 -0000 1.10 --- XMLFile.cpp 12 Oct 2005 18:55:57 -0000 1.11 *************** *** 1,4 **** /**************************************************************************** ! Copyright (C) AnyEdit Team This software is provided 'as-is', without any express or implied --- 1,4 ---- /**************************************************************************** ! Copyright (C) 2003-2005 L. Wennekers This software is provided 'as-is', without any express or implied Index: AnyEditDoc.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEditDoc.h,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** AnyEditDoc.h 14 Apr 2005 12:01:42 -0000 1.27 --- AnyEditDoc.h 12 Oct 2005 18:55:57 -0000 1.28 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 M. Deepak + + 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. + + http://www.anyedit.org + *****************************************************************************/ + // AnyEditDoc.h : interface of the CAnyEditDoc class // Index: RegexOutputParser.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/RegexOutputParser.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RegexOutputParser.cpp 17 Sep 2004 07:41:22 -0000 1.5 --- RegexOutputParser.cpp 12 Oct 2005 18:55:57 -0000 1.6 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 L. Wennekers + + 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. + + http://www.anyedit.org + *****************************************************************************/ + // RegexOutputParser.cpp *************** *** 127,131 **** re_pattern_buffer rex; re_registers regs; ! ZeroMemory( &rex, sizeof( rex ) ); rex.translate = NULL; --- 151,155 ---- re_pattern_buffer rex; re_registers regs; ! ZeroMemory( &rex, sizeof( rex ) ); rex.translate = NULL; *************** *** 133,141 **** rex.buffer = NULL; rex.allocated = 0; ! regs.num_regs = 4; regs.start = rftStartRegs; regs.end = rftEndRegs; ! // Compile the regular expression if( NULL != re_compile_pattern( reEntry->m_szRegex, reEntry->m_szRegex.GetLength(), &rex ) ) continue; --- 157,165 ---- rex.buffer = NULL; rex.allocated = 0; ! regs.num_regs = 4; regs.start = rftStartRegs; regs.end = rftEndRegs; ! // Compile the regular expression if( NULL != re_compile_pattern( reEntry->m_szRegex, reEntry->m_szRegex.GetLength(), &rex ) ) continue; Index: AECommandLineInfo.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AECommandLineInfo.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AECommandLineInfo.cpp 27 Aug 2004 13:36:30 -0000 1.1 --- AECommandLineInfo.cpp 12 Oct 2005 18:55:57 -0000 1.2 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 L. Wennekers + + 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. + + http://www.anyedit.org + *****************************************************************************/ + // AECommandLineInfo.cpp: implementation of the CAECommandLineInfo class. // Index: SelectFolderDlg.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/SelectFolderDlg.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SelectFolderDlg.cpp 18 May 2004 06:57:10 -0000 1.1 --- SelectFolderDlg.cpp 12 Oct 2005 18:55:57 -0000 1.2 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 G. Hachlili + + 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. + + http://www.anyedit.org + *****************************************************************************/ + // SelectFolderDlg.cpp : implementation file // *************** *** 44,48 **** // CSelectFolderDlg message handlers ! BOOL CSelectFolderDlg::OnInitDialog() { CDialog::OnInitDialog(); --- 68,72 ---- // CSelectFolderDlg message handlers ! BOOL CSelectFolderDlg::OnInitDialog() { CDialog::OnInitDialog(); *************** *** 70,78 **** m_treeFiles.SetFocus(); ! return FALSE; } ! void CSelectFolderDlg::OnOK() { if (m_treeFiles.GetSelectedItem() == NULL) --- 94,102 ---- m_treeFiles.SetFocus(); ! return FALSE; } ! void CSelectFolderDlg::OnOK() { if (m_treeFiles.GetSelectedItem() == NULL) *************** *** 87,91 **** else m_cbTypes.GetWindowText(m_sMask); ! CDialog::OnOK(); } --- 111,115 ---- else m_cbTypes.GetWindowText(m_sMask); ! CDialog::OnOK(); } Index: StdAfx.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/StdAfx.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** StdAfx.h 10 Jul 2004 19:13:53 -0000 1.12 --- StdAfx.h 12 Oct 2005 18:55:57 -0000 1.13 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 L. Wennekers + + 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. + + http://www.anyedit.org + *****************************************************************************/ + // stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but Index: NewFile.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/NewFile.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** NewFile.h 26 May 2004 22:52:58 -0000 1.3 --- NewFile.h 12 Oct 2005 18:55:57 -0000 1.4 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 M. Deepak + + 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. + + http://www.anyedit.org + *****************************************************************************/ + #if !defined(AFX_NEWFILE_H__A0197DC3_10F7_11D6_B413_C617EA01EE1B__INCLUDED_) #define AFX_NEWFILE_H__A0197DC3_10F7_11D6_B413_C617EA01EE1B__INCLUDED_ Index: NewWorkspace.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/NewWorkspace.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** NewWorkspace.h 26 May 2004 22:52:58 -0000 1.4 --- NewWorkspace.h 12 Oct 2005 18:55:57 -0000 1.5 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 M. Deepak + + 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. + + http://www.anyedit.org + *****************************************************************************/ + #if !defined(AFX_NEWWORKSPACE_H__A0197DC5_10F7_11D6_B413_C617EA01EE1B__INCLUDED_) #define AFX_NEWWORKSPACE_H__A0197DC5_10F7_11D6_B413_C617EA01EE1B__INCLUDED_ Index: ScintillaEx.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ScintillaEx.cpp,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** ScintillaEx.cpp 8 May 2005 11:06:38 -0000 1.25 --- ScintillaEx.cpp 12 Oct 2005 18:55:57 -0000 1.26 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 C. Sperber + + 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. + + http://www.anyedit.org + *****************************************************************************/ + // SCintillaEx.cpp: implementation of the CSCintillaEx class. // *************** *** 1035,1039 **** // Get the indentation iIndentation = GetLineIndentation( iLine - 1 ); ! // Begin Undo BeginUndoAction(); --- 1059,1063 ---- // Get the indentation iIndentation = GetLineIndentation( iLine - 1 ); ! // Begin Undo BeginUndoAction(); *************** *** 1080,1084 **** { SetSel(GetTargetStart(), GetTargetEnd()); ! EnsureVisibleEnforcePolicy( LineFromPosition( GetTargetStart() ) ); } --- 1104,1108 ---- { SetSel(GetTargetStart(), GetTargetEnd()); ! EnsureVisibleEnforcePolicy( LineFromPosition( GetTargetStart() ) ); } *************** *** 1500,1505 **** /// Compare two strings with numerical order where case is ignored. ! /** When the strings contain numbers at the beginning they are compared numerical. ! * element1 = 10 Text, element2 = 1 Text. * Result: element2 < element1 */ --- 1524,1529 ---- /// Compare two strings with numerical order where case is ignored. ! /** When the strings contain numbers at the beginning they are compared numerical. ! * element1 = 10 Text, element2 = 1 Text. * Result: element2 < element1 */ *************** *** 1553,1558 **** /// Compare two strings with numerical order where case is not ignored. ! /** When the strings contain numbers at the beginning they are compared numerical. ! * element1 = 10 Text, element2 = 1 Text. * Result: element2 < element1 */ --- 1577,1582 ---- /// Compare two strings with numerical order where case is not ignored. ! /** When the strings contain numbers at the beginning they are compared numerical. ! * element1 = 10 Text, element2 = 1 Text. * Result: element2 < element1 */ *************** *** 1836,1840 **** bool CScintillaEx::SaveFile(LPCTSTR filename) { ! // Save selection as line and column long nLineStart = LineFromPosition(GetSelectionStart()); long nColStart = GetColumn(GetSelectionStart()); --- 1860,1864 ---- bool CScintillaEx::SaveFile(LPCTSTR filename) { ! // Save selection as line and column long nLineStart = LineFromPosition(GetSelectionStart()); long nColStart = GetColumn(GetSelectionStart()); *************** *** 1873,1877 **** // Accept path separators '/' and '\', extension separator '.', and ':', MS drive unit // separator, and also used for separating the line number for grep. Same for '(' and ')' for cl. ! static bool isfilenamecharforsel(char ch) { return !strchr("\t\n\r \"$%'*,;<>?[]^`{|}", ch); --- 1897,1901 ---- // Accept path separators '/' and '\', extension separator '.', and ':', MS drive unit // separator, and also used for separating the line number for grep. Same for '(' and ')' for cl. ! static bool isfilenamecharforsel(char ch) { return !strchr("\t\n\r \"$%'*,;<>?[]^`{|}", ch); *************** *** 1897,1901 **** int len, ///< Size of the buffer. bool (*ischarforsel)(char ch), ///< Function returning @c true if the given char. is part of the selection. ! bool stripEol /*=true*/) { --- 1921,1925 ---- int len, ///< Size of the buffer. bool (*ischarforsel)(char ch), ///< Function returning @c true if the given char. is part of the selection. ! bool stripEol /*=true*/) { *************** *** 1913,1926 **** int lengthDoc, bool (*ischarforsel)(char ch), ///< Function returning @c true if the given char. is part of the selection. ! bool stripEol /*=true*/) { ! if (selStart == selEnd && ischarforsel) { // Try and find a word at the caret ! while ((selStart > 0) && (ischarforsel(GetCharAt(selStart - 1)))) { selStart--; } ! while ((selEnd < lengthDoc) && (ischarforsel(GetCharAt(selEnd)))) { selEnd++; --- 1937,1950 ---- int lengthDoc, bool (*ischarforsel)(char ch), ///< Function returning @c true if the given char. is part of the selection. ! bool stripEol /*=true*/) { ! if (selStart == selEnd && ischarforsel) { // Try and find a word at the caret ! while ((selStart > 0) && (ischarforsel(GetCharAt(selStart - 1)))) { selStart--; } ! while ((selEnd < lengthDoc) && (ischarforsel(GetCharAt(selEnd)))) { selEnd++; *************** *** 1928,1948 **** } sel[0] = '\0'; ! if (selEnd - selStart + 1 > len - 1) { selEnd = selStart + len - 1; } ! if (selStart < selEnd) { GetRange(selStart, selEnd, sel); } ! if (stripEol) { // Change whole line selected but normally end of line characters not wanted. // Remove possible terminating \r, \n, or \r\n. size_t sellen = strlen(sel); ! if (sellen >= 2 && (sel[sellen - 2] == '\r' && sel[sellen - 1] == '\n')) { sel[sellen - 2] = '\0'; ! } else if (sellen >= 1 && (sel[sellen - 1] == '\r' || sel[sellen - 1] == '\n')) { sel[sellen - 1] = '\0'; --- 1952,1972 ---- } sel[0] = '\0'; ! if (selEnd - selStart + 1 > len - 1) { selEnd = selStart + len - 1; } ! if (selStart < selEnd) { GetRange(selStart, selEnd, sel); } ! if (stripEol) { // Change whole line selected but normally end of line characters not wanted. // Remove possible terminating \r, \n, or \r\n. size_t sellen = strlen(sel); ! if (sellen >= 2 && (sel[sellen - 2] == '\r' && sel[sellen - 1] == '\n')) { sel[sellen - 2] = '\0'; ! } else if (sellen >= 1 && (sel[sellen - 1] == '\r' || sel[sellen - 1] == '\n')) { sel[sellen - 1] = '\0'; *************** *** 1963,1967 **** // Remove last line if selection ends on first position of line. ! if( PositionFromLine( nLine ) == GetSelectionEnd() ) nLine--; --- 1987,1991 ---- // Remove last line if selection ends on first position of line. ! if( PositionFromLine( nLine ) == GetSelectionEnd() ) nLine--; *************** *** 1980,1987 **** return _T("\r"); break; ! case SC_EOL_LF: return _T("\n"); break; ! case SC_EOL_CRLF: return _T("\r\n"); break; --- 2004,2011 ---- return _T("\r"); break; ! case SC_EOL_LF: return _T("\n"); break; ! case SC_EOL_CRLF: return _T("\r\n"); break; Index: WorkspaceManager.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/WorkspaceManager.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** WorkspaceManager.h 20 Sep 2004 18:57:55 -0000 1.9 --- WorkspaceManager.h 12 Oct 2005 18:55:57 -0000 1.10 *************** *** 1,12 **** /*********************************************************************\ ! ** ** FILE: WorkspaceManager.h ! ** ! ** PRODUCT: ! ** ! ** DESCRIPTION: ! ** ! ** ! ** \*********************************************************************/ --- 1,36 ---- + /**************************************************************************** + Copyright (C) 2003-2005 G. Hachlili + + 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. + + http://www.anyedit.org + *****************************************************************************/ + /*********************************************************************\ ! ** ** FILE: WorkspaceManager.h ! ** ! ** PRODUCT: ! ** ! ** DESCRIPTION: ! ** ! ** ! ** \*********************************************************************/ Index: SyntaxFile.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/SyntaxFile.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** SyntaxFile.cpp 14 Apr 2005 11:37:46 -0000 1.28 --- SyntaxFile.cpp 12 Oct 2005 18:55:57 -0000 1.29 *************** *** 1,4 **** /**************************************************************************** ! Copyright (C) AnyEdit Team This software is provided 'as-is', without any express or implied --- 1,4 ---- /**************************************************************************** ! Copyright (C) 2003-2005 L. Wennekers This software is provided 'as-is', without any express or implied Index: WorkspaceManager.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/WorkspaceManager.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** WorkspaceManager.cpp 24 Sep 2004 08:34:00 -0000 1.12 --- WorkspaceManager.cpp 12 Oct 2005 18:55:57 -0000 1.13 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 G. Hachlili + + 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. + + http://www.anyedit.org + *****************************************************************************/ + /*********************************************************************\ ** Index: ColorPref.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ColorPref.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ColorPref.h 26 Feb 2004 08:44:16 -0000 1.5 --- ColorPref.h 12 Oct 2005 18:55:57 -0000 1.6 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 L. Wennekers + + 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. + + http://www.anyedit.org + *****************************************************************************/ + #if !defined(AFX_COLORPREF_H__AFCA9C02_006B_11D6_B413_C346E7CD3222__INCLUDED_) #define AFX_COLORPREF_H__AFCA9C02_006B_11D6_B413_C346E7CD3222__INCLUDED_ Index: AEPlugin.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AEPlugin.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AEPlugin.h 23 Jul 2003 09:41:34 -0000 1.1 --- AEPlugin.h 12 Oct 2005 18:55:57 -0000 1.2 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 M. Deepak + + 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. + + http://www.anyedit.org + *****************************************************************************/ + #ifndef AEPLUGIN_H #define AEPLUGIN_H Index: CreditsThread.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/CreditsThread.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CreditsThread.h 8 May 2003 12:00:56 -0000 1.2 --- CreditsThread.h 12 Oct 2005 18:55:57 -0000 1.3 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 M. Deepak + + 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. + + http://www.anyedit.org + *****************************************************************************/ + // CreditsThread.h: interface for the CCreditsThread class. // Index: ConfigFile.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ConfigFile.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** ConfigFile.cpp 14 Apr 2005 11:48:56 -0000 1.23 --- ConfigFile.cpp 12 Oct 2005 18:55:57 -0000 1.24 *************** *** 1,4 **** /**************************************************************************** ! Copyright (C) AnyEdit Team This software is provided 'as-is', without any express or implied --- 1,4 ---- /**************************************************************************** ! Copyright (C) 2003-2005 L. Wennekers This software is provided 'as-is', without any express or implied Index: MainFrm.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/MainFrm.h,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** MainFrm.h 5 Apr 2005 08:20:21 -0000 1.51 --- MainFrm.h 12 Oct 2005 18:55:57 -0000 1.52 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 M. Deepak + + 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. + + http://www.anyedit.org + *****************************************************************************/ + // MainFrm.h : interface of the CMainFrame class // Index: FindComboBox.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/FindComboBox.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FindComboBox.h 14 Jun 2004 18:09:41 -0000 1.4 --- FindComboBox.h 12 Oct 2005 18:55:57 -0000 1.5 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 G. Hachlili + + 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. + + http://www.anyedit.org + *****************************************************************************/ + #if !defined(AFX_FINDCOMBOBOX_H__481CA594_2913_45FD_9878_9160E8829D5D__INCLUDED_) #define AFX_FINDCOMBOBOX_H__481CA594_2913_45FD_9878_9160E8829D5D__INCLUDED_ Index: MainColorFontPref.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/MainColorFontPref.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** MainColorFontPref.cpp 27 Sep 2004 18:44:25 -0000 1.5 --- MainColorFontPref.cpp 12 Oct 2005 18:55:57 -0000 1.6 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 L. Wennekers + + 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. + + http://www.anyedit.org + *****************************************************************************/ + // MainColorFontPref.cpp : implementation file // *************** *** 77,81 **** } ! BOOL CMainColorFontPref::OnInitDialog() { int iSize; --- 101,105 ---- } ! BOOL CMainColorFontPref::OnInitDialog() { int iSize; *************** *** 92,96 **** lf.lfCharSet = DEFAULT_CHARSET; lf.lfFaceName[0] = '\0'; ! lf.lfPitchAndFamily = 0; cdc = GetDC(); --- 116,120 ---- lf.lfCharSet = DEFAULT_CHARSET; lf.lfFaceName[0] = '\0'; ! lf.lfPitchAndFamily = 0; cdc = GetDC(); *************** *** 136,140 **** if( NULL == GetSafeHwnd() ) return FALSE; ! if( pConfigFile->GetCaretColor() != m_colbCaretColor.GetColor() ) { --- 160,164 ---- if( NULL == GetSafeHwnd() ) return FALSE; ! if( pConfigFile->GetCaretColor() != m_colbCaretColor.GetColor() ) { *************** *** 203,207 **** } ! void CMainColorFontPref::OnClickCheckSelForColor() { if( m_cbSelForeColor.GetCheck() ) --- 227,231 ---- } ! void CMainColorFontPref::OnClickCheckSelForColor() { if( m_cbSelForeColor.GetCheck() ) *************** *** 216,220 **** } ! void CMainColorFontPref::OnClickCheckSelBackColor() { if( m_cbSelBackColor.GetCheck() ) --- 240,244 ---- } ! void CMainColorFontPref::OnClickCheckSelBackColor() { if( m_cbSelBackColor.GetCheck() ) *************** *** 229,233 **** } ! void CMainColorFontPref::OnClickCheckHighlightLine() { if( m_cbHighlightLine.GetCheck() ) --- 253,257 ---- } ! void CMainColorFontPref::OnClickCheckHighlightLine() { if( m_cbHighlightLine.GetCheck() ) *************** *** 242,246 **** } ! void CMainColorFontPref::OnClickCheckRightEdge() { if( m_cbRightEdge.GetCheck() ) --- 266,270 ---- } ! void CMainColorFontPref::OnClickCheckRightEdge() { if( m_cbRightEdge.GetCheck() ) *************** *** 255,259 **** } ! void CMainColorFontPref::OnChangeEditRightEdge() { CString szTemp; --- 279,283 ---- } ! void CMainColorFontPref::OnChangeEditRightEdge() { CString szTemp; *************** *** 269,279 **** } ! void CMainColorFontPref::OnChangeOutputBarFont() { ! NotifyParentOfChange(); } ! void CMainColorFontPref::OnClickCaretColor() { ! NotifyParentOfChange(); } --- 293,303 ---- } ! void CMainColorFontPref::OnChangeOutputBarFont() { ! NotifyParentOfChange(); } ! void CMainColorFontPref::OnClickCaretColor() { ! NotifyParentOfChange(); } Index: ToolPref.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ToolPref.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ToolPref.h 3 Jun 2004 07:38:56 -0000 1.4 --- ToolPref.h 12 Oct 2005 18:55:57 -0000 1.5 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 L. Wennekers + + 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. + + http://www.anyedit.org + *****************************************************************************/ + #if !defined(AFX_TOOLPREF_H__A6DC7761_01D0_11D6_B413_9721B41D8A0D__INCLUDED_) #define AFX_TOOLPREF_H__A6DC7761_01D0_11D6_B413_9721B41D8A0D__INCLUDED_ Index: WorkspaceBar.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/WorkspaceBar.h,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** WorkspaceBar.h 16 Sep 2004 23:15:47 -0000 1.27 --- WorkspaceBar.h 12 Oct 2005 18:55:57 -0000 1.28 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 M. Deepak + + 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. + + http://www.anyedit.org + *****************************************************************************/ + #if !defined(AFX_WORKSPACEBAR_H__708257A3_7B83_11D3_A74B_0090274409AC__INCLUDED_) #define AFX_WORKSPACEBAR_H__708257A3_7B83_11D3_A74B_0090274409AC__INCLUDED_ Index: ParserFactory.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ParserFactory.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ParserFactory.h 8 May 2003 12:00:56 -0000 1.2 --- ParserFactory.h 12 Oct 2005 18:55:57 -0000 1.3 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 M. Deepak + + 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. + + http://www.anyedit.org + *****************************************************************************/ + //Makes use of Abstract Factory pattern.. //this is a abstract factory class Index: ClassViewPref.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ClassViewPref.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ClassViewPref.cpp 30 Nov 2004 20:22:48 -0000 1.4 --- ClassViewPref.cpp 12 Oct 2005 18:55:57 -0000 1.5 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 L. Wennekers + + 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. + + http://www.anyedit.org + *****************************************************************************/ + // ClassViewPref.cpp : implementation file // *************** *** 56,60 **** // CClassViewPref message handlers ! BOOL CClassViewPref::OnInitDialog() { CString szParserDelay; --- 80,84 ---- // CClassViewPref message handlers ! BOOL CClassViewPref::OnInitDialog() { CString szParserDelay; *************** *** 72,79 **** szParserDelay.Format( "%i ms", m_ctrlSlider.GetPos() ); m_edSlider.SetWindowText( szParserDelay ); ! // Disable the windows if classview is off. EnableControls(); ! return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE --- 96,103 ---- szParserDelay.Format( "%i ms", m_ctrlSlider.GetPos() ); m_edSlider.SetWindowText( szParserDelay ); ! // Disable the windows if classview is off. EnableControls(); ! return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE *************** *** 106,120 **** pConfigFile->SetClassViewSortByAccess( m_bSortByAccess ? true : false ); } ! if( ( m_bGroupByType ? true : false ) != pConfigFile->GetClassViewGroupByType() ) { pConfigFile->SetClassViewGroupByType( m_bGroupByType ? true : false ); } ! return TRUE; } ! void CClassViewPref::OnControlChanged() { ! NotifyParentOfChange(); EnableControls(); } --- 130,144 ---- pConfigFile->SetClassViewSortByAccess( m_bSortByAccess ? true : false ); } ! if( ( m_bGroupByType ? true : false ) != pConfigFile->GetClassViewGroupByType() ) { pConfigFile->SetClassViewGroupByType( m_bGroupByType ? true : false ); } ! return TRUE; } ! void CClassViewPref::OnControlChanged() { ! NotifyParentOfChange(); EnableControls(); } *************** *** 128,132 **** } ! void CClassViewPref::OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar) { if( &m_ctrlSlider == (CSliderCtrl*)pScrollBar ) --- 152,156 ---- } ! void CClassViewPref::OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar) { if( &m_ctrlSlider == (CSliderCtrl*)pScrollBar ) *************** *** 135,139 **** szParserDelay.Format( "%i ms", m_ctrlSlider.GetPos() ); m_edSlider.SetWindowText( szParserDelay ); ! NotifyParentOfChange(); } CSAPrefsSubDlg::OnHScroll(nSBCode, nPos, pScrollBar); --- 159,163 ---- szParserDelay.Format( "%i ms", m_ctrlSlider.GetPos() ); m_edSlider.SetWindowText( szParserDelay ); ! NotifyParentOfChange(); } CSAPrefsSubDlg::OnHScroll(nSBCode, nPos, pScrollBar); Index: OutputEdit.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/OutputEdit.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** OutputEdit.cpp 31 Jan 2005 22:55:51 -0000 1.8 --- OutputEdit.cpp 12 Oct 2005 18:55:57 -0000 1.9 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 M. Deepak + + 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. + + http://www.anyedit.org + *****************************************************************************/ + // OutputEdit.cpp : implementation file // *************** *** 158,166 **** // COutputEdit message handlers ! void COutputEdit::OnPaint() { //CPaintDC dc(this); // device context for painting Default(); ! SetAutoScrollBars(); --- 182,190 ---- // COutputEdit message handlers ! void COutputEdit::OnPaint() { //CPaintDC dc(this); // device context for painting Default(); ! SetAutoScrollBars(); *************** *** 187,191 **** } ! void COutputEdit::OnLButtonDblClk(UINT nFlags, CPoint point) { if(!CanParseLine()) --- 211,215 ---- } ! void COutputEdit::OnLButtonDblClk(UINT nFlags, CPoint point) { if(!CanParseLine()) *************** *** 195,201 **** GetLineRect(m_nCaretLine, rect); InvalidateRect(rect, FALSE); ! m_CurSelLine = GetCurLine(); ! UpdateWindow(); DrawLine(TRUE); --- 219,225 ---- GetLineRect(m_nCaretLine, rect); InvalidateRect(rect, FALSE); ! m_CurSelLine = GetCurLine(); ! UpdateWindow(); DrawLine(TRUE); *************** *** 203,207 **** } ! void COutputEdit::OnLButtonDown(UINT nFlags, CPoint point) { Default(); --- 227,231 ---- } ! void COutputEdit::OnLButtonDown(UINT nFlags, CPoint point) { Default(); *************** *** 209,222 **** } ! void COutputEdit::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) { if (m_bReadOnly) return; ! Default(); DrawLine(FALSE); } ! void COutputEdit::OnLButtonUp(UINT nFlags, CPoint point) { Default(); --- 233,246 ---- } ! void COutputEdit::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) { if (m_bReadOnly) return; ! Default(); DrawLine(FALSE); } ! void COutputEdit::OnLButtonUp(UINT nFlags, CPoint point) { Default(); *************** *** 246,250 **** } ! void COutputEdit::OnContextMenu(CWnd* pWnd, CPoint point) { CMenu menu; --- 270,274 ---- } ! void COutputEdit::OnContextMenu(CWnd* pWnd, CPoint point) { CMenu menu; *************** *** 262,270 **** ((CBCGMDIFrameWnd*)AfxGetMainWnd())->OnShowPopupMenu (pPopupMenu); UpdateDialogControls(this, FALSE); ! } } ! void COutputEdit::OnViewOutput() { CControlBar* pParentBar = DYNAMIC_DOWNCAST (CControlBar, GetOwner ()); --- 286,294 ---- ((CBCGMDIFrameWnd*)AfxGetMainWnd())->OnShowPopupMenu (pPopupMenu); UpdateDialogControls(this, FALSE); ! } } ! void COutputEdit::OnViewOutput() { CControlBar* pParentBar = DYNAMIC_DOWNCAST (CControlBar, GetOwner ()); *************** *** 275,287 **** pMainFrame->SetFocus (); pMainFrame->ShowControlBar (pParentBar, FALSE, FALSE); ! } } ! void COutputEdit::OnOutputClear() { ClearAll(); } ! void COutputEdit::OnOutputCopyline() { CopyStrToClipboard(GetOutputLine()); --- 299,311 ---- pMainFrame->SetFocus (); pMainFrame->ShowControlBar (pParentBar, FALSE, FALSE); ! } } ! void COutputEdit::OnOutputClear() { ClearAll(); } ! void COutputEdit::OnOutputCopyline() { CopyStrToClipboard(GetOutputLine()); *************** *** 294,298 **** int iLineNumber; CString szOutputMsg; ! // Get the OutputLine szOutputLine = GetOutputLine(); --- 318,322 ---- int iLineNumber; CString szOutputMsg; ! // Get the OutputLine szOutputLine = GetOutputLine(); *************** *** 305,309 **** } ! void COutputEdit::OnOutputError() { // TODO: Add your command handler code here --- 329,333 ---- } ! void COutputEdit::OnOutputError() { // TODO: Add your command handler code here *************** *** 312,316 **** int iLineNumber; CString szOutputMsg; ! // Get the OutputLine szOutputLine = GetOutputLine(); --- 336,340 ---- int iLineNumber; CString szOutputMsg; ! // Get the OutputLine szOutputLine = GetOutputLine(); *************** *** 339,349 **** theApp.GotoFileAndLine( iLineNumber, szFileName ); ! // TODO: Update status bar with szOutputMsg } ! void COutputEdit::OnOutputSave() { // TODO: Add your command handler code here ! } --- 363,373 ---- theApp.GotoFileAndLine( iLineNumber, szFileName ); ! // TODO: Update status bar with szOutputMsg } ! void COutputEdit::OnOutputSave() { // TODO: Add your command handler code here ! } *************** *** 365,369 **** } ! BOOL COutputEdit::PreTranslateMessage(MSG* pMsg) { if( pMsg->message == WM_KEYDOWN ) --- 389,393 ---- } ! BOOL COutputEdit::PreTranslateMessage(MSG* pMsg) { if( pMsg->message == WM_KEYDOWN ) *************** *** 377,381 **** // If the user pressed CTRL+A, we select all the text in the edit box. ! if( ('A' == pMsg->wParam) && (GetKeyState( VK_CONTROL ) & 0x80) ) { SetSel( 0, -1 ); --- 401,405 ---- // If the user pressed CTRL+A, we select all the text in the edit box. ! if( ('A' == pMsg->wParam) && (GetKeyState( VK_CONTROL ) & 0x80) ) { SetSel( 0, -1 ); *************** *** 386,390 **** } ! void COutputEdit::OnChange() { SetAutoScrollBars(); --- 410,414 ---- } ! void COutputEdit::OnChange() { SetAutoScrollBars(); *************** *** 435,439 **** } ! void COutputEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) { if (m_bReadOnly) --- 459,463 ---- } ! void COutputEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) { if (m_bReadOnly) Index: ClassViewPref.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ClassViewPref.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ClassViewPref.h 21 Sep 2004 07:42:18 -0000 1.3 --- ClassViewPref.h 12 Oct 2005 18:55:57 -0000 1.4 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 L. Wennekers + + 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. + + http://www.anyedit.org + *****************************************************************************/ + #if !defined(AFX_CLASSVIEWPREF_H__BE914DE3_2C26_4F68_B9A9_CAC77C7E7EA0__INCLUDED_) #define AFX_CLASSVIEWPREF_H__BE914DE3_2C26_4F68_B9A9_CAC77C7E7EA0__INCLUDED_ Index: AskFileSaveDlg.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AskFileSaveDlg.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AskFileSaveDlg.cpp 20 Sep 2004 20:37:44 -0000 1.1 --- AskFileSaveDlg.cpp 12 Oct 2005 18:55:57 -0000 1.2 *************** *** 1,2 **** --- 1,26 ---- + /**************************************************************************** + Copyright (C) 2003-2005 G. Hachlili + + 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 restri... [truncated message content] |
From: Leon W. <moo...@us...> - 2005-10-09 12:28:56
|
Update of /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5081/Config/Default/Syntax Modified Files: css.syn Log Message: Changed styles and keyword sets, to split CSS1 and CSS2 keywords. Index: css.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/css.syn,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** css.syn 21 Dec 2004 08:27:51 -0000 1.11 --- css.syn 9 Oct 2005 12:28:31 -0000 1.12 *************** *** 1,3 **** ! <Syntax version="1"> <Lexer> <Name>SCLEX_CSS</Name> --- 1,3 ---- ! <Syntax version="2"> <Lexer> <Name>SCLEX_CSS</Name> *************** *** 11,15 **** <![CDATA[{([<>])}]]> </Braces> ! <WordCharacters>_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789</WordCharacters> <BlockComment default="0"> <![CDATA[/*|*/|<!-- | -->]]> --- 11,15 ---- <![CDATA[{([<>])}]]> </Braces> ! <WordCharacters>_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-</WordCharacters> <BlockComment default="0"> <![CDATA[/*|*/|<!-- | -->]]> *************** *** 208,212 **** </Style> <Style number="6"> ! <Name>Identifier</Name> <Font> <Name>Courier</Name> --- 208,212 ---- </Style> <Style number="6"> ! <Name>CSS1 Keywords</Name> <Font> <Name>Courier</Name> *************** *** 217,221 **** </Font> <Color> ! <Foreground>000000</Foreground> <Background>FFFFFF</Background> </Color> --- 217,221 ---- </Font> <Color> ! <Foreground>808000</Foreground> <Background>FFFFFF</Background> </Color> *************** *** 333,338 **** </Color> </Style> </StyleInformation> ! <Keywords set="0" description="CSS Keywords"> <Word>ascent</Word> <Word>azimuth</Word> --- 333,366 ---- </Color> </Style> + <Style number="15"> + <Name>CSS2 Keywords</Name> + <Font> + <Name>Courier</Name> + <Size>10</Size> + <Bold>0</Bold> + <Italic>0</Italic> + <Underline>0</Underline> + </Font> + <Color> + <Foreground>808000</Foreground> + <Background>FFFFFF</Background> + </Color> + </Style> + <Style number="16"> + <Name>Attribute</Name> + <Font> + <Name>Courier</Name> + <Size>10</Size> + <Bold>0</Bold> + <Italic>0</Italic> + <Underline>0</Underline> + </Font> + <Color> + <Foreground>008080</Foreground> + <Background>FFFFFF</Background> + </Color> + </Style> </StyleInformation> ! <Keywords set="0" description="CSS1 Keywords"> <Word>ascent</Word> <Word>azimuth</Word> *************** *** 475,479 **** <Word>z-index</Word> </Keywords> ! <Keywords set="1" description="Pseudo Class Keywords"> <Word>above</Word> <Word>absolute</Word> --- 503,523 ---- <Word>z-index</Word> </Keywords> ! <Keywords set="1" description="Pseudo Classes"> ! <Word>first-letter</Word> ! <Word>first-line</Word> ! <Word>link</Word> ! <Word>active</Word> ! <Word>visited</Word> ! <Word>first-child</Word> ! <Word>focus</Word> ! <Word>hover</Word> ! <Word>lang</Word> ! <Word>before</Word> ! <Word>after</Word> ! <Word>left</Word> ! <Word>right</Word> ! <Word>first</Word> ! </Keywords> ! <Keywords set="2" description="CSS2 Keywords" /> <Word>above</Word> <Word>absolute</Word> |
From: Leon W. <moo...@us...> - 2005-10-09 12:26:28
|
Update of /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4655/Config/Default/Syntax Modified Files: html.syn Log Message: Added PHP Complex Variable style Index: html.syn =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/Config/Default/Syntax/html.syn,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** html.syn 21 Dec 2004 08:27:51 -0000 1.11 --- html.syn 9 Oct 2005 12:26:17 -0000 1.12 *************** *** 1,3 **** ! <Syntax version="1"> <Lexer> <Name>SCLEX_HTML</Name> --- 1,3 ---- ! <Syntax version="2"> <Lexer> <Name>SCLEX_HTML</Name> *************** *** 1610,1613 **** --- 1610,1627 ---- </Color> </Style> + <Style number="104"> + <Name>PHP Complex Variable</Name> + <Font> + <Name>Courier</Name> + <Size>10</Size> + <Bold>0</Bold> + <Italic>0</Italic> + <Underline>0</Underline> + </Font> + <Color> + <Foreground>009300</Foreground> + <Background>FFF8F8</Background> + </Color> + </Style> <Style number="124"> <Name>PHP Comment</Name> |
From: boca4711 <boc...@us...> - 2005-06-06 19:19:24
|
Update of /cvsroot/anyedit/AnyEditBin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22056 Modified Files: SciLexer.dll Log Message: Updated to scintilla control 1.64 Index: SciLexer.dll =================================================================== RCS file: /cvsroot/anyedit/AnyEditBin/SciLexer.dll,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 Binary files /tmp/cvsfhx75Z and /tmp/cvsHgp6dd differ |
From: boca4711 <boc...@us...> - 2005-06-06 19:17:41
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21544 Modified Files: Platform.h SciLexer.h Scintilla.h scintillaif.cpp scintillaif.h Log Message: Updated to scintilla control 1.64 Index: scintillaif.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/scintillaif.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** scintillaif.cpp 11 Apr 2005 08:20:27 -0000 1.20 --- scintillaif.cpp 6 Jun 2005 19:17:30 -0000 1.21 *************** *** 1807,1813 **** } ! int CScintilla::GetEndAtLastLine() { ! return (int)SPerform(SCI_GETENDATLASTLINE, 0, 0); } --- 1807,1813 ---- } ! bool CScintilla::GetEndAtLastLine() { ! return SPerform(SCI_GETENDATLASTLINE, 0, 0) != 0; } *************** *** 2682,2684 **** --- 2682,2699 ---- } + int CScintilla::GetProperty(const char* key, char* buf) + { + return (int)SPerform(SCI_GETPROPERTY, (long)key, (long)buf); + } + + int CScintilla::GetPropertyExpanded(const char* key, char* buf) + { + return (int)SPerform(SCI_GETPROPERTYEXPANDED, (long)key, (long)buf); + } + + int CScintilla::GetPropertyInt(const char* key) + { + return (int)SPerform(SCI_GETPROPERTYINT, (long)key, 0); + } + //-- Index: scintillaif.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/scintillaif.h,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** scintillaif.h 11 Apr 2005 08:20:27 -0000 1.16 --- scintillaif.h 6 Jun 2005 19:17:30 -0000 1.17 *************** *** 1219,1223 **** * line at the bottom of the view. */ ! int GetEndAtLastLine(); /** * Retrieve the height of a particular line of text in pixels. --- 1219,1223 ---- * line at the bottom of the view. */ ! bool GetEndAtLastLine(); /** * Retrieve the height of a particular line of text in pixels. *************** *** 1910,1914 **** /** * Set the length of the utf8 argument for calling EncodedFromUTF8. ! * Set to 0 and the string will be measured to the first nul. */ void SetLengthForEncode(int bytes); --- 1910,1914 ---- /** * Set the length of the utf8 argument for calling EncodedFromUTF8. ! * Set to -1 and the string will be measured to the first nul. */ void SetLengthForEncode(int bytes); *************** *** 1972,1975 **** --- 1972,1989 ---- */ void LoadLexerLibrary(const char* path); + /** + * Retrieve a "property" value previously set with SetProperty. + */ + int GetProperty(const char* key, char* buf); + /** + * Retrieve a "property" value previously set with SetProperty, + * with "$()" variable replacement on returned buffer. + */ + int GetPropertyExpanded(const char* key, char* buf); + /** + * Retrieve a "property" value previously set with SetProperty, + * interpreted as an int AFTER any "$()" variable replacement. + */ + int GetPropertyInt(const char* key); //-- //@} Index: Platform.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/Platform.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Platform.h 27 Nov 2004 15:13:45 -0000 1.2 --- Platform.h 6 Jun 2005 19:17:30 -0000 1.3 *************** *** 288,291 **** --- 288,292 ---- void SetID(FontID id_) { id = id_; } friend class Surface; + friend class SurfaceImpl; }; *************** *** 393,399 **** virtual void SetFont(Font &font)=0; ! virtual void Create(Window &parent, int ctrlID, int lineHeight_, bool unicodeMode_)=0; virtual void SetAverageCharWidth(int width)=0; virtual void SetVisibleRows(int rows)=0; virtual PRectangle GetDesiredRect()=0; virtual int CaretFromEdge()=0; --- 394,401 ---- virtual void SetFont(Font &font)=0; ! virtual void Create(Window &parent, int ctrlID, Point location, int lineHeight_, bool unicodeMode_)=0; virtual void SetAverageCharWidth(int width)=0; virtual void SetVisibleRows(int rows)=0; + virtual int GetVisibleRows() const=0; virtual PRectangle GetDesiredRect()=0; virtual int CaretFromEdge()=0; *************** *** 408,411 **** --- 410,414 ---- virtual void ClearRegisteredImages()=0; virtual void SetDoubleClickAction(CallBackAction, void *)=0; + virtual void SetList(const char* list, char separator, char typesep)=0; }; Index: Scintilla.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/Scintilla.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Scintilla.h 11 Apr 2005 08:20:26 -0000 1.13 --- Scintilla.h 6 Jun 2005 19:17:30 -0000 1.14 *************** *** 118,121 **** --- 118,122 ---- #define SC_MARK_ARROWS 24 #define SC_MARK_PIXMAP 25 + #define SC_MARK_FULLRECT 26 #define SC_MARK_CHARACTER 10000 #define SC_MARKNUM_FOLDEREND 25 *************** *** 174,177 **** --- 175,179 ---- #define SC_CHARSET_VIETNAMESE 163 #define SC_CHARSET_THAI 222 + #define SC_CHARSET_8859_15 1000 #define SCI_STYLECLEARALL 2050 #define SCI_STYLESETFORE 2051 *************** *** 611,614 **** --- 613,619 ---- #define SCI_SETLEXERLANGUAGE 4006 #define SCI_LOADLEXERLIBRARY 4007 + #define SCI_GETPROPERTY 4008 + #define SCI_GETPROPERTYEXPANDED 4009 + #define SCI_GETPROPERTYINT 4010 #define SC_MOD_INSERTTEXT 0x1 #define SC_MOD_DELETETEXT 0x2 *************** *** 618,626 **** #define SC_PERFORMED_UNDO 0x20 #define SC_PERFORMED_REDO 0x40 #define SC_LASTSTEPINUNDOREDO 0x100 #define SC_MOD_CHANGEMARKER 0x200 #define SC_MOD_BEFOREINSERT 0x400 #define SC_MOD_BEFOREDELETE 0x800 ! #define SC_MODEVENTMASKALL 0xF77 #define SCEN_CHANGE 768 #define SCEN_SETFOCUS 512 --- 623,633 ---- #define SC_PERFORMED_UNDO 0x20 #define SC_PERFORMED_REDO 0x40 + #define SC_MULTISTEPUNDOREDO 0x80 #define SC_LASTSTEPINUNDOREDO 0x100 #define SC_MOD_CHANGEMARKER 0x200 #define SC_MOD_BEFOREINSERT 0x400 #define SC_MOD_BEFOREDELETE 0x800 ! #define SC_MULTILINEUNDOREDO 0x1000 ! #define SC_MODEVENTMASKALL 0x1FFF #define SCEN_CHANGE 768 #define SCEN_SETFOCUS 512 Index: SciLexer.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/SciLexer.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** SciLexer.h 11 Apr 2005 08:20:22 -0000 1.9 --- SciLexer.h 6 Jun 2005 19:17:30 -0000 1.10 *************** *** 44,49 **** #define SCLEX_BULLANT 27 #define SCLEX_VBSCRIPT 28 - #define SCLEX_ASP 29 - #define SCLEX_PHP 30 #define SCLEX_BAAN 31 #define SCLEX_MATLAB 32 --- 44,47 ---- *************** *** 85,88 **** --- 83,91 ---- #define SCLEX_HASKELL 68 #define SCLEX_PHPSCRIPT 69 + #define SCLEX_TADS3 70 + #define SCLEX_REBOL 71 + #define SCLEX_SMALLTALK 72 + #define SCLEX_FLAGSHIP 73 + #define SCLEX_CSOUND 74 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 *************** *** 261,264 **** --- 264,268 ---- #define SCE_PL_STRING_QR 29 #define SCE_PL_STRING_QW 30 + #define SCE_PL_POD_VERB 31 #define SCE_B_DEFAULT 0 #define SCE_B_COMMENT 1 *************** *** 833,836 **** --- 837,981 ---- #define SCE_HA_COMMENTBLOCK2 15 #define SCE_HA_COMMENTBLOCK3 16 + #define SCE_T3_DEFAULT 0 + #define SCE_T3_PREPROCESSOR 1 + #define SCE_T3_BLOCK_COMMENT 2 + #define SCE_T3_LINE_COMMENT 3 + #define SCE_T3_OPERATOR 4 + #define SCE_T3_KEYWORD 5 + #define SCE_T3_NUMBER 6 + #define SCE_T3_BRACKET 7 + #define SCE_T3_HTML_TAG 8 + #define SCE_T3_HTML_STRING 9 + #define SCE_T3_S_STRING 10 + #define SCE_T3_S_LIB_DIRECTIVE 11 + #define SCE_T3_S_MSG_PARAM 12 + #define SCE_T3_S_H_DEFAULT 13 + #define SCE_T3_D_STRING 14 + #define SCE_T3_D_LIB_DIRECTIVE 15 + #define SCE_T3_D_MSG_PARAM 16 + #define SCE_T3_D_H_DEFAULT 17 + #define SCE_T3_X_DEFAULT 18 + #define SCE_T3_X_PREPROCESSOR 19 + #define SCE_T3_X_BLOCK_COMMENT 20 + #define SCE_T3_X_LINE_COMMENT 21 + #define SCE_T3_X_S_STRING 22 + #define SCE_T3_X_S_LIB_DIRECTIVE 23 + #define SCE_T3_X_S_MSG_PARAM 24 + #define SCE_T3_X_S_H_DEFAULT 25 + #define SCE_T3_X_D_STRING 26 + #define SCE_T3_X_D_LIB_DIRECTIVE 27 + #define SCE_T3_X_D_MSG_PARAM 28 + #define SCE_T3_X_D_H_DEFAULT 29 + #define SCE_T3_USER1 30 + #define SCE_T3_USER2 31 + #define SCE_REBOL_DEFAULT 0 + #define SCE_REBOL_COMMENTLINE 1 + #define SCE_REBOL_COMMENTBLOCK 2 + #define SCE_REBOL_PREFACE 3 + #define SCE_REBOL_OPERATOR 4 + #define SCE_REBOL_CHARACTER 5 + #define SCE_REBOL_QUOTEDSTRING 6 + #define SCE_REBOL_BRACEDSTRING 7 + #define SCE_REBOL_NUMBER 8 + #define SCE_REBOL_PAIR 9 + #define SCE_REBOL_TUPLE 10 + #define SCE_REBOL_BINARY 11 + #define SCE_REBOL_MONEY 12 + #define SCE_REBOL_ISSUE 13 + #define SCE_REBOL_TAG 14 + #define SCE_REBOL_FILE 15 + #define SCE_REBOL_EMAIL 16 + #define SCE_REBOL_URL 17 + #define SCE_REBOL_DATE 18 + #define SCE_REBOL_TIME 19 + #define SCE_REBOL_IDENTIFIER 20 + #define SCE_REBOL_WORD 21 + #define SCE_REBOL_WORD2 22 + #define SCE_REBOL_WORD3 23 + #define SCE_REBOL_WORD4 24 + #define SCE_REBOL_WORD5 25 + #define SCE_REBOL_WORD6 26 + #define SCE_REBOL_WORD7 27 + #define SCE_REBOL_WORD8 28 + #define SCE_SQL_DEFAULT 0 + #define SCE_SQL_COMMENT 1 + #define SCE_SQL_COMMENTLINE 2 + #define SCE_SQL_COMMENTDOC 3 + #define SCE_SQL_NUMBER 4 + #define SCE_SQL_WORD 5 + #define SCE_SQL_STRING 6 + #define SCE_SQL_CHARACTER 7 + #define SCE_SQL_SQLPLUS 8 + #define SCE_SQL_SQLPLUS_PROMPT 9 + #define SCE_SQL_OPERATOR 10 + #define SCE_SQL_IDENTIFIER 11 + #define SCE_SQL_SQLPLUS_COMMENT 13 + #define SCE_SQL_COMMENTLINEDOC 15 + #define SCE_SQL_WORD2 16 + #define SCE_SQL_COMMENTDOCKEYWORD 17 + #define SCE_SQL_COMMENTDOCKEYWORDERROR 18 + #define SCE_SQL_USER1 19 + #define SCE_SQL_USER2 20 + #define SCE_SQL_USER3 21 + #define SCE_SQL_USER4 22 + #define SCE_ST_DEFAULT 0 + #define SCE_ST_STRING 1 + #define SCE_ST_NUMBER 2 + #define SCE_ST_COMMENT 3 + #define SCE_ST_SYMBOL 4 + #define SCE_ST_BINARY 5 + #define SCE_ST_BOOL 6 + #define SCE_ST_SELF 7 + #define SCE_ST_SUPER 8 + #define SCE_ST_NIL 9 + #define SCE_ST_GLOBAL 10 + #define SCE_ST_RETURN 11 + #define SCE_ST_SPECIAL 12 + #define SCE_ST_KWSEND 13 + #define SCE_ST_ASSIGN 14 + #define SCE_ST_CHARACTER 15 + #define SCE_ST_SPEC_SEL 16 + #define SCE_FS_DEFAULT 0 + #define SCE_FS_COMMENT 1 + #define SCE_FS_COMMENTLINE 2 + #define SCE_FS_COMMENTDOC 3 + #define SCE_FS_COMMENTLINEDOC 4 + #define SCE_FS_COMMENTDOCKEYWORD 5 + #define SCE_FS_COMMENTDOCKEYWORDERROR 6 + #define SCE_FS_KEYWORD 7 + #define SCE_FS_KEYWORD2 8 + #define SCE_FS_KEYWORD3 9 + #define SCE_FS_KEYWORD4 10 + #define SCE_FS_NUMBER 11 + #define SCE_FS_STRING 12 + #define SCE_FS_PREPROCESSOR 13 + #define SCE_FS_OPERATOR 14 + #define SCE_FS_IDENTIFIER 15 + #define SCE_FS_DATE 16 + #define SCE_FS_STRINGEOL 17 + #define SCE_FS_CONSTANT 18 + #define SCE_FS_ASM 19 + #define SCE_FS_LABEL 20 + #define SCE_FS_ERROR 21 + #define SCE_FS_HEXNUMBER 22 + #define SCE_FS_BINNUMBER 23 + #define SCE_CSOUND_DEFAULT 0 + #define SCE_CSOUND_COMMENT 1 + #define SCE_CSOUND_NUMBER 2 + #define SCE_CSOUND_OPERATOR 3 + #define SCE_CSOUND_INSTR 4 + #define SCE_CSOUND_IDENTIFIER 5 + #define SCE_CSOUND_OPCODE 6 + #define SCE_CSOUND_HEADERSTMT 7 + #define SCE_CSOUND_USERKEYWORD 8 + #define SCE_CSOUND_COMMENTBLOCK 9 + #define SCE_CSOUND_PARAM 10 + #define SCE_CSOUND_ARATE_VAR 11 + #define SCE_CSOUND_KRATE_VAR 12 + #define SCE_CSOUND_IRATE_VAR 13 + #define SCE_CSOUND_GLOBAL_VAR 14 + #define SCE_CSOUND_STRINGEOL 15 + #define SCLEX_ASP 29 + #define SCLEX_PHP 30 //--Autogenerated -- end of section automatically generated from Scintilla.iface |
From: boca4711 <boc...@us...> - 2005-05-08 11:06:48
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6511 Modified Files: ScintillaEx.cpp ScintillaEx.h Log Message: Add: GetEOLString returns string with CR+LF, CR or LF Fix: HighlightBraces resets highlight guides Index: ScintillaEx.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ScintillaEx.cpp,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** ScintillaEx.cpp 17 Apr 2005 12:34:52 -0000 1.24 --- ScintillaEx.cpp 8 May 2005 11:06:38 -0000 1.25 *************** *** 245,250 **** if(match == INVALID_POSITION) { - BraceHighlight(-1, -1); BraceBadLight(nPos); } else --- 245,250 ---- if(match == INVALID_POSITION) { BraceBadLight(nPos); + SetHighlightGuide(0); } else *************** *** 1968,1969 **** --- 1968,1991 ---- return nLine; } + + /// Get EOL string of current or given EOL mode + CString CScintillaEx::GetEOLString(int nEOLMode) + { + int nMode = nEOLMode; + if (nEOLMode == NULL) + nMode = GetEOLMode(); + + switch (nMode){ + case SC_EOL_CR: + return _T("\r"); + break; + case SC_EOL_LF: + return _T("\n"); + break; + case SC_EOL_CRLF: + return _T("\r\n"); + break; + } + // Should not be reached + return _T(""); + } Index: ScintillaEx.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ScintillaEx.h,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ScintillaEx.h 17 Apr 2005 12:34:52 -0000 1.16 --- ScintillaEx.h 8 May 2005 11:06:38 -0000 1.17 *************** *** 154,157 **** --- 154,158 ---- std::deque<int> dqBookmarks; public: + CString GetEOLString(int nEOLMode = NULL); int GetSelectionEndLine(void); int GetSelectionStartLine(void); |
From: boca4711 <boc...@us...> - 2005-05-08 11:04:41
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5717 Modified Files: KeywordPref.cpp Log Message: Fix: keyword list are normalized (one blank between each keyword) Index: KeywordPref.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/KeywordPref.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** KeywordPref.cpp 13 Aug 2004 21:16:58 -0000 1.3 --- KeywordPref.cpp 8 May 2005 11:04:31 -0000 1.4 *************** *** 84,87 **** --- 84,91 ---- if( Keywords[iDescSel] != szKeywords ) { + CMisc msc; + char *s = szKeywords.GetBuffer(szKeywords.GetLength()); + msc.NormalizeString(s); + szKeywords.ReleaseBuffer(); Keywords[iDescSel] = szKeywords; KeywordsChanged[iDescSel] = true; |
From: boca4711 <boc...@us...> - 2005-05-08 11:03:25
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5245 Modified Files: Misc.cpp Misc.h Log Message: Add: NormalizeStrings deletes leading & trailing blanks, double blanks, newlines Index: Misc.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/Misc.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Misc.cpp 23 Sep 2004 21:30:44 -0000 1.13 --- Misc.cpp 8 May 2005 11:03:03 -0000 1.14 *************** *** 534,535 **** --- 534,571 ---- return false; } + + /* -------------------------------------------------------------------- */ + /* normalizeString() deletes leading & trailing blanks etc. */ + /* coverd from Fred's Citadel BBS */ + /* http://sourceforge.net/projects/fredcit */ + /* FORMAT.C */ + /* -------------------------------------------------------------------- */ + void CMisc::NormalizeString(char *s) + { + char *pc; + + pc = s; + + /* find end of string */ + while (*pc) { + if (*pc < ' ' && (*pc != 1)) /* less then space & not ^A */ + *pc = ' '; /* zap tabs etc... */ + pc++; + } + + /* no trailing spaces: */ + while (pc > s && isspace(*(pc - 1))) + pc--; + *pc = '\0'; + + /* no leading spaces: */ + while (isspace(*s)) + strcpy(s, s + 1); + + /* no double blanks */ + for (; *s;) + if (isspace(*s) && isspace(*(s + 1))) + strcpy(s, s + 1); + else + s++; + } Index: Misc.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/Misc.h,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Misc.h 23 Sep 2004 21:30:44 -0000 1.11 --- Misc.h 8 May 2005 11:03:03 -0000 1.12 *************** *** 15,18 **** --- 15,19 ---- { public: + void NormalizeString(char *s); BOOL ShortToLongPath(CString &sShortPath, CString &sLongPath); CString RemovePath(LPCTSTR filName); |
From: boca4711 <boc...@us...> - 2005-05-08 11:00:39
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4440 Modified Files: ClipTextEditor.cpp Log Message: Fix: ClipTextEditor handles empty lines Index: ClipTextEditor.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ClipTextEditor.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ClipTextEditor.cpp 5 May 2005 10:14:42 -0000 1.11 --- ClipTextEditor.cpp 8 May 2005 11:00:30 -0000 1.12 *************** *** 454,458 **** goto loopbeg; } ! if(!tLine.IsEmpty()) { tempclip.content += tLine; --- 454,458 ---- goto loopbeg; } ! // if(!tLine.IsEmpty()) { tempclip.content += tLine; |
From: boca4711 <boc...@us...> - 2005-05-08 10:58:57
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4076 Modified Files: AnyEditView.cpp AnyEditView.h Log Message: Fix: Removed OnEditClear, see #1059335 Fix: Reset highlight guide when no brace is found Fix: InsertStringArray recognize EOL mode of current text Index: AnyEditView.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEditView.h,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** AnyEditView.h 26 Sep 2004 13:36:23 -0000 1.49 --- AnyEditView.h 8 May 2005 10:58:48 -0000 1.50 *************** *** 227,231 **** afx_msg void OnSearchFindnextword(); afx_msg void OnSearchFindprevword(); - afx_msg void OnEditClear(); afx_msg void OnUpdateLineCol(CCmdUI* pCmdUI); afx_msg void OnUpdateFType(CCmdUI* pCmdUI); --- 227,230 ---- Index: AnyEditView.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEditView.cpp,v retrieving revision 1.90 retrieving revision 1.91 diff -C2 -d -r1.90 -r1.91 *** AnyEditView.cpp 17 Apr 2005 12:30:09 -0000 1.90 --- AnyEditView.cpp 8 May 2005 10:58:48 -0000 1.91 *************** *** 173,177 **** ON_COMMAND(ID_SEARCH_FINDNEXTWORD, OnSearchFindnextword) ON_COMMAND(ID_SEARCH_FINDPREVWORD, OnSearchFindprevword) - ON_COMMAND(ID_EDIT_CLEAR, OnEditClear) ON_UPDATE_COMMAND_UI(ID_INDICATOR_LINECOL, OnUpdateLineCol) ON_UPDATE_COMMAND_UI(ID_INDICATOR_FTYPE, OnUpdateFType) --- 173,176 ---- *************** *** 494,498 **** m_Scintilla.HighlightBraces(m_Scintilla.GetCurrentPos() - 1); else ! m_Scintilla.BraceHighlight(-1, -1); } // We want to update the current function, so: --- 493,501 ---- m_Scintilla.HighlightBraces(m_Scintilla.GetCurrentPos() - 1); else ! { ! m_Scintilla.BraceHighlight(INVALID_POSITION, INVALID_POSITION); ! m_Scintilla.SetHighlightGuide(0); ! } ! } // We want to update the current function, so: *************** *** 911,917 **** } void CAnyEditView::InsertStringArray(CStringArray &arr) { - if(arr.GetSize()!=0) if(arr.GetAt(arr.GetSize()-1).IsEmpty()) --- 914,920 ---- } + /// Inserts an array of text into current document void CAnyEditView::InsertStringArray(CStringArray &arr) { if(arr.GetSize()!=0) if(arr.GetAt(arr.GetSize()-1).IsEmpty()) *************** *** 920,924 **** m_Scintilla.BeginUndoAction(); ! if(m_Scintilla.GetSelectionStart()!=m_Scintilla.GetSelectionEnd()) { m_Scintilla.Cut(); --- 923,927 ---- m_Scintilla.BeginUndoAction(); ! if(m_Scintilla.IsSelection()) { m_Scintilla.Cut(); *************** *** 956,965 **** arrIns.InsertAt(0,arrLine); str+= arrLine; ! str+= "\n"; if(i != x-1) { str+= strtoadd; } - } --- 959,967 ---- arrIns.InsertAt(0,arrLine); str+= arrLine; ! str += m_Scintilla.GetEOLString(); if(i != x-1) { str+= strtoadd; } } *************** *** 970,974 **** m_Scintilla.InsertText(initial_pos,arrIns.GetAt(0)); final_pos = initial_pos + arrIns.GetAt(0).GetLength(); - m_Scintilla.SetSel(final_pos,final_pos); } else --- 972,975 ---- *************** *** 976,981 **** m_Scintilla.InsertText(initial_pos,str); final_pos = initial_pos + str.GetLength(); - m_Scintilla.SetSel(final_pos,final_pos); } m_Scintilla.SetTargetStart(initial_pos); --- 977,982 ---- m_Scintilla.InsertText(initial_pos,str); final_pos = initial_pos + str.GetLength(); } + m_Scintilla.SetSel(final_pos,final_pos); m_Scintilla.SetTargetStart(initial_pos); *************** *** 985,991 **** { long stpos = m_Scintilla.GetTargetStart(); ! long endpos = m_Scintilla.GetTargetEnd(); ! m_Scintilla.SetSel(stpos,endpos); ! m_Scintilla.DeleteBack(); } --- 986,991 ---- { long stpos = m_Scintilla.GetTargetStart(); ! m_Scintilla.ReplaceTarget(-1, ""); ! m_Scintilla.SetSel(stpos, stpos); } *************** *** 2047,2056 **** } - /// Delete current char or selection. Works with rectangular selection too. - void CAnyEditView::OnEditClear() - { - m_Scintilla.Clear(); - } - /// Show current line and column in statusbar void CAnyEditView::OnUpdateLineCol(CCmdUI* pCmdUI) //@parm handle of textpane for linenumbers - see mainfrm.cpp at top --- 2047,2050 ---- |
From: boca4711 <boc...@us...> - 2005-05-08 10:54:36
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3140 Modified Files: AnyEdit.rc Log Message: - Fix: Removed Shortcut for ID_EDIT_CLEAR - Fix: Corrected Layout in Keyword pref dialog Index: AnyEdit.rc =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEdit.rc,v retrieving revision 1.119 retrieving revision 1.120 diff -C2 -d -r1.119 -r1.120 *** AnyEdit.rc 5 May 2005 11:34:53 -0000 1.119 --- AnyEdit.rc 8 May 2005 10:54:18 -0000 1.120 *************** *** 1364,1368 **** VK_BACK, ID_EDIT_DELETE_DELETETOSTARTOFLINE, VIRTKEY, SHIFT, CONTROL, NOINVERT - VK_DELETE, ID_EDIT_CLEAR, VIRTKEY, NOINVERT VK_DELETE, ID_EDIT_DELETE_DELETETOENDOFWORD, VIRTKEY, CONTROL, NOINVERT --- 1364,1367 ---- *************** *** 2088,2093 **** EDITTEXT IDC_KEYWORDS,96,22,190,163,ES_MULTILINE | ES_AUTOVSCROLL | WS_VSCROLL ! LTEXT "Keyword Type",IDC_STATIC,7,8,83,8 ! LTEXT "Keyword List",IDC_STATIC,99,8,54,9 END --- 2087,2092 ---- EDITTEXT IDC_KEYWORDS,96,22,190,163,ES_MULTILINE | ES_AUTOVSCROLL | WS_VSCROLL ! LTEXT "Keyword Type",IDC_STATIC,7,7,83,9 ! LTEXT "Keyword List",IDC_STATIC,96,7,54,9 END |
From: M.Deepak <td...@us...> - 2005-05-05 11:35:09
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29997 Modified Files: AnyEdit.rc Log Message: Input box static text is resized as one line. This fixes the display of a large empty space in Repeat Macro dialog and other places where it is used. Index: AnyEdit.rc =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEdit.rc,v retrieving revision 1.118 retrieving revision 1.119 diff -C2 -d -r1.118 -r1.119 *** AnyEdit.rc 5 May 2005 10:14:41 -0000 1.118 --- AnyEdit.rc 5 May 2005 11:34:53 -0000 1.119 *************** *** 1777,1790 **** END ! IDD_INPUT_BOX DIALOGEX 0, 0, 203, 66 STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Input" ! FONT 8, "MS Sans Serif", 0, 0, 0x1 BEGIN ! LTEXT "Static",IDC_HEADER,3,3,197,25 ! EDITTEXT IDC_EDIT,3,34,197,12,ES_AUTOHSCROLL | ES_WANTRETURN, WS_EX_CLIENTEDGE ! PUSHBUTTON "Cancel",IDCANCEL,95,48,50,14 ! DEFPUSHBUTTON "OK",IDOK,150,48,50,14 END --- 1777,1790 ---- END ! IDD_INPUT_BOX DIALOGEX 0, 0, 203, 54 STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Input" ! FONT 8, "MS Sans Serif" BEGIN ! LTEXT "Static",IDC_HEADER,3,3,197,11 ! EDITTEXT IDC_EDIT,3,17,197,12,ES_AUTOHSCROLL | ES_WANTRETURN, WS_EX_CLIENTEDGE ! PUSHBUTTON "Cancel",IDCANCEL,95,36,50,14 ! DEFPUSHBUTTON "OK",IDOK,150,36,50,14 END *************** *** 2415,2419 **** RIGHTMARGIN, 200 TOPMARGIN, 3 ! BOTTOMMARGIN, 62 END --- 2415,2419 ---- RIGHTMARGIN, 200 TOPMARGIN, 3 ! BOTTOMMARGIN, 50 END |
From: M.Deepak <td...@us...> - 2005-05-05 11:24:04
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27693 Modified Files: WorkspaceBar.cpp Log Message: Last active workspace bar view is restored when you start AnyEdit Index: WorkspaceBar.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/WorkspaceBar.cpp,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** WorkspaceBar.cpp 30 Sep 2004 09:42:58 -0000 1.37 --- WorkspaceBar.cpp 5 May 2005 11:23:16 -0000 1.38 *************** *** 42,45 **** --- 42,46 ---- #define KEY_WORKSPACEBAR_VIEWCOUNT _T("WorkspaceBarViewCount") #define KEY_WORKSPACEBAR_VIEWSHOWN _T("WorkspaceBarViewShown") + #define KEY_WORKSPACEBAR_LASTVIEW _T("WorkspaceBarLastView") #define WORKSPACE_ID_OFFSET 2 *************** *** 165,168 **** --- 166,173 ---- FillFileView (); FillClipView (); + + //Set last active tab as active again + int nLastView = reg.GetProfileInt(SEC_PREF, KEY_WORKSPACEBAR_LASTVIEW, 0); + m_wndTabs.SetActiveTab(nLastView); return 0; *************** *** 312,315 **** --- 317,321 ---- void CWorkspaceBar::FillClipView() { + m_wndClipView.LoadClipFiles(); } *************** *** 498,502 **** delete [] pShown; } ! CBCGSizingControlBar::OnDestroy(); } --- 504,508 ---- delete [] pShown; } ! reg.WriteProfileInt(SEC_PREF,KEY_WORKSPACEBAR_LASTVIEW,m_wndTabs.GetActiveTab()); CBCGSizingControlBar::OnDestroy(); } |
From: M.Deepak <td...@us...> - 2005-05-05 10:36:11
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18250 Modified Files: InputBox.cpp Log Message: Modified Input Box to select the default input text. You can go ahead and type in anything new, without deleting the default input. Index: InputBox.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/InputBox.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** InputBox.cpp 29 Jul 2004 07:35:03 -0000 1.5 --- InputBox.cpp 5 May 2005 10:35:56 -0000 1.6 *************** *** 91,99 **** if (!m_sCaption.IsEmpty()){ SetWindowText(m_sCaption); - } ! ! GetDlgItem(IDC_EDIT)->SetFocus(); ! return FALSE; } --- 91,100 ---- if (!m_sCaption.IsEmpty()){ SetWindowText(m_sCaption); } ! CEdit * ceInput = (CEdit *)GetDlgItem(IDC_EDIT); ! CString szInput; ! ceInput->GetWindowText(szInput); ! ceInput->SetSel(0,szInput.GetLength()); ! ceInput->SetFocus(); return FALSE; } |
From: M.Deepak <td...@us...> - 2005-05-05 10:14:51
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13840 Modified Files: AnyEdit.rc ClipTextEditor.cpp ClipTextEditor.h Log Message: - Clip text editor font size is set as the output bar font size. - Removed "save clip" button from clip text editor as clips are automatically saved when OK is pressed. - Fixed Remove clip button image Index: ClipTextEditor.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ClipTextEditor.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ClipTextEditor.h 7 Sep 2004 19:55:54 -0000 1.4 --- ClipTextEditor.h 5 May 2005 10:14:42 -0000 1.5 *************** *** 80,84 **** CComboBox m_combo; CBCGButton m_removeClip; - CBCGButton m_saveClip; CBCGButton m_addClip; CClipList m_list; --- 80,83 ---- Index: ClipTextEditor.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ClipTextEditor.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ClipTextEditor.cpp 17 Apr 2005 12:30:54 -0000 1.10 --- ClipTextEditor.cpp 5 May 2005 10:14:42 -0000 1.11 *************** *** 100,104 **** DDX_Control(pDX, IDC_COMBO_CLIPEDIT_CLIPTEXT, m_combo); DDX_Control(pDX, IDC_BUTTON_CLIPEDIT_REMOVE, m_removeClip); - DDX_Control(pDX, IDC_BUTTON_CLIPEDIT_SAVE, m_saveClip); DDX_Control(pDX, IDC_BUTTON_CLIPEDIT_ADD, m_addClip); DDX_Control(pDX, IDC_LIST_CLIPEDIT_CLIPS, m_list); --- 100,103 ---- *************** *** 128,133 **** CDialog::OnInitDialog(); ! VERIFY(m_Font.CreateFont( ! -11, // nHeight 0, // nWidth 0, // nEscapement --- 127,144 ---- CDialog::OnInitDialog(); ! CConfigFile * pConfigFile = theApp.GetConfigFile(); ! ! CString szDefaultFont="Courier"; ! int iDefaultFontSize=12; ! ! if(pConfigFile) ! { ! szDefaultFont = pConfigFile->GetOutputBarFontName(); ! iDefaultFontSize = pConfigFile->GetOutputBarFontSize(); ! } ! ! ! VERIFY(m_Font.CreateFont( ! iDefaultFontSize, // nHeight 0, // nWidth 0, // nEscapement *************** *** 142,146 **** DEFAULT_QUALITY, // nQuality DEFAULT_PITCH | FF_SWISS, // nPitchAndFamily ! "Courier New")); // lpszFacename m_rich.SetFont(&m_Font,TRUE); --- 153,158 ---- DEFAULT_QUALITY, // nQuality DEFAULT_PITCH | FF_SWISS, // nPitchAndFamily ! szDefaultFont)); // lpszFacename ! m_rich.SetFont(&m_Font,TRUE); *************** *** 150,155 **** fccur=NULL; m_addClip.SetImage (IDB_CLIP_NEW,IDB_CLIP_NEW); ! m_saveClip.SetImage (IDB_CLIP_REMOVE,IDB_CLIP_REMOVE); ! m_removeClip.SetImage (IDB_CLIP_SAVE,IDB_CLIP_SAVE); m_helpButton.SetImage(IDB_HELP_BITMAP,IDB_HELP_BITMAP); --- 162,166 ---- fccur=NULL; m_addClip.SetImage (IDB_CLIP_NEW,IDB_CLIP_NEW); ! m_removeClip.SetImage (IDB_CLIP_REMOVE,IDB_CLIP_REMOVE); m_helpButton.SetImage(IDB_HELP_BITMAP,IDB_HELP_BITMAP); *************** *** 160,164 **** if(type) { ! dir = _T("Syntax"); ext = _T("*.acmp"); } --- 171,175 ---- if(type) { ! dir = _T("Clips"); ext = _T("*.acmp"); } *************** *** 186,190 **** m_addClip.m_nFlatStyle = CBCGButton::BUTTONSTYLE_FLAT; - m_saveClip.m_nFlatStyle = CBCGButton::BUTTONSTYLE_FLAT; m_removeClip.m_nFlatStyle = CBCGButton::BUTTONSTYLE_FLAT; m_list.SetStandardButtons(BGCEDITLISTBOX_BTN_DELETE | BGCEDITLISTBOX_BTN_UP | BGCEDITLISTBOX_BTN_DOWN); --- 197,200 ---- Index: AnyEdit.rc =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEdit.rc,v retrieving revision 1.117 retrieving revision 1.118 diff -C2 -d -r1.117 -r1.118 *** AnyEdit.rc 17 Apr 2005 12:28:51 -0000 1.117 --- AnyEdit.rc 5 May 2005 10:14:41 -0000 1.118 *************** *** 1827,1831 **** STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Clip Text Editor" ! FONT 8, "MS Sans Serif", 0, 0, 0x1 BEGIN DEFPUSHBUTTON "OK",IDOK,185,212,50,14 --- 1827,1831 ---- STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Clip Text Editor" ! FONT 8, "MS Sans Serif" BEGIN DEFPUSHBUTTON "OK",IDOK,185,212,50,14 *************** *** 1833,1842 **** LTEXT "List Of Clips",IDC_LIST_CLIPEDIT_CLIPS,7,7,284,95 PUSHBUTTON "&Add Clip",IDC_BUTTON_CLIPEDIT_ADD,7,105,50,16 ! PUSHBUTTON "&Remove Clip",IDC_BUTTON_CLIPEDIT_REMOVE,105,105,59,16 LTEXT "Edit Clip Text",IDC_STATIC,168,105,44,16,SS_CENTERIMAGE COMBOBOX IDC_COMBO_CLIPEDIT_CLIPTEXT,212,107,79,41, CBS_DROPDOWNLIST | CBS_AUTOHSCROLL | CBS_SORT | WS_VSCROLL | WS_TABSTOP - PUSHBUTTON "&SaveClip",IDC_BUTTON_CLIPEDIT_SAVE,58,105,47,16 PUSHBUTTON "",IDC_BUTTON_CLIPEDIT_HELP,7,213,15,13 EDITTEXT IDC_EDIT_CLIPEDIT_CLIP,7,124,284,82,ES_MULTILINE | --- 1833,1841 ---- LTEXT "List Of Clips",IDC_LIST_CLIPEDIT_CLIPS,7,7,284,95 PUSHBUTTON "&Add Clip",IDC_BUTTON_CLIPEDIT_ADD,7,105,50,16 ! PUSHBUTTON "&Remove Clip",IDC_BUTTON_CLIPEDIT_REMOVE,63,105,59,16 LTEXT "Edit Clip Text",IDC_STATIC,168,105,44,16,SS_CENTERIMAGE COMBOBOX IDC_COMBO_CLIPEDIT_CLIPTEXT,212,107,79,41, CBS_DROPDOWNLIST | CBS_AUTOHSCROLL | CBS_SORT | WS_VSCROLL | WS_TABSTOP PUSHBUTTON "",IDC_BUTTON_CLIPEDIT_HELP,7,213,15,13 EDITTEXT IDC_EDIT_CLIPEDIT_CLIP,7,124,284,82,ES_MULTILINE | |
From: boca4711 <boc...@us...> - 2005-04-17 12:38:01
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29771 Modified Files: NewFile.cpp NewProject.cpp NewWorkspace.cpp Log Message: Fix: Set folder dialog to new look (resizeable) Index: NewWorkspace.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/NewWorkspace.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** NewWorkspace.cpp 16 Aug 2004 18:44:56 -0000 1.10 --- NewWorkspace.cpp 17 Apr 2005 12:37:53 -0000 1.11 *************** *** 66,70 **** m_locBrowse.SetButtonWidth(17); m_locBrowse.ModifyFlags(FEC_FILE,FEC_FOLDER); ! m_locBrowse.SetWindowText(sOriginalDir); --- 66,72 ---- m_locBrowse.SetButtonWidth(17); m_locBrowse.ModifyFlags(FEC_FILE,FEC_FOLDER); ! #if defined(BIF_NEWDIALOGSTYLE) ! m_locBrowse.GetBrowseInfo()->ulFlags |= BIF_NEWDIALOGSTYLE; ! #endif m_locBrowse.SetWindowText(sOriginalDir); Index: NewFile.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/NewFile.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** NewFile.cpp 17 Jul 2004 15:17:13 -0000 1.7 --- NewFile.cpp 17 Apr 2005 12:37:53 -0000 1.8 *************** *** 102,105 **** --- 102,109 ---- m_locPath.SetButtonWidth(17); m_locPath.ModifyFlags(FEC_FILE,FEC_FOLDER); + #if defined(BIF_NEWDIALOGSTYLE) + m_locPath.GetBrowseInfo()->ulFlags |= BIF_NEWDIALOGSTYLE; + #endif + TCHAR tempStr[1024]; Index: NewProject.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/NewProject.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** NewProject.cpp 23 Jul 2004 20:21:59 -0000 1.10 --- NewProject.cpp 17 Apr 2005 12:37:53 -0000 1.11 *************** *** 94,98 **** m_fileLocation.SetButtonWidth(17); m_fileLocation.ModifyFlags(FEC_FILE,FEC_FOLDER); ! if (theApp.GetWorkspace()->empty()) { --- 94,100 ---- m_fileLocation.SetButtonWidth(17); m_fileLocation.ModifyFlags(FEC_FILE,FEC_FOLDER); ! #if defined(BIF_NEWDIALOGSTYLE) ! m_fileLocation.GetBrowseInfo()->ulFlags |= BIF_NEWDIALOGSTYLE; ! #endif if (theApp.GetWorkspace()->empty()) { |
From: boca4711 <boc...@us...> - 2005-04-17 12:37:07
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29368 Modified Files: FindInFilesDlg.cpp FindInFilesDlg.h Log Message: - Fix: Set default folder in Find in File dialog - Fix: Set folder dialog to new look Index: FindInFilesDlg.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/FindInFilesDlg.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FindInFilesDlg.h 16 Sep 2004 18:51:02 -0000 1.3 --- FindInFilesDlg.h 17 Apr 2005 12:36:58 -0000 1.4 *************** *** 84,87 **** --- 84,88 ---- afx_msg void OnRadioProject(); afx_msg void OnRadioWorkspace(); + afx_msg void OnSelchangeComboFolders(); //}}AFX_MSG DECLARE_MESSAGE_MAP() Index: FindInFilesDlg.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/FindInFilesDlg.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** FindInFilesDlg.cpp 25 Sep 2004 13:10:08 -0000 1.7 --- FindInFilesDlg.cpp 17 Apr 2005 12:36:58 -0000 1.8 *************** *** 90,93 **** --- 90,94 ---- ON_BN_CLICKED(IDC_RADIO_PROJECT, OnRadioProject) ON_BN_CLICKED(IDC_RADIO_WORKSPACE, OnRadioWorkspace) + ON_CBN_SELCHANGE(IDC_COMBO_FOLDERS, OnSelchangeComboFolders) //}}AFX_MSG_MAP END_MESSAGE_MAP() *************** *** 105,108 **** --- 106,113 ---- m_locBroFol.ModifyFlags(FEC_FILE, FEC_FOLDER); m_AddFol.ModifyFlags(FEC_FILE, FEC_FOLDER); + #if defined(BIF_NEWDIALOGSTYLE) + m_locBroFol.GetBrowseInfo()->ulFlags |= BIF_NEWDIALOGSTYLE; + m_AddFol.GetBrowseInfo()->ulFlags |= BIF_NEWDIALOGSTYLE; + #endif // Regex menu *************** *** 149,152 **** --- 154,161 ---- m_radioProject.EnableWindow(FALSE); + CString strCurrentFolder; + m_cmbFolder.GetWindowText(strCurrentFolder); + m_locBroFol.SetWindowText(strCurrentFolder); + return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE *************** *** 385,386 **** --- 394,402 ---- return &m_arFolders; } + + void CFindInFilesDlg::OnSelchangeComboFolders() + { + CString strCurrentFolder; + m_cmbFolder.GetWindowText(strCurrentFolder); + m_locBroFol.SetWindowText(strCurrentFolder); + } |
From: boca4711 <boc...@us...> - 2005-04-17 12:36:06
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28618 Modified Files: ClassTree.cpp Log Message: Fix: Removed NOTOOLTIPS from ClassView Index: ClassTree.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ClassTree.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ClassTree.cpp 21 Dec 2004 08:20:52 -0000 1.16 --- ClassTree.cpp 17 Apr 2005 12:35:55 -0000 1.17 *************** *** 1018,1024 **** // Create the two trees: CRect rect(lpCreateStruct->x, lpCreateStruct->y, lpCreateStruct->x + lpCreateStruct->cx, lpCreateStruct->y + lpCreateStruct->cy); ! if (!m_ctDocument.Create(WS_CHILD | WS_VISIBLE | TVS_HASLINES | TVS_HASBUTTONS | TVS_NOTOOLTIPS | TVS_LINESATROOT, rect, this, CLASSTREE_VIEW_DOCUMENT + 1)) return -1; ! if (!m_ctWorkspace.Create(WS_CHILD | TVS_HASLINES | TVS_HASBUTTONS | TVS_NOTOOLTIPS | TVS_LINESATROOT, rect, this, CLASSTREE_VIEW_WORKSPACE + 1)) return -1; m_ctWorkspace.SetToMap(theApp.GetTags()); --- 1018,1024 ---- // Create the two trees: CRect rect(lpCreateStruct->x, lpCreateStruct->y, lpCreateStruct->x + lpCreateStruct->cx, lpCreateStruct->y + lpCreateStruct->cy); ! if (!m_ctDocument.Create(WS_CHILD | WS_VISIBLE | TVS_HASLINES | TVS_HASBUTTONS | TVS_LINESATROOT, rect, this, CLASSTREE_VIEW_DOCUMENT + 1)) return -1; ! if (!m_ctWorkspace.Create(WS_CHILD | TVS_HASLINES | TVS_HASBUTTONS | TVS_LINESATROOT, rect, this, CLASSTREE_VIEW_WORKSPACE + 1)) return -1; m_ctWorkspace.SetToMap(theApp.GetTags()); |
From: boca4711 <boc...@us...> - 2005-04-17 12:35:01
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27889 Modified Files: ScintillaEx.cpp ScintillaEx.h Log Message: - Fix: SortLines removed last line sometimes - Fix: HighlightBraces: Change nCode to nPos - Add: GetSelectionStartLine/End to get first and last selected line (with line correction in last line) Index: ScintillaEx.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ScintillaEx.cpp,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** ScintillaEx.cpp 24 Mar 2005 09:10:48 -0000 1.23 --- ScintillaEx.cpp 17 Apr 2005 12:34:52 -0000 1.24 *************** *** 239,255 **** /// Highlight matching or non matching braces and indentation guides. ! void CScintillaEx::HighlightBraces(long nCode) { ! long match = BraceMatch(nCode); if(match == INVALID_POSITION) { BraceHighlight(-1, -1); ! BraceBadLight(nCode); } else { ! BraceHighlight(nCode, match); ! int nColumn = GetColumn(nCode); SetHighlightGuide(min(nColumn, GetColumn(match))); } --- 239,255 ---- /// Highlight matching or non matching braces and indentation guides. ! void CScintillaEx::HighlightBraces(long nPos) { ! long match = BraceMatch(nPos); if(match == INVALID_POSITION) { BraceHighlight(-1, -1); ! BraceBadLight(nPos); } else { ! BraceHighlight(nPos, match); ! int nColumn = GetColumn(nPos); SetHighlightGuide(min(nColumn, GetColumn(match))); } *************** *** 1644,1656 **** } - int nLineStart = LineFromPosition(GetSelectionStart()); - int nLineEnd = LineFromPosition(GetSelectionEnd()); - SetSel(PositionFromLine(nLineStart), GetLineEndPosition(nLineEnd)); - CString strLine; LPTSTR linebuf; BeginUndoAction(); ! for(int nLine = nLineStart; nLine < nLineEnd; nLine++) { linebuf = strLine.GetBuffer(32768); --- 1644,1656 ---- } CString strLine; LPTSTR linebuf; + int nLineStart = GetSelectionStartLine(); + int nLineEnd = GetSelectionEndLine(); + SetSel(PositionFromLine(nLineStart), PositionFromLine(nLineEnd + 1)); + BeginUndoAction(); ! for(int nLine = nLineStart; nLine <= nLineEnd; nLine++) { linebuf = strLine.GetBuffer(32768); *************** *** 1658,1662 **** linebuf[nLen] = '\0'; strLine.ReleaseBuffer(); - strLine.TrimRight(); if (!bDuplicates) --- 1658,1661 ---- *************** *** 1669,1686 **** long nPosition = GetSelectionStart(); - Clear(); ! const char *eol = "\n"; ! switch (GetEOLMode()) ! { ! case SC_EOL_CRLF: ! eol = "\r\n"; ! break; ! case SC_EOL_CR: ! eol = "\r"; ! break; ! } ! int len_eol = strlen(eol); if (bAscending) { --- 1668,1676 ---- long nPosition = GetSelectionStart(); ! // Remove old selection ! Clear(); + // Insert sorted lines if (bAscending) { *************** *** 1689,1694 **** InsertText(nPosition, arLines.GetAt(i)); nPosition += arLines.GetAt(i).GetLength(); - InsertText(nPosition, eol); - nPosition += len_eol; } } --- 1679,1682 ---- *************** *** 1699,1704 **** InsertText(nPosition, arLines.GetAt(i)); nPosition += arLines.GetAt(i).GetLength(); - InsertText(nPosition, eol); - nPosition += len_eol; } } --- 1687,1690 ---- *************** *** 1964,1965 **** --- 1950,1969 ---- } } + + /// Get line number of first selected line + int CScintillaEx::GetSelectionStartLine() + { + return LineFromPosition(GetSelectionStart()); + } + + /// Get line number of last selected line + int CScintillaEx::GetSelectionEndLine() + { + int nLine = LineFromPosition(GetSelectionEnd()); + + // Remove last line if selection ends on first position of line. + if( PositionFromLine( nLine ) == GetSelectionEnd() ) + nLine--; + + return nLine; + } Index: ScintillaEx.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ScintillaEx.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ScintillaEx.h 25 Oct 2004 13:36:02 -0000 1.15 --- ScintillaEx.h 17 Apr 2005 12:34:52 -0000 1.16 *************** *** 110,114 **** void SetEOLLF(void); void InsertEOL( long lPos ); ! void HighlightBraces(long nCode); bool IsBrace(char ch); void SetBraces( CString szBraces ) { m_szBraces = szBraces; } --- 110,114 ---- void SetEOLLF(void); void InsertEOL( long lPos ); ! void HighlightBraces(long nPos); bool IsBrace(char ch); void SetBraces( CString szBraces ) { m_szBraces = szBraces; } *************** *** 154,157 **** --- 154,159 ---- std::deque<int> dqBookmarks; public: + int GetSelectionEndLine(void); + int GetSelectionStartLine(void); bool IsSaveConvertTabToSpaces(void); void SetSaveConvertTabToSpaces(bool bConvertTabToSpaces); |
From: boca4711 <boc...@us...> - 2005-04-17 12:31:48
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25880 Modified Files: FindReplaceManager.cpp Log Message: Fix: Replace replaced wrong text sometimes Index: FindReplaceManager.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/FindReplaceManager.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FindReplaceManager.cpp 23 Sep 2004 21:28:36 -0000 1.6 --- FindReplaceManager.cpp 17 Apr 2005 12:31:35 -0000 1.7 *************** *** 516,520 **** { int startPosition = nStart; ! int endPosition = nEnd;; pScintilla->SetTargetStart(startPosition); pScintilla->SetTargetEnd(endPosition); --- 516,520 ---- { int startPosition = nStart; ! int endPosition = nEnd; pScintilla->SetTargetStart(startPosition); pScintilla->SetTargetEnd(endPosition); *************** *** 621,624 **** --- 621,625 ---- int nReplacleLen = 0; + pScintilla->TargetFromSelection(); if (IsRegExp()) nReplacleLen = pScintilla->ReplaceTargetRE(strReplace.GetLength(), strReplace); |
From: boca4711 <boc...@us...> - 2005-04-17 12:31:05
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25708 Modified Files: ClipTextEditor.cpp Log Message: Fix: Fontsize changed from 10 to 11 Index: ClipTextEditor.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ClipTextEditor.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ClipTextEditor.cpp 25 Sep 2004 13:10:08 -0000 1.9 --- ClipTextEditor.cpp 17 Apr 2005 12:30:54 -0000 1.10 *************** *** 129,133 **** VERIFY(m_Font.CreateFont( ! -10, // nHeight 0, // nWidth 0, // nEscapement --- 129,133 ---- VERIFY(m_Font.CreateFont( ! -11, // nHeight 0, // nWidth 0, // nEscapement |
From: boca4711 <boc...@us...> - 2005-04-17 12:30:26
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25048 Modified Files: AnyEditView.cpp Log Message: Fix: Right mouse button set cursor position now Index: AnyEditView.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEditView.cpp,v retrieving revision 1.89 retrieving revision 1.90 diff -C2 -d -r1.89 -r1.90 *** AnyEditView.cpp 5 Apr 2005 08:28:41 -0000 1.89 --- AnyEditView.cpp 17 Apr 2005 12:30:09 -0000 1.90 *************** *** 2674,2677 **** --- 2674,2693 ---- return FALSE; } + else + { + if (pMsg->message == WM_RBUTTONDOWN) + { + int xPos = LOWORD(pMsg->lParam); // horizontal position of cursor + int yPos = HIWORD(pMsg->lParam); // vertical position of cursor + int nPos = m_Scintilla.PositionFromPoint(xPos, yPos); + if (m_Scintilla.IsSelection() && nPos >= m_Scintilla.GetSelectionStart() + && nPos <= m_Scintilla.GetSelectionEnd()) + return FALSE; + else + m_Scintilla.GotoPos(m_Scintilla.PositionFromPoint(xPos, yPos)); + + return FALSE; + } + } } |