亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? mitab.h

?? 支持各種柵格圖像和矢量圖像讀取的庫
?? H
?? 第 1 頁 / 共 5 頁
字號:
{  public:             TABPoint(OGRFeatureDefn *poDefnIn);    virtual ~TABPoint();    virtual TABFeatureClass GetFeatureClass() { return TABFCPoint; };    virtual int             ValidateMapInfoType(TABMAPFile *poMapFile = NULL);    virtual TABFeature *CloneTABFeature(OGRFeatureDefn *poNewDefn = NULL );    double      GetX();    double      GetY();    virtual int ReadGeometryFromMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int WriteGeometryToMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int ReadGeometryFromMIFFile(MIDDATAFile *fp);    virtual int WriteGeometryToMIFFile(MIDDATAFile *fp);    virtual const char *GetStyleString();    virtual void DumpMIF(FILE *fpOut = NULL);};/*--------------------------------------------------------------------- *                      class TABFontPoint * * Feature class to handle MapInfo Font Point Symbol types: * *     TAB_GEOM_FONTSYMBOL_C    0x28  *     TAB_GEOM_FONTSYMBOL      0x29 * * Feature geometry will be a OGRPoint * * The symbol number refers to a character code in the specified Windows * Font (e.g. "Windings"). *--------------------------------------------------------------------*/class TABFontPoint: public TABPoint,                     public ITABFeatureFont{  protected:    double      m_dAngle;    GInt16      m_nFontStyle;           // Bold/shadow/halo/etc.  public:             TABFontPoint(OGRFeatureDefn *poDefnIn);    virtual ~TABFontPoint();    virtual TABFeatureClass GetFeatureClass() { return TABFCFontPoint; };    virtual TABFeature *CloneTABFeature(OGRFeatureDefn *poNewDefn = NULL );    virtual int ReadGeometryFromMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int WriteGeometryToMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int ReadGeometryFromMIFFile(MIDDATAFile *fp);    virtual int WriteGeometryToMIFFile(MIDDATAFile *fp);    virtual const char *GetStyleString();    GBool       QueryFontStyle(TABFontStyle eStyleToQuery);    void        ToggleFontStyle(TABFontStyle eStyleToToggle, GBool bStatus);    int         GetFontStyleMIFValue();    void        SetFontStyleMIFValue(int nStyle);    int         GetFontStyleTABValue()           {return m_nFontStyle;};    void        SetFontStyleTABValue(int nStyle){m_nFontStyle=(GInt16)nStyle;};    // GetSymbolAngle(): Return angle in degrees counterclockwise    double      GetSymbolAngle()        {return m_dAngle;};    void        SetSymbolAngle(double dAngle);};/*--------------------------------------------------------------------- *                      class TABCustomPoint * * Feature class to handle MapInfo Custom Point Symbol (Bitmap) types: * *     TAB_GEOM_CUSTOMSYMBOL_C  0x2b *     TAB_GEOM_CUSTOMSYMBOL    0x2c * * Feature geometry will be a OGRPoint * * The symbol name is the name of a BMP file stored in the "CustSymb" * directory (e.g. "arrow.BMP").  The symbol number has no meaning for  * this symbol type. *--------------------------------------------------------------------*/class TABCustomPoint: public TABPoint,                       public ITABFeatureFont{  protected:    GByte       m_nCustomStyle;         // Show BG/Apply Color                   public:    GByte       m_nUnknown_;  public:             TABCustomPoint(OGRFeatureDefn *poDefnIn);    virtual ~TABCustomPoint();    virtual TABFeatureClass GetFeatureClass() { return TABFCCustomPoint; };    virtual TABFeature *CloneTABFeature(OGRFeatureDefn *poNewDefn = NULL );    virtual int ReadGeometryFromMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int WriteGeometryToMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int ReadGeometryFromMIFFile(MIDDATAFile *fp);    virtual int WriteGeometryToMIFFile(MIDDATAFile *fp);    virtual const char *GetStyleString();    const char *GetSymbolNameRef()      { return GetFontNameRef(); };    void        SetSymbolName(const char *pszName) {SetFontName(pszName);};        GByte       GetCustomSymbolStyle()              {return m_nCustomStyle;}    void        SetCustomSymbolStyle(GByte nStyle)  {m_nCustomStyle = nStyle;}};/*--------------------------------------------------------------------- *                      class TABPolyline * * Feature class to handle the various MapInfo line types: * *     TAB_GEOM_LINE_C         0x04 *     TAB_GEOM_LINE           0x05 *     TAB_GEOM_PLINE_C        0x07 *     TAB_GEOM_PLINE          0x08 *     TAB_GEOM_MULTIPLINE_C   0x25 *     TAB_GEOM_MULTIPLINE     0x26 *     TAB_GEOM_V450_MULTIPLINE_C 0x31 *     TAB_GEOM_V450_MULTIPLINE   0x32 * * Feature geometry can be either a OGRLineString or a OGRMultiLineString *--------------------------------------------------------------------*/class TABPolyline: public TABFeature,                    public ITABFeaturePen{  private:    GBool       m_bCenterIsSet;    double      m_dCenterX, m_dCenterY;  public:             TABPolyline(OGRFeatureDefn *poDefnIn);    virtual ~TABPolyline();    virtual TABFeatureClass GetFeatureClass() { return TABFCPolyline; };    virtual int             ValidateMapInfoType(TABMAPFile *poMapFile = NULL);    virtual TABFeature *CloneTABFeature(OGRFeatureDefn *poNewDefn = NULL );    /* 2 methods to simplify access to rings in a multiple polyline     */    int                 GetNumParts();    OGRLineString      *GetPartRef(int nPartIndex);    int         ReadGeometryFromMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *,                                        TABMAPCoordBlock **ppoCoordBlock);    virtual int ReadGeometryFromMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int WriteGeometryToMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int ReadGeometryFromMIFFile(MIDDATAFile *fp);    virtual int WriteGeometryToMIFFile(MIDDATAFile *fp);    virtual const char *GetStyleString();    virtual void DumpMIF(FILE *fpOut = NULL);    int         GetCenter(double &dX, double &dY);    void        SetCenter(double dX, double dY);    // MapInfo-specific attributes... made available through public vars    // for now.    GBool       m_bSmooth;};/*--------------------------------------------------------------------- *                      class TABRegion * * Feature class to handle the MapInfo region types: * *     TAB_GEOM_REGION_C         0x0d *     TAB_GEOM_REGION           0x0e *     TAB_GEOM_V450_REGION_C    0x2e *     TAB_GEOM_V450_REGION      0x2f * * Feature geometry will be returned as OGRPolygon (with a single ring) * or OGRMultiPolygon (for multiple rings). * * REGIONs with multiple rings are returned as OGRMultiPolygon instead of * as OGRPolygons since OGRPolygons require that the first ring be the * outer ring, and the other all be inner rings, but this is not guaranteed * inside MapInfo files.  However, when writing features, OGRPolygons with * multiple rings will be accepted without problem. *--------------------------------------------------------------------*/class TABRegion: public TABFeature,                  public ITABFeaturePen,                  public ITABFeatureBrush{    GBool       m_bSmooth;  private:    GBool       m_bCenterIsSet;    double      m_dCenterX, m_dCenterY;    int     ComputeNumRings(TABMAPCoordSecHdr **ppasSecHdrs,                             TABMAPFile *poMAPFile);    int     AppendSecHdrs(OGRPolygon *poPolygon,                          TABMAPCoordSecHdr * &pasSecHdrs,                          TABMAPFile *poMAPFile,                          int &iLastRing);  public:             TABRegion(OGRFeatureDefn *poDefnIn);    virtual ~TABRegion();    virtual TABFeatureClass GetFeatureClass() { return TABFCRegion; };    virtual int             ValidateMapInfoType(TABMAPFile *poMapFile = NULL);    virtual TABFeature *CloneTABFeature(OGRFeatureDefn *poNewDefn = NULL );    /* 2 methods to make the REGION's geometry look like a single collection     * of OGRLinearRings      */    int                 GetNumRings();    OGRLinearRing      *GetRingRef(int nRequestedRingIndex);    GBool               IsInteriorRing(int nRequestedRingIndex);    int         ReadGeometryFromMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *,                                        TABMAPCoordBlock **ppoCoordBlock);    virtual int ReadGeometryFromMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int WriteGeometryToMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int ReadGeometryFromMIFFile(MIDDATAFile *fp);    virtual int WriteGeometryToMIFFile(MIDDATAFile *fp);    virtual const char *GetStyleString();    virtual void DumpMIF(FILE *fpOut = NULL);    int         GetCenter(double &dX, double &dY);    void        SetCenter(double dX, double dY);};/*--------------------------------------------------------------------- *                      class TABRectangle * * Feature class to handle the MapInfo rectangle types: * *     TAB_GEOM_RECT_C         0x13 *     TAB_GEOM_RECT           0x14 *     TAB_GEOM_ROUNDRECT_C    0x16 *     TAB_GEOM_ROUNDRECT      0x17 * * A rectangle is defined by the coords of its 2 opposite corners (the MBR) * Its corners can optionaly be rounded, in which case a X and Y rounding * radius will be defined. * * Feature geometry will be OGRPolygon *--------------------------------------------------------------------*/class TABRectangle: public TABFeature,                     public ITABFeaturePen,                     public ITABFeatureBrush{  public:             TABRectangle(OGRFeatureDefn *poDefnIn);    virtual ~TABRectangle();    virtual TABFeatureClass GetFeatureClass() { return TABFCRectangle; };    virtual int             ValidateMapInfoType(TABMAPFile *poMapFile = NULL);    virtual TABFeature *CloneTABFeature(OGRFeatureDefn *poNewDefn = NULL );    virtual int ReadGeometryFromMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int WriteGeometryToMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int ReadGeometryFromMIFFile(MIDDATAFile *fp);    virtual int WriteGeometryToMIFFile(MIDDATAFile *fp);    virtual const char *GetStyleString();    virtual void DumpMIF(FILE *fpOut = NULL);    // MapInfo-specific attributes... made available through public vars    // for now.    GBool       m_bRoundCorners;    double      m_dRoundXRadius;    double      m_dRoundYRadius;};/*--------------------------------------------------------------------- *                      class TABEllipse * * Feature class to handle the MapInfo ellipse types: * *     TAB_GEOM_ELLIPSE_C      0x19 *     TAB_GEOM_ELLIPSE        0x1a * * An ellipse is defined by the coords of its 2 opposite corners (the MBR) * * Feature geometry can be either an OGRPoint defining the center of the * ellipse, or an OGRPolygon defining the ellipse itself. * * When an ellipse is read, the returned geometry is a OGRPolygon representing * the ellipse with 2 degrees line segments. * * In the case of the OGRPoint, then the X/Y Radius MUST be set, but.   * However with an OGRPolygon, if the X/Y radius are not set (== 0) then * the MBR of the polygon will be used to define the ellipse parameters  * and the center of the MBR is used as the center of the ellipse...  * (i.e. the polygon vertices themselves will be ignored). *--------------------------------------------------------------------*/class TABEllipse: public TABFeature,                   public ITABFeaturePen,                   public ITABFeatureBrush{  public:             TABEllipse(OGRFeatureDefn *poDefnIn);    virtual ~TABEllipse();    virtual TABFeatureClass GetFeatureClass() { return TABFCEllipse; };    virtual int             ValidateMapInfoType(TABMAPFile *poMapFile = NULL);    virtual TABFeature *CloneTABFeature(OGRFeatureDefn *poNewDefn = NULL );    virtual int ReadGeometryFromMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int WriteGeometryToMAPFile(TABMAPFile *poMapFile, TABMAPObjHdr *);    virtual int ReadGeometryFromMIFFile(MIDDATAFile *fp);    virtual int WriteGeometryToMIFFile(MIDDATAFile *fp);    virtual const char *GetStyleString();    virtual void DumpMIF(FILE *fpOut = NULL);    // MapInfo-specific attributes... made available through public vars    // for now.    double      m_dCenterX;    double      m_dCenterY;    double      m_dXRadius;    double      m_dYRadius;};/*--------------------------------------------------------------------- *                      class TABArc * * Feature class to handle the MapInfo arc types: * *     TAB_GEOM_ARC_C      0x0a *     TAB_GEOM_ARC        0x0b

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91老师片黄在线观看| 狠狠网亚洲精品| 在线亚洲免费视频| 一区二区三区精密机械公司| 99久久久久久99| 亚洲免费在线视频一区 二区| 99久久久久免费精品国产| 亚洲欧美视频一区| 精品污污网站免费看| 日韩av中文在线观看| 日韩久久久久久| 成人美女视频在线看| 亚洲精品福利视频网站| 欧美久久一区二区| 国产一区视频网站| 亚洲视频在线观看一区| 欧美精品久久天天躁| 国产一区在线精品| 亚洲视频一区二区在线| 欧美日韩国产一区二区三区地区| 日韩精品亚洲专区| 国产精品天美传媒沈樵| 在线观看成人小视频| 日本va欧美va瓶| 一区在线观看免费| 91精品综合久久久久久| 粉嫩aⅴ一区二区三区四区五区 | 91.成人天堂一区| 国产一区在线视频| 亚洲高清在线视频| 久久久青草青青国产亚洲免观| 92精品国产成人观看免费| 秋霞国产午夜精品免费视频| 中国色在线观看另类| 一道本成人在线| 国产一区久久久| 亚洲国产精品一区二区www在线| 久久人人97超碰com| 欧美唯美清纯偷拍| 成人禁用看黄a在线| 久久成人av少妇免费| 亚洲欧美日韩在线播放| 久久综合色天天久久综合图片| 色哦色哦哦色天天综合| 国内欧美视频一区二区| 偷拍亚洲欧洲综合| 最新热久久免费视频| 精品美女一区二区| 在线不卡a资源高清| 成人av手机在线观看| 九色综合狠狠综合久久| 五月综合激情日本mⅴ| 亚洲人成网站在线| 国产三区在线成人av| 精品久久人人做人人爰| 欧美日韩国产小视频| 色综合天天综合网天天狠天天 | 成人永久aaa| 久久成人久久爱| 日韩电影在线一区二区三区| 亚洲男人的天堂av| 亚洲欧洲日韩在线| 国产精品美女久久久久久久久| 日韩欧美国产一二三区| 欧美色精品在线视频| 91麻豆免费看片| 91美女片黄在线观看91美女| 成人app软件下载大全免费| 国产精品一区二区果冻传媒| 国内精品国产三级国产a久久| 蜜桃精品视频在线观看| 三级在线观看一区二区| 午夜电影一区二区| 亚洲第一激情av| 日一区二区三区| 日韩国产欧美在线观看| 亚洲h在线观看| 免费不卡在线观看| 麻豆一区二区99久久久久| 久久国产精品99精品国产| 久久成人麻豆午夜电影| 国产伦精品一区二区三区免费| 国内国产精品久久| 国产精品系列在线播放| 国内成人免费视频| 成人性色生活片免费看爆迷你毛片| 国产盗摄精品一区二区三区在线| 国产精品一线二线三线精华| 国产麻豆精品一区二区| 高清国产午夜精品久久久久久| 成人高清视频在线观看| 99久久99久久综合| 欧美日韩电影在线播放| 日韩一区二区精品在线观看| 26uuu色噜噜精品一区二区| 久久精品在这里| 亚洲免费伊人电影| 午夜久久久久久电影| 精品一区二区三区免费观看| 国产丶欧美丶日本不卡视频| 99久久久久免费精品国产| 欧美中文一区二区三区| 5858s免费视频成人| 欧美精品一区二区三| 久久久99精品久久| 国产欧美一区二区精品久导航| 亚洲猫色日本管| 日日夜夜一区二区| 国产成人在线看| 欧美午夜在线观看| 久久久99免费| 亚洲一区二区三区四区五区黄| 久久爱另类一区二区小说| 国产99久久久精品| 欧美日韩视频一区二区| 精品国产一区二区三区av性色| 中文字幕av在线一区二区三区| 亚洲美女屁股眼交| 国产麻豆9l精品三级站| 欧美在线啊v一区| 久久色.com| 亚洲国产精品久久久久秋霞影院| 国产一区激情在线| 欧美丝袜丝nylons| 精品久久久久久综合日本欧美 | 99免费精品在线| 欧美精品粉嫩高潮一区二区| 久久嫩草精品久久久精品一| 一区二区三区四区av| 黄色成人免费在线| 欧美日韩一区二区三区视频| 久久精品欧美一区二区三区不卡 | 久久久一区二区| 亚洲6080在线| 99免费精品视频| 久久网站最新地址| 天天色天天操综合| 91在线精品秘密一区二区| 精品国产制服丝袜高跟| 日韩精品视频网| 91黄色激情网站| 国产精品伦理在线| 麻豆精品国产传媒mv男同| 欧美视频一区二区三区四区| 国产精品人成在线观看免费| 视频一区欧美精品| 欧美综合亚洲图片综合区| 国产精品免费久久久久| 激情六月婷婷综合| 欧美一区二区性放荡片| 亚洲福利视频导航| 色婷婷久久综合| 亚洲欧洲av一区二区三区久久| 国产一区二区三区在线观看精品| 欧美一区二区播放| 亚洲国产精品天堂| 欧美日韩精品三区| 一区二区激情小说| 99re热视频这里只精品| 国产精品久久久久7777按摩 | 国产精品亚洲视频| 26uuu精品一区二区在线观看| 亚洲va中文字幕| 在线免费亚洲电影| 亚洲欧美日韩国产成人精品影院| 91色综合久久久久婷婷| 国产精品私人自拍| 国产a区久久久| 亚洲欧洲成人精品av97| 日韩av一级片| 日韩欧美国产麻豆| 韩国三级在线一区| 国产午夜三级一区二区三| 国内精品国产成人国产三级粉色| 久久综合国产精品| 国产精品自产自拍| 中文字幕一区二区三区色视频| av高清不卡在线| 夜夜嗨av一区二区三区中文字幕| 欧美日韩三级在线| 日韩av一二三| 国产香蕉久久精品综合网| jlzzjlzz欧美大全| 一区二区三区在线观看欧美| 欧美日韩国产三级| 美女mm1313爽爽久久久蜜臀| 久久综合网色—综合色88| 国产成人啪免费观看软件| 国产免费成人在线视频| 91丝袜国产在线播放| 亚洲午夜一区二区| 日韩三级视频在线看| 国产乱码精品一区二区三区忘忧草| 国产欧美精品一区| 日本道色综合久久| 免费欧美高清视频| 国产亚洲综合色| 91国偷自产一区二区三区观看| 日本aⅴ精品一区二区三区| 久久精品视频免费观看|