Home | History | Annotate | Download | only in style

Lines Matching defs:border

334     bool hasBorder() const { return surround->border.hasBorder(); }
381 const BorderData& border() const { return surround->border; }
382 const BorderValue& borderLeft() const { return surround->border.left; }
383 const BorderValue& borderRight() const { return surround->border.right; }
384 const BorderValue& borderTop() const { return surround->border.top; }
385 const BorderValue& borderBottom() const { return surround->border.bottom; }
387 const NinePieceImage& borderImage() const { return surround->border.image; }
389 const IntSize& borderTopLeftRadius() const { return surround->border.topLeft; }
390 const IntSize& borderTopRightRadius() const { return surround->border.topRight; }
391 const IntSize& borderBottomLeftRadius() const { return surround->border.bottomLeft; }
392 const IntSize& borderBottomRightRadius() const { return surround->border.bottomRight; }
393 bool hasBorderRadius() const { return surround->border.hasBorderRadius(); }
395 unsigned short borderLeftWidth() const { return surround->border.borderLeftWidth(); }
396 border.left.style(); }
397 const Color& borderLeftColor() const { return surround->border.left.color; }
398 bool borderLeftIsTransparent() const { return surround->border.left.isTransparent(); }
399 unsigned short borderRightWidth() const { return surround->border.borderRightWidth(); }
400 EBorderStyle borderRightStyle() const { return surround->border.right.style(); }
401 const Color& borderRightColor() const { return surround->border.right.color; }
402 bool borderRightIsTransparent() const { return surround->border.right.isTransparent(); }
403 unsigned short borderTopWidth() const { return surround->border.borderTopWidth(); }
404 EBorderStyle borderTopStyle() const { return surround->border.top.style(); }
405 const Color& borderTopColor() const { return surround->border.top.color; }
406 bool borderTopIsTransparent() const { return surround->border.top.isTransparent(); }
407 unsigned short borderBottomWidth() const { return surround->border.borderBottomWidth(); }
408 EBorderStyle borderBottomStyle() const { return surround->border.bottom.style(); }
409 const Color& borderBottomColor() const { return surround->border.bottom.color; }
410 bool borderBottomIsTransparent() const { return surround->border.bottom.isTransparent(); }
754 void resetBorderTop() { SET_VAR(surround, border.top, BorderValue()) }
755 void resetBorderRight() { SET_VAR(surround, border.right, BorderValue()) }
756 void resetBorderBottom() { SET_VAR(surround, border.bottom, BorderValue()) }
757 void resetBorderLeft() { SET_VAR(surround, border.left, BorderValue()) }
758 void resetBorderImage() { SET_VAR(surround, border.image, NinePieceImage()) }
760 void resetBorderTopLeftRadius() { SET_VAR(surround, border.topLeft, initialBorderRadius()) }
761 void resetBorderTopRightRadius() { SET_VAR(surround, border.topRight, initialBorderRadius()) }
762 void resetBorderBottomLeftRadius() { SET_VAR(surround, border.bottomLeft, initialBorderRadius()) }
763 void resetBorderBottomRightRadius() { SET_VAR(surround, border.bottomRight, initialBorderRadius()) }
774 void setBorderImage(const NinePieceImage& b) { SET_VAR(surround, border.image, b) }
776 void setBorderTopLeftRadius(const IntSize& s) { SET_VAR(surround, border.topLeft, s) }
777 void setBorderTopRightRadius(const IntSize& s) { SET_VAR(surround, border.topRight, s) }
778 void setBorderBottomLeftRadius(const IntSize& s) { SET_VAR(surround, border.bottomLeft, s) }
779 void setBorderBottomRightRadius(const IntSize& s) { SET_VAR(surround, border.bottomRight, s) }
791 void setBorderLeftWidth(unsigned short v) { SET_VAR(surround, border.left.width, v) }
792 void setBorderLeftStyle(EBorderStyle v) { SET_VAR(surround, border.left.m_style, v) }
793 void setBorderLeftColor(const Color& v) { SET_VAR(surround, border.left.color, v) }
794 void setBorderRightWidth(unsigned short v) { SET_VAR(surround, border.right.width, v) }
795 void setBorderRightStyle(EBorderStyle v) { SET_VAR(surround, border.right.m_style, v) }
796 void setBorderRightColor(const Color& v) { SET_VAR(surround, border.right.color, v) }
797 void setBorderTopWidth(unsigned short v) { SET_VAR(surround, border.top.width, v) }
798 void setBorderTopStyle(EBorderStyle v) { SET_VAR(surround, border.top.m_style, v) }
799 void setBorderTopColor(const Color& v) { SET_VAR(surround, border.top.color, v) }
800 void setBorderBottomWidth(unsigned short v) { SET_VAR(surround, border.bottom.width, v) }
801 void setBorderBottomStyle(EBorderStyle v) { SET_VAR(surround, border.bottom.m_style, v) }
802 void setBorderBottomColor(const Color& v) { SET_VAR(surround, border.bottom.color, v) }