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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? specialist.idl

?? openmap java寫的開源數(shù)字地圖程序. 用applet實現(xiàn),可以像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一区二区三区免费野_久草精品视频
欧美一级在线免费| av色综合久久天堂av综合| 欧美日韩视频在线第一区| 亚洲综合精品久久| 欧美精品色综合| 久久精品国产成人一区二区三区| 欧美一级淫片007| 国产在线精品不卡| 国产女同互慰高潮91漫画| 99久久久精品免费观看国产蜜| 最近中文字幕一区二区三区| 欧美色爱综合网| 激情欧美日韩一区二区| 国产精品不卡在线| 欧美猛男男办公室激情| 韩国精品久久久| 国产精品久久影院| 欧美精品久久久久久久多人混战 | 一本色道久久加勒比精品 | 水野朝阳av一区二区三区| 精品久久一二三区| 成人aaaa免费全部观看| 香蕉久久夜色精品国产使用方法| 日韩欧美一区二区久久婷婷| eeuss鲁片一区二区三区在线看| 一个色在线综合| 久久久久久久电影| 欧美性猛片xxxx免费看久爱| 国产一区中文字幕| 亚洲成在人线在线播放| 久久综合久久99| 欧美日韩日日夜夜| 成人h版在线观看| 裸体歌舞表演一区二区| 亚洲欧美激情在线| 久久精品视频免费观看| 欧美写真视频网站| 粉嫩高潮美女一区二区三区| 日本三级韩国三级欧美三级| 国产精品久久久久久久久果冻传媒 | 久久综合九色综合97婷婷女人 | 亚洲色图.com| 精品国产乱子伦一区| 91国内精品野花午夜精品| 99v久久综合狠狠综合久久| 婷婷丁香激情综合| 亚洲色图视频免费播放| 久久影音资源网| 91精品欧美综合在线观看最新| 成人h动漫精品一区二| 国内精品久久久久影院薰衣草| 亚洲一区二区不卡免费| 中文字幕亚洲成人| 亚洲国产精品二十页| 日韩精品中文字幕在线一区| 欧美美女喷水视频| 日本精品裸体写真集在线观看| 国产91精品一区二区麻豆亚洲| 美女视频网站黄色亚洲| 婷婷开心久久网| 亚洲国产欧美在线人成| 日韩理论片在线| 国产女人aaa级久久久级| 精品奇米国产一区二区三区| 日韩欧美一级二级| 在线电影一区二区三区| 欧美久久高跟鞋激| 欧美日韩另类一区| 欧美视频日韩视频在线观看| 欧美性生活久久| 欧美午夜寂寞影院| 欧美视频一二三区| 欧美性一级生活| 欧美三级视频在线播放| 欧美色区777第一页| 欧美色区777第一页| 欧美性大战久久久久久久蜜臀| 色妹子一区二区| 在线一区二区视频| 欧美影视一区二区三区| 欧美日韩二区三区| 91精品久久久久久久久99蜜臂| 欧美一区二区三区播放老司机| 91黄色激情网站| 欧美日韩卡一卡二| 欧美美女视频在线观看| 欧美一区二区三区在线观看视频| 欧美一区二区三区四区在线观看| 欧美一区二区视频观看视频 | 成人黄色免费短视频| 99视频精品在线| 欧美色爱综合网| 欧美一区二区视频在线观看2020 | 精品午夜一区二区三区在线观看 | 91天堂素人约啪| 欧美色精品在线视频| 欧美一级国产精品| 国产女人aaa级久久久级| 18涩涩午夜精品.www| 亚洲国产成人91porn| 久久国产精品99久久久久久老狼| 国产精品123区| 91视频在线观看免费| 51精品视频一区二区三区| 久久综合久久综合九色| 亚洲人成人一区二区在线观看 | 国模套图日韩精品一区二区| 国产一区91精品张津瑜| www.一区二区| 在线观看亚洲精品| 日韩欧美国产综合一区 | 亚洲亚洲人成综合网络| 久久综合综合久久综合| 成人免费视频免费观看| 欧美精三区欧美精三区| 国产视频亚洲色图| 亚洲成人免费在线观看| 国产酒店精品激情| 欧美在线免费视屏| 国产亚洲精品7777| 午夜精品久久久久久久久| 国产精品一二一区| 欧美日韩成人综合天天影院| 国产蜜臀97一区二区三区| 日韩电影在线一区二区| 99国产欧美另类久久久精品| 精品国产露脸精彩对白| 亚洲一区在线播放| 成人深夜福利app| 日韩一本二本av| 亚洲综合久久久久| 成人小视频在线| 久久人人97超碰com| 午夜视频在线观看一区| 99久久精品国产麻豆演员表| 亚洲精品一区二区三区香蕉| 亚洲午夜电影在线| 成人高清视频在线| 久久综合视频网| 日韩国产欧美在线观看| 91久久奴性调教| 中文字幕中文在线不卡住| 国内精品伊人久久久久影院对白| 制服丝袜日韩国产| 亚洲综合偷拍欧美一区色| 风间由美一区二区av101| 欧美精品一区二区三区久久久| 日韩中文字幕亚洲一区二区va在线| 一本色道久久加勒比精品| 中文字幕av一区二区三区| 国产剧情av麻豆香蕉精品| 欧美tickling挠脚心丨vk| 日韩1区2区日韩1区2区| 欧美色图在线观看| 一区二区三区国产精华| 99久久精品国产精品久久| 国产精品亲子伦对白| 成人黄色电影在线 | 日韩国产欧美视频| 欧美日本在线看| 天堂va蜜桃一区二区三区漫画版| 在线观看av一区| 亚洲一二三区在线观看| 日本aⅴ精品一区二区三区| 欧美一级黄色片| 蜜桃久久久久久久| 欧美精品一区二区久久婷婷| 久草在线在线精品观看| xf在线a精品一区二区视频网站| 国产乱码精品一品二品| 欧美国产综合色视频| 91在线国内视频| 一区二区三国产精华液| 欧美日韩精品电影| 日本伊人午夜精品| 2014亚洲片线观看视频免费| 国产成人h网站| 亚洲手机成人高清视频| 在线免费不卡视频| 日本系列欧美系列| 精品理论电影在线| 成人丝袜18视频在线观看| 亚洲男人的天堂在线aⅴ视频| 在线欧美小视频| 美女诱惑一区二区| 国产日韩精品一区二区三区在线| 成人app网站| 亚洲18女电影在线观看| 日韩精品在线看片z| 粉嫩嫩av羞羞动漫久久久| 一区二区三区四区乱视频| 欧美日韩国产一二三| 国产尤物一区二区在线| 亚洲乱码精品一二三四区日韩在线| 欧美日韩国产欧美日美国产精品| 国内精品伊人久久久久av影院| 亚洲视频小说图片| 日韩三级视频中文字幕| 波多野结衣中文字幕一区二区三区| 一区二区三区欧美激情|