Changed the nsBandTrapezoid::State enum values to conform to the coding

standard


git-svn-id: svn://10.0.0.236/trunk@2164 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
troy
1998-05-22 04:03:14 +00:00
parent 449871aa10
commit c7abe18deb
10 changed files with 27 additions and 27 deletions

View File

@@ -41,7 +41,7 @@ struct nsSize;
* </ul>
*/
struct nsBandTrapezoid {
enum State {smAvailable, smOccupied, smOccupiedMultiple};
enum State {Available, Occupied, OccupiedMultiple};
nscoord yTop, yBottom; // top and bottom y-coordinates
nscoord xTopLeft, xBottomLeft; // left edge x-coordinates

View File

@@ -506,7 +506,7 @@ nsReflowStatus nsContainerFrame::ReflowChild(nsIFrame* aKidFrame,
for (i = 0; i < bandData.count; i++) {
nsBandTrapezoid* trapezoid = &trapezoids[i];
if (trapezoid->state != nsBandTrapezoid::smAvailable) {
if (trapezoid->state != nsBandTrapezoid::Available) {
nsStyleDisplay* display;
// XXX Handle the case of multiple frames
@@ -522,7 +522,7 @@ nsReflowStatus nsContainerFrame::ReflowChild(nsIFrame* aKidFrame,
}
}
if (nsBandTrapezoid::smAvailable == trapezoid->state) {
if (nsBandTrapezoid::Available == trapezoid->state) {
// The trapezoid is available
trapezoid->GetRect(availBand);
} else {

View File

@@ -171,7 +171,7 @@ PRInt32 SpaceManager::GetBandAvailableSpace(const BandRect* aBand,
if (aBand->left > left) {
// The rect is to the right of our current left coordinate, so we've
// found some available space
trapezoid->state = nsBandTrapezoid::smAvailable;
trapezoid->state = nsBandTrapezoid::Available;
trapezoid->frame = nsnull;
// Assign the trapezoid a rectangular shape. The trapezoid must be in the
@@ -185,11 +185,11 @@ PRInt32 SpaceManager::GetBandAvailableSpace(const BandRect* aBand,
// The rect represents unavailable space, so add another trapezoid
if (1 == aBand->numFrames) {
trapezoid->state = nsBandTrapezoid::smOccupied;
trapezoid->state = nsBandTrapezoid::Occupied;
trapezoid->frame = aBand->frame;
} else {
NS_ASSERTION(aBand->numFrames > 1, "unexpected frame count");
trapezoid->state = nsBandTrapezoid::smOccupiedMultiple;
trapezoid->state = nsBandTrapezoid::OccupiedMultiple;
trapezoid->frames = aBand->frames;
}
@@ -218,7 +218,7 @@ PRInt32 SpaceManager::GetBandAvailableSpace(const BandRect* aBand,
// No more rects left in the band. If we haven't yet reached the right edge,
// then all the remaining space is available
if (left < rightEdge) {
trapezoid->state = nsBandTrapezoid::smAvailable;
trapezoid->state = nsBandTrapezoid::Available;
trapezoid->frame = nsnull;
// Assign the trapezoid a rectangular shape. The trapezoid must be in the
@@ -243,7 +243,7 @@ PRInt32 SpaceManager::GetBandData(nscoord aYOffset,
// All the requested space is available
aBandData.count = 1;
aBandData.trapezoids[0] = nsRect(0, aYOffset, aMaxSize.width, aMaxSize.height);
aBandData.trapezoids[0].state = nsBandTrapezoid::smAvailable;
aBandData.trapezoids[0].state = nsBandTrapezoid::Available;
aBandData.trapezoids[0].frame = nsnull;
} else {
// Find the first band that contains the y-offset or is below the y-offset
@@ -258,7 +258,7 @@ PRInt32 SpaceManager::GetBandData(nscoord aYOffset,
aBandData.count = 1;
aBandData.trapezoids[0] =
nsRect(0, aYOffset, aMaxSize.width, PR_MIN(band->top - y, aMaxSize.height));
aBandData.trapezoids[0].state = nsBandTrapezoid::smAvailable;
aBandData.trapezoids[0].state = nsBandTrapezoid::Available;
aBandData.trapezoids[0].frame = nsnull;
break;
} else if (y < band->bottom) {

View File

@@ -55,7 +55,7 @@ void nsBlockBandData::ComputeAvailSpaceRect()
for (i = 0; i < count; i++) {
nsBandTrapezoid* trapezoid = &data[i];
if (trapezoid->state != nsBandTrapezoid::smAvailable) {
if (trapezoid->state != nsBandTrapezoid::Available) {
nsStyleDisplay* display;
// XXX Handle the case of multiple frames
@@ -71,7 +71,7 @@ void nsBlockBandData::ComputeAvailSpaceRect()
}
}
if (nsBandTrapezoid::smAvailable == trapezoid->state) {
if (nsBandTrapezoid::Available == trapezoid->state) {
// The trapezoid is available
trapezoid->GetRect(availSpace);
} else {

View File

@@ -55,7 +55,7 @@ void nsBlockBandData::ComputeAvailSpaceRect()
for (i = 0; i < count; i++) {
nsBandTrapezoid* trapezoid = &data[i];
if (trapezoid->state != nsBandTrapezoid::smAvailable) {
if (trapezoid->state != nsBandTrapezoid::Available) {
nsStyleDisplay* display;
// XXX Handle the case of multiple frames
@@ -71,7 +71,7 @@ void nsBlockBandData::ComputeAvailSpaceRect()
}
}
if (nsBandTrapezoid::smAvailable == trapezoid->state) {
if (nsBandTrapezoid::Available == trapezoid->state) {
// The trapezoid is available
trapezoid->GetRect(availSpace);
} else {

View File

@@ -55,7 +55,7 @@ void nsBlockBandData::ComputeAvailSpaceRect()
for (i = 0; i < count; i++) {
nsBandTrapezoid* trapezoid = &data[i];
if (trapezoid->state != nsBandTrapezoid::smAvailable) {
if (trapezoid->state != nsBandTrapezoid::Available) {
nsStyleDisplay* display;
// XXX Handle the case of multiple frames
@@ -71,7 +71,7 @@ void nsBlockBandData::ComputeAvailSpaceRect()
}
}
if (nsBandTrapezoid::smAvailable == trapezoid->state) {
if (nsBandTrapezoid::Available == trapezoid->state) {
// The trapezoid is available
trapezoid->GetRect(availSpace);
} else {

View File

@@ -171,7 +171,7 @@ PRInt32 SpaceManager::GetBandAvailableSpace(const BandRect* aBand,
if (aBand->left > left) {
// The rect is to the right of our current left coordinate, so we've
// found some available space
trapezoid->state = nsBandTrapezoid::smAvailable;
trapezoid->state = nsBandTrapezoid::Available;
trapezoid->frame = nsnull;
// Assign the trapezoid a rectangular shape. The trapezoid must be in the
@@ -185,11 +185,11 @@ PRInt32 SpaceManager::GetBandAvailableSpace(const BandRect* aBand,
// The rect represents unavailable space, so add another trapezoid
if (1 == aBand->numFrames) {
trapezoid->state = nsBandTrapezoid::smOccupied;
trapezoid->state = nsBandTrapezoid::Occupied;
trapezoid->frame = aBand->frame;
} else {
NS_ASSERTION(aBand->numFrames > 1, "unexpected frame count");
trapezoid->state = nsBandTrapezoid::smOccupiedMultiple;
trapezoid->state = nsBandTrapezoid::OccupiedMultiple;
trapezoid->frames = aBand->frames;
}
@@ -218,7 +218,7 @@ PRInt32 SpaceManager::GetBandAvailableSpace(const BandRect* aBand,
// No more rects left in the band. If we haven't yet reached the right edge,
// then all the remaining space is available
if (left < rightEdge) {
trapezoid->state = nsBandTrapezoid::smAvailable;
trapezoid->state = nsBandTrapezoid::Available;
trapezoid->frame = nsnull;
// Assign the trapezoid a rectangular shape. The trapezoid must be in the
@@ -243,7 +243,7 @@ PRInt32 SpaceManager::GetBandData(nscoord aYOffset,
// All the requested space is available
aBandData.count = 1;
aBandData.trapezoids[0] = nsRect(0, aYOffset, aMaxSize.width, aMaxSize.height);
aBandData.trapezoids[0].state = nsBandTrapezoid::smAvailable;
aBandData.trapezoids[0].state = nsBandTrapezoid::Available;
aBandData.trapezoids[0].frame = nsnull;
} else {
// Find the first band that contains the y-offset or is below the y-offset
@@ -258,7 +258,7 @@ PRInt32 SpaceManager::GetBandData(nscoord aYOffset,
aBandData.count = 1;
aBandData.trapezoids[0] =
nsRect(0, aYOffset, aMaxSize.width, PR_MIN(band->top - y, aMaxSize.height));
aBandData.trapezoids[0].state = nsBandTrapezoid::smAvailable;
aBandData.trapezoids[0].state = nsBandTrapezoid::Available;
aBandData.trapezoids[0].frame = nsnull;
break;
} else if (y < band->bottom) {

View File

@@ -55,7 +55,7 @@ void nsBlockBandData::ComputeAvailSpaceRect()
for (i = 0; i < count; i++) {
nsBandTrapezoid* trapezoid = &data[i];
if (trapezoid->state != nsBandTrapezoid::smAvailable) {
if (trapezoid->state != nsBandTrapezoid::Available) {
nsStyleDisplay* display;
// XXX Handle the case of multiple frames
@@ -71,7 +71,7 @@ void nsBlockBandData::ComputeAvailSpaceRect()
}
}
if (nsBandTrapezoid::smAvailable == trapezoid->state) {
if (nsBandTrapezoid::Available == trapezoid->state) {
// The trapezoid is available
trapezoid->GetRect(availSpace);
} else {

View File

@@ -55,7 +55,7 @@ void nsBlockBandData::ComputeAvailSpaceRect()
for (i = 0; i < count; i++) {
nsBandTrapezoid* trapezoid = &data[i];
if (trapezoid->state != nsBandTrapezoid::smAvailable) {
if (trapezoid->state != nsBandTrapezoid::Available) {
nsStyleDisplay* display;
// XXX Handle the case of multiple frames
@@ -71,7 +71,7 @@ void nsBlockBandData::ComputeAvailSpaceRect()
}
}
if (nsBandTrapezoid::smAvailable == trapezoid->state) {
if (nsBandTrapezoid::Available == trapezoid->state) {
// The trapezoid is available
trapezoid->GetRect(availSpace);
} else {

View File

@@ -55,7 +55,7 @@ void nsBlockBandData::ComputeAvailSpaceRect()
for (i = 0; i < count; i++) {
nsBandTrapezoid* trapezoid = &data[i];
if (trapezoid->state != nsBandTrapezoid::smAvailable) {
if (trapezoid->state != nsBandTrapezoid::Available) {
nsStyleDisplay* display;
// XXX Handle the case of multiple frames
@@ -71,7 +71,7 @@ void nsBlockBandData::ComputeAvailSpaceRect()
}
}
if (nsBandTrapezoid::smAvailable == trapezoid->state) {
if (nsBandTrapezoid::Available == trapezoid->state) {
// The trapezoid is available
trapezoid->GetRect(availSpace);
} else {