зеркало из https://github.com/mozilla/pjs.git
renamed cursor defines
This commit is contained in:
Родитель
b97d03fe30
Коммит
9c1854621c
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче