remove ifdefs for IBMBIDI from editor, bug 89203 r+sr=roc

This commit is contained in:
cbiesinger%web.de 2003-01-17 11:11:10 +00:00
Родитель b11fb7ca9d
Коммит e3e8585471
3 изменённых файлов: 0 добавлений и 15 удалений

Просмотреть файл

@ -366,7 +366,6 @@ nsHTMLEditRules::AfterEdit(PRInt32 action, nsIEditor::EDirection aDirection)
nsCOMPtr<nsISelectionController> selCon;
mHTMLEditor->GetSelectionController(getter_AddRefs(selCon));
if (selCon) selCon->SetCaretEnabled(PR_TRUE);
#ifdef IBMBIDI
/* After inserting text the cursor Bidi level must be set to the level of the inserted text.
* This is difficult, because we cannot know what the level is until after the Bidi algorithm
* is applied to the whole paragraph.
@ -380,7 +379,6 @@ nsHTMLEditRules::AfterEdit(PRInt32 action, nsIEditor::EDirection aDirection)
shell->UndefineCaretBidiLevel();
}
}
#endif
}
return res;
@ -1413,11 +1411,9 @@ nsHTMLEditRules::WillInsertText(PRInt32 aAction,
if (NS_FAILED(res)) return res;
}
}
#ifdef IBMBIDI
nsCOMPtr<nsISelection> selection(aSelection);
nsCOMPtr<nsISelectionPrivate> selPriv(do_QueryInterface(selection));
selPriv->SetInterlinePosition(PR_FALSE);
#endif
if (curNode) aSelection->Collapse(curNode, curOffset);
// manually update the doc changed range so that AfterEdit will clean up
// the correct portion of the document.
@ -1829,12 +1825,10 @@ nsHTMLEditRules::WillDeleteSelection(nsISelection *aSelection,
if (NS_FAILED(res)) return res;
if (*aHandled) return NS_OK;
#ifdef IBMBIDI
// Test for distance between caret and text that will be deleted
res = CheckBidiLevelForDeletion(startNode, startOffset, aAction, aCancel);
if (NS_FAILED(res)) return res;
if (*aCancel) return NS_OK;
#endif // IBMBIDI
// what's in the direction we are deleting?

Просмотреть файл

@ -56,13 +56,8 @@ CPPSRCS = \
nsWrapUtils.cpp \
nsInternetCiter.cpp \
nsAOLCiter.cpp \
$(NULL)
ifdef IBMBIDI
CPPSRCS += \
nsTextEditRulesBidi.cpp \
$(NULL)
endif
# don't want the shared lib; force the creation of a static lib.
FORCE_STATIC_LIB = 1

Просмотреть файл

@ -236,7 +236,6 @@ nsTextEditRules::AfterEdit(PRInt32 action, nsIEditor::EDirection aDirection)
res = CreateTrailingBRIfNeeded();
if (NS_FAILED(res)) return res;
#ifdef IBMBIDI
/* After inserting text the cursor Bidi level must be set to the level of the inserted text.
* This is difficult, because we cannot know what the level is until after the Bidi algorithm
* is applied to the whole paragraph.
@ -250,7 +249,6 @@ nsTextEditRules::AfterEdit(PRInt32 action, nsIEditor::EDirection aDirection)
shell->UndefineCaretBidiLevel();
}
}
#endif
}
return res;
}
@ -862,12 +860,10 @@ nsTextEditRules::WillDeleteSelection(nsISelection *aSelection,
if (bCollapsed)
{
#ifdef IBMBIDI
// Test for distance between caret and text that will be deleted
res = CheckBidiLevelForDeletion(startNode, startOffset, aCollapsedAction, aCancel);
if (NS_FAILED(res)) return res;
if (*aCancel) return NS_OK;
#endif // IBMBIDI
nsCOMPtr<nsIDOMText> textNode;
PRUint32 strLength;