Added clause range and selection support for Input Methods.

This commit is contained in:
tague%netscape.com 1999-06-29 20:30:42 +00:00
Родитель c14e7f7bd7
Коммит 3456598afe
5 изменённых файлов: 9 добавлений и 1 удалений

Двоичные данные
dom/macbuild/dom.mcp

Двоичный файл не отображается.

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

@ -19,3 +19,6 @@ nsIDOMPaintListener.h
nsIDOMEventTarget.h
nsIDOMTextListener.h
nsIDOMCompositionListener.h
nsIDOMTextRange.h
nsIDOMTextRangeList.h

Двоичные данные
editor/macbuild/editor.mcp

Двоичный файл не отображается.

Двоичные данные
layout/macbuild/layout.mcp

Двоичный файл не отображается.

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

@ -1275,7 +1275,12 @@ PRBool nsMacEventHandler::HandleTextEvent(void)
textEvent.point.y = 0;
textEvent.time = PR_IntervalNow();
textEvent.theText = mIMECompositionString;
textEvent.rangeCount = 1;
textEvent.rangeArray = new nsTextRange[1];
textEvent.rangeArray[0].mStartOffset = 0;
textEvent.rangeArray[0].mEndOffset = 1;
textEvent.rangeArray[0].mRangeType = 0x01;
//
// nsGUIEvent parts
//