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

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

?? specialist.idl

?? openmap java寫的開源數字地圖程序. 用applet實現,可以像google map 那樣放大縮小地圖.
?? IDL
?? 第 1 頁 / 共 2 頁
字號:
// **********************************************************************// // <copyright>// //  BBN Technologies, a Verizon Company//  10 Moulton Street//  Cambridge, MA 02138//  (617) 873-8000// //  Copyright (C) BBNT Solutions LLC. All rights reserved.// // </copyright>// **********************************************************************// // $Source: /cvs/distapps/openmap/src/corba/com/bbn/openmap/layer/specialist/Specialist.idl,v $// $RCSfile: Specialist.idl,v $// $Revision: 1.2 $// $Date: 2003/05/07 20:56:59 $// $Author: dietrick $// // **********************************************************************#ifndef Specialist_idl#define Specialist_idl// ----------------------------------------------------------------------//  The Specialist.// ----------------------------------------------------------------------module CSpecialist {// ----------------------------------------------------------------------// Core Typedefs// ----------------------------------------------------------------------   typedef sequence<string> strings;// ----------------------------------------------------------------------//  Basic Structures// ----------------------------------------------------------------------    const string Revision = "@(#)$Header: /cvs/distapps/openmap/src/corba/com/bbn/openmap/layer/specialist/Specialist.idl,v 1.2 2003/05/07 20:56:59 dietrick Exp $";        struct XYPoint {	short x;	short y;    };        struct LLPoint {	float lat;	float lon;    };    struct CTEntry {        unsigned short red;	unsigned short green;	unsigned short blue;	unsigned short open;    };        interface CColor;    interface CColor {	attribute unsigned short red;	attribute unsigned short green;	attribute unsigned short blue;        struct EColor {	    CColor color;	    unsigned short red;	    unsigned short green;	    unsigned short blue;	};	EColor fill();    };    typedef sequence<CTEntry> colorTable;    typedef sequence<octet> binarydata;    typedef sequence<octet> pixeldata;    interface CStipple;    interface CStipple {	readonly attribute unsigned short height;	readonly attribute unsigned short width;	readonly attribute binarydata data;	struct EStipple	{	    CStipple stipple;	    unsigned short height;	    unsigned short width;	    binarydata data;	};	EStipple fill();    };        struct CProjection {	short kind;			// ProjType (PT_Mercator...)	LLPoint center;	unsigned short height;	unsigned short width;	unsigned long scale;    };    //------------------------------------------------------------    //  Graphic Objects    //------------------------------------------------------------    interface Comp;    struct EComp {        Comp comp;        string cID;    };    interface Graphic;    interface Graphic {	enum GraphicType {	    GT_Graphic,   	    GT_Bitmap,	    GT_Text,	    GT_Poly,	    GT_Line,	    GT_UnitSymbol,	    GT_2525Symbol,	    GT_Rectangle,	    GT_Circle,	    GT_Raster,	    GT_ForceArrow,	    GT_NewGraphic,	//used only in UpdateGraphic unions	    GT_ReorderGraphic	//used only in UpdateGraphic unions	};	enum RenderType {	    RT_Unknown,	    RT_LatLon,	    RT_XY,	    RT_Offset	};	enum LineType {	    LT_Unknown,	    LT_Straight,	    LT_Rhumb,	    LT_GreatCircle	};	enum DeclutterType {	    DC_None,          //no decluttering	    DC_Space,         //object takes up space, not moved	    DC_Move,          //object takes up space and moved	    DC_Line           //object takes up space, moved, line drawn to        };                    //  original spot	readonly attribute string gID;	readonly attribute GraphicType gType;	attribute Comp obj;	attribute LineType lType;	attribute RenderType rType;	attribute CColor color;	attribute CColor fillColor;	attribute unsigned short lineWidth;        attribute CStipple stipple;	attribute CStipple fillStipple;	attribute DeclutterType dcType;    //gestures don't affect                                            //  decluttering, timing issue	enum settableFields {	    GF_object,	    GF_lType,	    GF_rType,	    GF_color,	    GF_fillColor,	    GF_lineWidth,	    GF_stipple,	    GF_fillStipple	};	union GF_update switch (settableFields) {	  case GF_object: EComp obj;	  case GF_lType: Graphic::LineType lType;	  case GF_rType: Graphic::RenderType rType;	  case GF_color: CColor::EColor color;	  case GF_fillColor: CColor::EColor fillColor;	  case GF_lineWidth: unsigned short lineWidth;	  case GF_stipple: CStipple::EStipple stipple;	  case GF_fillStipple: CStipple::EStipple fillStipple;	};	struct EGraphic {	    Graphic graph;	    EComp obj;	    string gID;	    Graphic::LineType lType;	    Graphic::GraphicType gType;	    Graphic::RenderType rType;	    CColor::EColor color;	    CColor::EColor fillColor;	    unsigned short lineWidth;	    CStipple::EStipple stipple;	    CStipple::EStipple fillStipple;	    Graphic::DeclutterType dcType;	};	EGraphic gfill();    };    typedef sequence<Graphic> GraphicSeq;    typedef sequence<XYPoint> XYPointSeq;    typedef sequence<LLPoint> LLPointSeq;    interface Bitmap : Graphic {	attribute XYPoint p1;	attribute LLPoint ll1;	attribute unsigned short width;	attribute unsigned short height;	attribute unsigned short x_hot;	attribute unsigned short y_hot;	attribute binarydata bits;	attribute CStipple bmref;	enum settableFields {	    BF_p1,	    BF_ll1,	    BF_width,	    BF_height,	    BF_x_hot,	    BF_y_hot,	    BF_bits,	    BF_bmref	};	union BF_update switch (settableFields) {	  case BF_p1: XYPoint p1;	  case BF_ll1: LLPoint ll1;	  case BF_width: unsigned short width;	  case BF_height: unsigned short height;	  case BF_x_hot: unsigned short x_hot;	  case BF_y_hot: unsigned short y_hot;	  case BF_bits: binarydata bits;	  case BF_bmref: CStipple bmref;	};        struct EBitmap {	    Graphic::EGraphic egraphic;	    XYPoint p1;	    LLPoint ll1;	    unsigned short width;	    unsigned short height;	    unsigned short x_hot;	    unsigned short y_hot;	    binarydata bits;	    string bmref;	    /*previous definition - CStipple bmref;*/	};		EBitmap fill();    };    interface Poly : Graphic {	enum CoordMode {	    CModeOrigin,	/* relative to the origin */	    CModePrevious	/* relative to previous point */	};	attribute LLPoint ll1;	attribute CoordMode cMode;	attribute XYPointSeq xypoints;	attribute LLPointSeq llpoints;	enum settableFields {	    PF_ll1,	    PF_cMode,	    PF_xypoints,	    PF_llpoints	};	union PF_update switch (settableFields) {	  case PF_ll1: LLPoint ll1;	  case PF_cMode: CoordMode cMode;	  case PF_xypoints: XYPointSeq xypoints;	  case PF_llpoints: LLPointSeq llpoints;	};        struct EPoly {	    Graphic::EGraphic egraphic;	    LLPoint ll1;	    Poly::CoordMode cMode;	    XYPointSeq xypoints;	    LLPointSeq llpoints;	};	EPoly fill();    };    interface Text : Graphic {	attribute XYPoint p1;	attribute LLPoint ll1;	attribute string data;	attribute string font;	attribute short justify;	enum settableFields {	    TF_p1,	    TF_ll1,	    TF_data,	    TF_font,	    TF_justify	};	union TF_update switch (settableFields) {	  case TF_p1: XYPoint p1;	  case TF_ll1: LLPoint ll1;	  case TF_data: string data;	  case TF_font: string font;	  case TF_justify: short justify;	};        struct EText {	    Graphic::EGraphic egraphic;	    XYPoint p1;	    LLPoint ll1;	    string data;	    string font;	    short justify;	};	EText fill();    };    interface Line : Graphic {	attribute XYPoint p1;	attribute XYPoint p2;	attribute LLPoint ll1;	attribute LLPoint ll2;	enum settableFields {	    LF_p1,	    LF_p2,	    LF_ll1,	    LF_ll2	};	union LF_update switch (settableFields) {	  case LF_p1: XYPoint p1;	  case LF_p2: XYPoint p2;	  case LF_ll1: LLPoint ll1;	  case LF_ll2: LLPoint ll2;	};        struct ELine {	    Graphic::EGraphic egraphic;	    XYPoint p1;	    XYPoint p2;	    LLPoint ll1;	    LLPoint ll2;	};	ELine fill();    };    interface UnitSymbol : Graphic {	attribute XYPoint p1;	attribute LLPoint ll1;	attribute string group;	attribute string symbol;	attribute string echelon;	attribute string left1;	attribute string left2;	attribute string left3;	attribute string left4;	attribute string right1;	attribute string right2;	attribute string right3;	attribute string right4;	attribute string top1;	attribute string bottom1;	attribute unsigned short nom_size;  	// nominal size is in pixels	attribute unsigned short min_size;  	// minimal size is in pixels	attribute unsigned short max_size;  	// maximum size is in pixels	attribute unsigned long scale;	// scale at which size is nom_size	attribute boolean is_hq;	// Headquarters mark display	attribute float rotate;		// rotate unit 0.0 -> 180.0 degrees	enum settableFields {	    USF_p1,	    USF_ll1,	    USF_group,	    USF_symbol,	    USF_echelon,	    USF_left1,	    USF_left2,	    USF_left3,	    USF_left4,	    USF_right1,	    USF_right2,	    USF_right3,	    USF_right4,	    USF_top1,	    USF_bottom1,	    USF_nom_size,	    USF_min_size,	    USF_max_size,	    USF_scale,	    USF_is_hq,	    USF_rotate	};	union USF_update switch (settableFields) {	  case USF_p1: XYPoint p1;	  case USF_ll1: LLPoint ll1;	  case USF_group: string group;	  case USF_symbol: string symbol;	  case USF_echelon: string echelon;	  case USF_left1: string left1;	  case USF_left2: string left2;	  case USF_left3: string left3;	  case USF_left4: string left4;	  case USF_right1: string right1;	  case USF_right2: string right2;	  case USF_right3: string right3;	  case USF_right4: string right4;	  case USF_top1: string top1;	  case USF_bottom1: string bottom1;	  case USF_nom_size: unsigned short nom_size;	  case USF_min_size: unsigned short min_size;	  case USF_max_size: unsigned short max_size;	  case USF_scale: unsigned long scale;	  case USF_is_hq: boolean is_hq;	  case USF_rotate: float rotate;	};	struct EUnitSymbol {	    Graphic::EGraphic egraphic;	    XYPoint p1;	    LLPoint ll1;	    string group;	    string symbol;	    string echelon;	    string left1;	    string left2;	    string left3;	    string left4;	    string right1;	    string right2;	    string right3;	    string right4;	    string top1;	    string bottom1;	    unsigned short nom_size;	    unsigned short min_size;	    unsigned short max_size;	    unsigned long scale;	    boolean is_hq;	    float rotate;	};	EUnitSymbol fill();        };        interface U2525Symbol : Graphic {	attribute XYPoint p1;	attribute LLPoint ll1;	attribute string symbol;	attribute char confirmed;	attribute char reduced;	attribute boolean is_hq;	       	// Headquarters mark display	attribute string movement;	attribute string left2;	attribute string left4;	attribute string right2;	attribute string right3;	attribute string right4;	attribute string bottom1;	attribute unsigned short nom_size;	// nominal size is in pixels	attribute unsigned short min_size;	// minimal size is in pixels	attribute unsigned short max_size;	// maximum size is in pixels	attribute unsigned long scale;	// scale at which size is nom_size	attribute float rotate;                 // rotate 2525 0.0 -> 180.0 degrees	enum settableFields {	    U2525F_p1,	    U2525F_ll1,	    U2525F_symbol,	    U2525F_confirmed,	    U2525F_reduced,	    U2525F_movement,	    U2525F_left2,	    U2525F_left4,	    U2525F_right2,	    U2525F_right3,	    U2525F_right4,	    U2525F_bottom1,	    U2525F_nom_size,	    U2525F_min_size,	    U2525F_max_size,	    U2525F_scale,	    U2525F_is_hq,	    U2525F_rotate	};	union U2525F_update switch (settableFields) {	  case U2525F_p1: XYPoint p1;	  case U2525F_ll1: LLPoint ll1;	  case U2525F_symbol: string symbol;	  case U2525F_confirmed: char confirmed;	  case U2525F_reduced: char reduced;	  case U2525F_movement: string movement;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
韩国女主播一区| 免费高清在线视频一区·| 久久久一区二区| 日韩欧美国产一区二区在线播放| 在线视频一区二区三| 在线一区二区三区四区五区| 国产精华液一区二区三区| 精品一区二区三区在线观看国产| 日韩黄色免费网站| 亚洲男人电影天堂| 中文字幕中文字幕中文字幕亚洲无线| 久久久久久免费毛片精品| 国产精品久久久久久久久动漫| 国产精品视频一区二区三区不卡| 亚洲人成影院在线观看| 亚洲国产一区视频| 国产成人亚洲综合a∨猫咪| 色综合久久综合| 欧美成人猛片aaaaaaa| 国产精品视频你懂的| 天天色图综合网| 成人午夜视频福利| 欧美老女人第四色| 亚洲精品视频免费看| 国产一区欧美日韩| 欧美日韩精品欧美日韩精品| 久久精品一区二区| 日韩黄色免费电影| 欧美系列一区二区| 国产精品水嫩水嫩| 国产精品自拍一区| 欧美mv日韩mv亚洲| 日韩av中文字幕一区二区| 国产99久久久久| 久久综合九色综合久久久精品综合 | 欧美国产精品中文字幕| 亚洲无线码一区二区三区| 波多野结衣欧美| 中文字幕在线免费不卡| 成人av免费在线观看| 久久久99久久精品欧美| 福利91精品一区二区三区| 久久这里只有精品视频网| 韩国av一区二区三区四区| 日韩色在线观看| 久久99精品久久只有精品| 91精品国产美女浴室洗澡无遮挡| 日本最新不卡在线| 欧美精品一区二区精品网| 国产中文字幕一区| 中文字幕中文字幕一区二区| 91在线云播放| 日本少妇一区二区| 久久婷婷久久一区二区三区| 成人一级视频在线观看| 中文字幕中文字幕一区二区| 成人av在线一区二区三区| 国产精品国产精品国产专区不蜜| 99久久综合精品| 午夜私人影院久久久久| 久久精品视频在线免费观看| 成人一道本在线| 午夜精品福利视频网站| 久久综合九色综合久久久精品综合| 国产精品99久久久久久宅男| 亚洲欧洲av在线| 欧美在线视频全部完| 另类成人小视频在线| 亚洲另类在线一区| 精品国产免费视频| 在线视频国产一区| eeuss鲁片一区二区三区在线看| 亚洲一二三四在线观看| 久久精品无码一区二区三区 | 日韩欧美亚洲国产另类| 99re热这里只有精品免费视频| 精品一区二区三区免费观看| 亚洲国产精品欧美一二99| 亚洲欧美在线视频| 中文字幕一区二区三区在线观看| 欧美欧美欧美欧美首页| 在线一区二区三区| 欧美三级日韩三级| 91国偷自产一区二区开放时间 | 欧美一区二区观看视频| 欧美性极品少妇| 欧美精品自拍偷拍| 在线成人免费视频| 欧美一级一级性生活免费录像| 欧美在线免费观看亚洲| 欧美高清精品3d| 欧美性感一区二区三区| 91麻豆精品国产综合久久久久久| 欧美精品乱码久久久久久按摩| 国产91在线看| 激情综合网av| 懂色av中文字幕一区二区三区| 成人在线一区二区三区| 91蝌蚪porny九色| 欧美少妇xxx| 日韩欧美二区三区| 欧美激情一区在线| 亚洲天堂精品视频| 日本sm残虐另类| 成人h版在线观看| 欧美精品v国产精品v日韩精品| 欧美日韩综合色| ww久久中文字幕| 亚洲精品欧美综合四区| 捆绑调教一区二区三区| 久久99国产精品免费网站| eeuss国产一区二区三区| 欧美在线视频日韩| 久久久综合视频| 亚洲第一搞黄网站| 91麻豆精品视频| 国产精品美女久久久久久久久| 亚洲小说欧美激情另类| 99麻豆久久久国产精品免费| www国产成人免费观看视频 深夜成人网| 亚洲欧洲日产国码二区| 国产中文字幕一区| 精品少妇一区二区三区在线播放| 国产欧美精品区一区二区三区 | 毛片基地黄久久久久久天堂| 91视频观看免费| 欧美成人一级视频| 亚洲国产成人自拍| 国产精品综合在线视频| 2019国产精品| 国产在线国偷精品产拍免费yy| 欧美综合天天夜夜久久| 亚洲免费av观看| 色94色欧美sute亚洲线路一久 | 美国毛片一区二区三区| 欧美在线色视频| 亚洲一区二区黄色| 欧美日韩国产高清一区二区| 亚洲成人免费在线观看| 欧美本精品男人aⅴ天堂| 免费成人在线观看视频| 久久婷婷综合激情| 99视频有精品| 亚洲va国产va欧美va观看| 欧美一卡二卡三卡| 成人性视频免费网站| **性色生活片久久毛片| 欧美人xxxx| 成人激情午夜影院| 石原莉奈在线亚洲三区| 久久夜色精品一区| 欧美亚洲一区三区| 国内精品国产三级国产a久久| 中文字幕第一区综合| 欧美日韩久久久| 99视频精品全部免费在线| 视频在线观看91| 亚洲欧美韩国综合色| 精品国产免费人成电影在线观看四季| 成人av影院在线| 国产成人免费av在线| 日韩在线一区二区| 国产精品护士白丝一区av| 日韩女优视频免费观看| av成人老司机| 亚洲超碰精品一区二区| 国产精品久久福利| 五月天精品一区二区三区| 国产精品视频免费看| 亚洲一区影音先锋| 青娱乐精品在线视频| 国产精品一区2区| 在线观看91精品国产入口| 日韩视频一区二区| 中文字幕中文字幕在线一区| 日韩国产一二三区| av一二三不卡影片| 欧美一级二级三级蜜桃| 亚洲丝袜制服诱惑| 蜜臀av一区二区| 色哟哟在线观看一区二区三区| 欧美日韩国产不卡| 中文字幕一区av| 激情另类小说区图片区视频区| 91蜜桃免费观看视频| 国产欧美日韩激情| 久久国产精品第一页| 欧美麻豆精品久久久久久| 国产精品久久久久久户外露出| 日韩精品三区四区| 在线观看日韩电影| 亚洲男人天堂av网| 99久久精品国产毛片| 国产精品无圣光一区二区| 免费xxxx性欧美18vr| 777奇米成人网| 日韩中文字幕一区二区三区| 色菇凉天天综合网| 怡红院av一区二区三区| 色综合激情五月|