OSDN Git Service

css_attributes.hpp: 追加しはじめました
authorMyun2 <myun2@nwhite.info>
Thu, 23 Sep 2010 04:32:23 +0000 (13:32 +0900)
committerMyun2 <myun2@nwhite.info>
Thu, 23 Sep 2010 04:32:23 +0000 (13:32 +0900)
roast/include/roast/web/css_attributes.hpp

index 89f033b..824754d 100644 (file)
@@ -9,7 +9,214 @@
 
 namespace roast
 {
+       namespace web
+       {
+               namespace css
+               {
+                       ///////////////////////////////////////////////////////////////////////////
 
+                       class _base
+                       {
+                       protected:
+                               ::std::string m_name;
+                               ::std::string m_value;
+                               _base(const char* name){ m_name = name; }
+                               _base(const char* name, const char* value){ m_value = value; }
+                       };
+                       
+                       ///////////////////////////////////////////////////////////////////////////
+                       
+                       class color
+                       {
+                       public:
+                               color(const char* color_name) : _base("color", color_name) {}
+                               color(const char* color_name) : _base("color", color_name) {}
+                               color(const char* color_name) : _base("color", color_name) {}
+                               color(const char* color_name) : _base("color", color_name) {}
+                               color(const char* color_name) : _base("color", color_name) {}
+                       };
+/*
+\83}\81[\83W\83\93
+margin
+margin-top
+margin-right
+margin-bottom
+margin-left
+\83p\83f\83B\83\93\83O
+padding
+padding-top
+padding-right
+padding-bottom
+padding-left
+\83{\81[\83_\81[
+border
+border-top
+border-right
+border-bottom
+border-left
+border-width
+border-top-width
+border-right-width
+border-bottom-width
+border-left-width
+border-style
+border-top-style
+border-right-style
+border-bottom-style
+border-left-style
+border-color
+border-top-color
+border-right-color
+border-bottom-color
+border-left-color
+       
+\83A\83E\83g\83\89\83C\83\93
+outline
+outline-width
+outline-style
+outline-color
+\83r\83W\83\85\83A\83\8b
+display
+position
+top
+left
+bottom
+right
+float
+clear
+z-index
+direction
+unicode-bidi
+width
+height
+min-width
+min-height
+max-width
+max-height
+vertical-align
+overflow
+overflow-x
+overflow-y
+clip
+visibility
+\83R\83\93\83e\83\93\83g\8dì\90¬
+content
+quotes
+counter-reset
+counter-increment
+marker-offset
+\83\8a\83X\83g
+list-style
+list-style-type
+list-style-position
+list-style-image
+\88ó\8dü
+page-break-before
+page-break-after
+page-break-inside
+size
+marks
+page
+orphans
+widows
+       
+\94w\8ci
+background
+background-color
+background-image
+background-repeat
+background-attachment
+background-position
+\83t\83H\83\93\83g
+font
+font-style
+font-variant
+font-weight
+font-size
+line-height
+font-family
+font-stretch
+font-size-adjust
+\83e\83L\83X\83g
+text-indent
+text-align
+text-justify
+text-decoration
+text-underline-position
+text-shadow
+letter-spacing
+word-spacing
+text-transform
+white-space
+line-break
+word-break
+ruby-align
+ruby-overhang
+ruby-position
+layout-grid
+layout-grid-line
+layout-grid-char
+layout-grid-mode
+layout-grid-type
+text-autospace
+text-kashida-space
+writing-mode
+\83e\81[\83u\83\8b
+caption-side
+table-layout
+border-collapse
+border-spacing
+empty-cells
+       
+\83\86\81[\83U\83C\83\93\83^\83t\83F\81[\83X
+cursor
+ime-mode
+behavior: url()
+scrollbar-base-color
+scrollbar-track-color
+scrollbar-face-color
+scrollbar-shadow-color
+scrollbar-darkshadow-color
+scrollbar-highlight-color
+scrollbar-3dlight-color
+scrollbar-arrow-color
+\89¹\90º\8aÖ\98A
+volume
+speak
+pause
+pause-before
+pause-after
+cue
+cue-after
+cue-before
+play-during
+azimuth
+elevation
+speech-rate
+voice-family
+pitch
+pitch-range
+stress
+richness
+speak-punctuation
+speak-numeral
+speak-header
+\83t\83B\83\8b\83^
+filter: Alpha()
+filter: Blur()
+filter: Chroma()
+filter: DropShadow()
+filter: FlipH()
+filter: FlipV()
+filter: Glow()
+filter: Gray()
+filter: Invert()
+filter: Light()
+filter: Mask()
+filter: Shadow()
+filter: Wave()
+filter: Xray()
+*/
 }
 
 #endif//__SFJP_ROAST__net__web__css_attributes_HPP__