anonymous
@
RULINUX.NET~#
Last login: 2025-04-06 15:19:00
Регистрация
Вход
Новости
|
Разметка
|
Пользователи
|
Галерея
|
Форум
|
Статьи
|
Неподтвержденное
|
Трекер
|
Правила форума
|
F.A.Q.
|
Ссылки
|
Поиск
Re:Прием патчей к исходникам LOR-NG
#ifndef nsHTMLReflowMetrics_h___
#define nsHTMLReflowMetrics_h___
#include <stdio.h>
#include "nsISupports.h"
#include "nsMargin.h"
#include "nsRect.h"
// for MOZ_MATHML
#include "nsIRenderingContext.h" //to get struct nsBoundingMetrics
//———————————————————————-
// Option flags
#define NS_REFLOW_CALC_MAX_WIDTH 0x0001
#ifdef MOZ_MATHML
#define NS_REFLOW_CALC_BOUNDING_METRICS 0x0002
#endif
/**
* An nsCollapsingMargin represents a vertical collapsing margin between
* blocks as described in section 8.3.1 of CSS2,
* <URL:
http://www.w3.org/TR/REC-CSS2/box.html#collapsing-margins
>.
*
* All adjacent vertical margins collapse, and the resulting margin is
* the sum of the largest positive margin included and the smallest (most
* negative) negative margin included.
*/
struct nsCollapsingMargin {
private:
nscoord mMostPos; // the largest positive margin included
nscoord mMostNeg; // the smallest negative margin included
public:
nsCollapsingMargin()
: mMostPos(0),
mMostNeg(0)
{
}
nsCollapsingMargin(const nsCollapsingMargin& aOther)
: mMostPos(aOther.mMostPos),
mMostNeg(aOther.mMostNeg)
{
}
nsCollapsingMargin& operator=(const nsCollapsingMargin& aOther)
{
mMostPos = aOther.mMostPos;
mMostNeg = aOther.mMostNeg;
return *this;
}
void Include(nscoord aCoord)
{
if (aCoord > mMostPos)
mMostPos = aCoord;
else if (aCoord < mMostNeg)
mMostNeg = aCoord;
}
void Include(const nsCollapsingMargin& aOther)
{
if (aOther.mMostPos > mMostPos)
mMostPos = aOther.mMostPos;
if (aOther.mMostNeg < mMostNeg)
mMostNeg = aOther.mMostNeg;
}
void Zero()
{
mMostPos = 0;
mMostNeg = 0;
}
PRBool IsZero() const
{
return (mMostPos == 0) && (mMostNeg == 0);
}
nscoord get() const
{
return mMostPos + mMostNeg;
}
};
temy4(
*
)(2009-05-13 00:39:25)
Opera/9.64 (X11; Linux i686; U; en) Presto/2.1.1
Тема:
Ваш комментарий:
Выберите фильтр:
матерные выражения
торсионщина
нацпол
спам
флуд
порно
изображения
модераторские/пользовательские фильтры
Введите символы либо ответ (если на картинке задача):
Пользователям браузеров без CSS: Поле для проверки, заполнять НЕ НАДО:
(c) 2010-2020 LOR-NG Developers Group
Powered by TimeMachine
Re:Прием патчей к исходникам LOR-NG
Opera/9.64 (X11; Linux i686; U; en) Presto/2.1.1