This commit is contained in:
peterl%netscape.com 1998-10-26 23:14:17 +00:00
Родитель b97d03fe30
Коммит 9c1854621c
8 изменённых файлов: 14 добавлений и 14 удалений

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

@ -148,7 +148,7 @@ NS_METHOD nsHTMLContainerFrame::GetCursorAndContentAt(nsIPresContext& aPresConte
mContent->GetTag(tag);
if (nsHTMLAtoms::a == tag) {
// Anchor tags override their child cursors in some cases.
if ((NS_STYLE_CURSOR_IBEAM == aCursor) &&
if ((NS_STYLE_CURSOR_TEXT == aCursor) &&
(NS_STYLE_CURSOR_INHERIT != myCursor)) {
aCursor = myCursor;
}

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

@ -212,10 +212,10 @@ RootFrame::HandleEvent(nsIPresContext& aPresContext,
case NS_STYLE_CURSOR_DEFAULT:
c = eCursor_standard;
break;
case NS_STYLE_CURSOR_HAND:
case NS_STYLE_CURSOR_POINTER:
c = eCursor_hyperlink;
break;
case NS_STYLE_CURSOR_IBEAM:
case NS_STYLE_CURSOR_TEXT:
c = eCursor_select;
break;
}
@ -715,10 +715,10 @@ RootContentFrame::HandleEvent(nsIPresContext& aPresContext,
case NS_STYLE_CURSOR_DEFAULT:
c = eCursor_standard;
break;
case NS_STYLE_CURSOR_HAND:
case NS_STYLE_CURSOR_POINTER:
c = eCursor_hyperlink;
break;
case NS_STYLE_CURSOR_IBEAM:
case NS_STYLE_CURSOR_TEXT:
c = eCursor_select;
break;
}

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

@ -886,7 +886,7 @@ ImageFrame::GetCursorAndContentAt(nsIPresContext& aPresContext,
PRInt32 x = NSTwipsToIntPixels((aPoint.x - inner.x), t2p);
PRInt32 y = NSTwipsToIntPixels((aPoint.y - inner.y), t2p);
if (NS_OK == map->IsInside(x, y)) {
aCursor = NS_STYLE_CURSOR_HAND;
aCursor = NS_STYLE_CURSOR_POINTER;
}
NS_RELEASE(map);
}

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

@ -447,7 +447,7 @@ TextFrame::GetCursorAndContentAt(nsIPresContext& aPresContext,
PRInt32& aCursor)
{
*aContent = mContent;
aCursor = NS_STYLE_CURSOR_IBEAM;
aCursor = NS_STYLE_CURSOR_TEXT;
return NS_OK;
}

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

@ -148,7 +148,7 @@ NS_METHOD nsHTMLContainerFrame::GetCursorAndContentAt(nsIPresContext& aPresConte
mContent->GetTag(tag);
if (nsHTMLAtoms::a == tag) {
// Anchor tags override their child cursors in some cases.
if ((NS_STYLE_CURSOR_IBEAM == aCursor) &&
if ((NS_STYLE_CURSOR_TEXT == aCursor) &&
(NS_STYLE_CURSOR_INHERIT != myCursor)) {
aCursor = myCursor;
}

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

@ -212,10 +212,10 @@ RootFrame::HandleEvent(nsIPresContext& aPresContext,
case NS_STYLE_CURSOR_DEFAULT:
c = eCursor_standard;
break;
case NS_STYLE_CURSOR_HAND:
case NS_STYLE_CURSOR_POINTER:
c = eCursor_hyperlink;
break;
case NS_STYLE_CURSOR_IBEAM:
case NS_STYLE_CURSOR_TEXT:
c = eCursor_select;
break;
}
@ -715,10 +715,10 @@ RootContentFrame::HandleEvent(nsIPresContext& aPresContext,
case NS_STYLE_CURSOR_DEFAULT:
c = eCursor_standard;
break;
case NS_STYLE_CURSOR_HAND:
case NS_STYLE_CURSOR_POINTER:
c = eCursor_hyperlink;
break;
case NS_STYLE_CURSOR_IBEAM:
case NS_STYLE_CURSOR_TEXT:
c = eCursor_select;
break;
}

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

@ -886,7 +886,7 @@ ImageFrame::GetCursorAndContentAt(nsIPresContext& aPresContext,
PRInt32 x = NSTwipsToIntPixels((aPoint.x - inner.x), t2p);
PRInt32 y = NSTwipsToIntPixels((aPoint.y - inner.y), t2p);
if (NS_OK == map->IsInside(x, y)) {
aCursor = NS_STYLE_CURSOR_HAND;
aCursor = NS_STYLE_CURSOR_POINTER;
}
NS_RELEASE(map);
}

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

@ -447,7 +447,7 @@ TextFrame::GetCursorAndContentAt(nsIPresContext& aPresContext,
PRInt32& aCursor)
{
*aContent = mContent;
aCursor = NS_STYLE_CURSOR_IBEAM;
aCursor = NS_STYLE_CURSOR_TEXT;
return NS_OK;
}