00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 
00025 
00026 #ifndef MLN_TRAIT_WINDOW_PROPS_HH
00027 # define MLN_TRAIT_WINDOW_PROPS_HH
00028 
00037 # include <string>
00038 # include <mln/trait/undef.hh>
00039 
00040 
00041 
00042 
00043 
00044 
00045 
00046 
00047 
00048 
00049 
00050 
00051 
00052 
00053 
00054 
00055 
00056 
00057 
00058 
00059 
00060 
00061 
00062 
00063 
00064 
00065 
00066 
00067 
00068 namespace mln
00069 {
00070 
00071   namespace trait
00072   {
00073 
00074     namespace window
00075     {
00076 
00077 
00079       struct size
00080       {
00082         struct any { protected: any() {} };
00083 
00085         struct fixed   : any { std::string name() const { return "size::fixed"; } };
00086 
00088         struct unknown : any { std::string name() const { return "size::unknown"; } };
00089       };
00090 
00091 
00093       struct support
00094       {
00096         struct any { protected: any() {} };
00097 
00099         struct regular   : any { std::string name() const { return "support::regular"; } };
00100 
00102         struct irregular : any { std::string name() const { return "support::irregular"; } };
00103       };
00104 
00105 
00107       struct definition
00108       {
00110         struct any { protected: any() {} };
00111 
00113         struct unique : any { std::string name() const { return "definition::unique"; } };
00114 
00116         struct multiple : any { protected: multiple() {} };
00117 
00119         struct n_ary : multiple { std::string name() const { return "definition::n_ary"; } };
00120 
00122         struct varying : multiple { std::string name() const { return "definition::varying"; } };
00123       };
00124 
00125 
00126     } 
00127 
00128   } 
00129 
00130 
00131 } 
00132 
00133 
00134 #endif // ! MLN_TRAIT_WINDOW_PROPS_HH