00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef Proofing_Text_Area_HPP
00012 #define Proofing_Text_Area_HPP
00013
00014 #include "read_write_base.hpp"
00015
00016 class Proofing_Text_Area_Obj: public read_write_base
00017 {
00018 public:
00019 identifier Id;
00020 llong Proofing;
00021 int pointSize;
00022 int height;
00023 int width;
00024 int posX;
00025 int posY;
00026 string color;
00027 string background;
00028 string fontFaceName;
00029 Proofing_Text_Area_Obj():read_write_base()
00030 ,Id(0LL)
00031 ,Proofing(0LL)
00032 ,pointSize(0)
00033 ,height(0)
00034 ,width(0)
00035 ,posX(0)
00036 ,posY(0)
00037 ,color("")
00038 ,background("")
00039 ,fontFaceName("")
00040 {
00041
00042 data_name("Proofing_Text_Area");
00043
00044 addDXMap( new llongXfer("Id", &Id ));
00045 addDXMap( new llongXfer("Proofing", &Proofing ));
00046 addDXMap( new intXfer("pointSize", &pointSize ));
00047 addDXMap( new intXfer("height", &height ));
00048 addDXMap( new intXfer("width", &width ));
00049 addDXMap( new intXfer("posX", &posX ));
00050 addDXMap( new intXfer("posY", &posY ));
00051 addDXMap( new stringXfer("color", &color ));
00052 addDXMap( new stringXfer("background", &background ));
00053 addDXMap( new stringXfer("fontFaceName", &fontFaceName ));
00054 }
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070 };
00071 #endif
00072
00073
00074