anonymous@RULINUX.NET~# Last login: 2025-04-06 15:19:00
Регистрация Вход Новости | Разметка | Пользователи | Галерея | Форум | Статьи | Неподтвержденное | Трекер | Правила форума | F.A.Q. | Ссылки | Поиск


Re:Прием патчей к исходникам LOR-NG

  1. #ifndef nsHTMLReflowMetrics_h___
  2. #define nsHTMLReflowMetrics_h___
  3. #include <stdio.h>
  4. #include "nsISupports.h"
  5. #include "nsMargin.h"
  6. #include "nsRect.h"
  7. // for MOZ_MATHML
  8. #include "nsIRenderingContext.h" //to get struct nsBoundingMetrics
  9. //———————————————————————-
  10. // Option flags
  11. #define NS_REFLOW_CALC_MAX_WIDTH 0x0001
  12. #ifdef MOZ_MATHML
  13. #define NS_REFLOW_CALC_BOUNDING_METRICS 0x0002
  14. #endif
  15. /**
  16. * An nsCollapsingMargin represents a vertical collapsing margin between
  17. * blocks as described in section 8.3.1 of CSS2,
  18. * <URL: http://www.w3.org/TR/REC-CSS2/box.html#collapsing-margins >.
  19. *
  20. * All adjacent vertical margins collapse, and the resulting margin is
  21. * the sum of the largest positive margin included and the smallest (most
  22. * negative) negative margin included.
  23. */
  24. struct nsCollapsingMargin {
  25. private:
  26. nscoord mMostPos; // the largest positive margin included
  27. nscoord mMostNeg; // the smallest negative margin included
  28. public:
  29. nsCollapsingMargin()
  30. : mMostPos(0),
  31. mMostNeg(0)
  32. {
  33. }
  34. nsCollapsingMargin(const nsCollapsingMargin& aOther)
  35. : mMostPos(aOther.mMostPos),
  36. mMostNeg(aOther.mMostNeg)
  37. {
  38. }
  39. nsCollapsingMargin& operator=(const nsCollapsingMargin& aOther)
  40. {
  41. mMostPos = aOther.mMostPos;
  42. mMostNeg = aOther.mMostNeg;
  43. return *this;
  44. }
  45. void Include(nscoord aCoord)
  46. {
  47. if (aCoord > mMostPos)
  48. mMostPos = aCoord;
  49. else if (aCoord < mMostNeg)
  50. mMostNeg = aCoord;
  51. }
  52. void Include(const nsCollapsingMargin& aOther)
  53. {
  54. if (aOther.mMostPos > mMostPos)
  55. mMostPos = aOther.mMostPos;
  56. if (aOther.mMostNeg < mMostNeg)
  57. mMostNeg = aOther.mMostNeg;
  58. }
  59. void Zero()
  60. {
  61. mMostPos = 0;
  62. mMostNeg = 0;
  63. }
  64. PRBool IsZero() const
  65. {
  66. return (mMostPos == 0) && (mMostNeg == 0);
  67. }
  68. nscoord get() const
  69. {
  70. return mMostPos + mMostNeg;
  71. }
  72. };

temy4(*)(2009-05-13 00:39:25)

Opera/9.64 (X11; Linux i686; U; en) Presto/2.1.1
Тема:

Ваш комментарий:

Выберите фильтр: матерные выражения
торсионщина
нацпол
спам
флуд
порно
изображения
модераторские/пользовательские фильтры
captcha
Введите символы либо ответ (если на картинке задача):

Пользователям браузеров без CSS: Поле для проверки, заполнять НЕ НАДО:




(c) 2010-2020 LOR-NG Developers Group
Powered by TimeMachine

Valid HTML 4.01 Transitional Правильный CSS!