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

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

?? region_node.h

?? 彩信瀏覽器
?? H
字號:
/* * This file is part of Ambulant Player, www.ambulantplayer.org. * * Copyright (C) 2003-2007 Stichting CWI,  * Kruislaan 413, 1098 SJ Amsterdam, The Netherlands. * * Ambulant Player is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * Ambulant Player is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Ambulant Player; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA *//*  * @$Id: region_node.h,v 1.21 2007/02/12 14:14:44 jackjansen Exp $  *//////////////////////////////// region_node//// A representation of a region as a node.//// A region node may be used to build a pure layout tree// or participate in a tree of plain nodes.///////////////////////////////#ifndef AMBULANT_SMIL2_REGION_NODE_H#define AMBULANT_SMIL2_REGION_NODE_H#include "ambulant/config/config.h"#include "ambulant/lib/node.h"#include "ambulant/lib/node_navigator.h"#include "ambulant/lib/node_iterator.h"#include "ambulant/lib/gtypes.h"#include "ambulant/lib/colors.h"#include "ambulant/common/region_dim.h"#include "ambulant/common/region_info.h"#include "ambulant/common/layout.h"namespace ambulant {namespace smil2 {enum dimension_inheritance { di_none, di_parent, di_rootlayout };class region_node : public common::animation_destination {  public:	typedef lib::node_navigator<region_node> nnhelper;	typedef lib::node_navigator<const region_node> const_nnhelper;	///////////////////////////////	// tree iterators	typedef lib::tree_iterator<region_node> iterator;	typedef lib::const_tree_iterator<region_node> const_iterator;		// static method which tests whether a body node needs	// a region counterpart (because it uses subregion positioning	// or some such)	static bool needs_region_node(const lib::node *n);		// constructs a region node with local name and attrs	region_node(const lib::node *n, dimension_inheritance di);	virtual ~region_node();		// Initialize body subregion nodes from their real region node.	void fix_from_region_node(const region_node *parent);		// Initialize data structures from DOM node attributes.	bool fix_from_dom_node();	// Tie together region and surface_template trees	void set_surface_template(common::surface_template *surf) { m_surface_template = surf; }	common::surface_template *get_surface_template() { return m_surface_template; }	common::animation_notification *get_animation_notification() { return m_surface_template; };	common::animation_destination *get_animation_destination() { return this; };		// query for this region's rectangle	// the rectangle is evaluaded on the fly	// the evaluation takes into account relative coordinates	lib::rect get_rect() const;		// gets the underlying region_dim_spec for modification	common::region_dim_spec& rds() {return m_rds;}		// Set and get where this node inherits dimension information from	void set_dimension_inheritance(dimension_inheritance di) { m_dim_inherit = di; }	dimension_inheritance get_dimension_inheritance() const { return m_dim_inherit; }		// region_info implementation	std::string get_name() const;	common::fit_t get_fit() const { return m_fit; }	lib::color_t get_bgcolor() const;	bool get_transparent() const;	bool get_showbackground() const;	common::zindex_t get_zindex() const { return m_display_zindex; }	bool is_subregion() const { return m_is_subregion; }	double get_soundlevel() const { return m_display_soundlevel; }	common::sound_alignment get_soundalign() const { return m_display_soundalign; }	const char *get_bgimage() const;	common::tiling get_tiling() const;	// And corresponding setting interface	void reset() {(void)fix_from_dom_node(); };	void set_fit(common::fit_t f) { m_fit = f; }	void set_bgcolor(lib::color_t c, bool transparent, bool inherit);	void set_bgcolor(lib::color_t c) { set_bgcolor(c, false, false); };	void set_showbackground(bool showbackground) { m_showbackground = showbackground; }	void set_zindex(common::zindex_t z) { m_zindex = z; m_display_zindex = z; }	void set_soundlevel(double l) { m_soundlevel = l; m_display_soundlevel = l; }	void set_soundalign(common::sound_alignment sa) { m_soundalign = sa; m_display_soundalign = sa; }	void set_as_subregion(bool b) { m_is_subregion = b; }		// animation_destination interface	common::region_dim get_region_dim(const std::string& which, bool fromdom = false) const;	lib::color_t get_region_color(const std::string& which, bool fromdom = false) const;	common::zindex_t get_region_zindex(bool fromdom = false) const;	double get_region_soundlevel(bool fromdom = false) const;	common::sound_alignment get_region_soundalign(bool fromdom = false) const;		void set_region_dim(const std::string& which, const common::region_dim& rd);	void set_region_color(const std::string& which, lib::color_t clr);	void set_region_zindex(common::zindex_t z);	void set_region_soundlevel(double level);	void set_region_soundalign(common::sound_alignment sa);		// sets explicitly the dimensions of this region	template <class L, class W, class R, class T, class H, class B>	void set_dims(L l, W w, R r, T t, H h, B b) {		m_rds.left = l; m_rds.width = w;  m_rds.right = r;		m_rds.top = t; m_rds.height = h;  m_rds.bottom = b;	}		///////////////////////////////	// iterators    iterator begin() { return iterator(this);}    const_iterator begin() const { return const_iterator(this);}    iterator end() { return iterator(0);}    const_iterator end() const { return const_iterator(0);}	// Std xml tree interface	const region_node *down() const { return m_child;}	const region_node *up() const { return m_parent;}	const region_node *next() const { return m_next;}	region_node *down()  { return m_child;}	region_node *up()  { return m_parent;}	region_node *next()  { return m_next;}	void down(region_node *n)  { m_child = n;}	void up(region_node *n)  { m_parent = n;}	void next(region_node *n)  { m_next = n;}		const region_node* previous() const {return const_nnhelper::previous(this);}	region_node* previous() { return nnhelper::previous(this);}		region_node* last_child() { return nnhelper::last_child(this);}	const region_node* last_child() const { return const_nnhelper::last_child(this);}		region_node* get_root() {return nnhelper::get_root(this);}	const region_node* get_root() const {return const_nnhelper::get_root(this);}		bool is_descendent_of(region_node *tn) const {return const_nnhelper::is_descendent(this, tn);}		region_node *append_child(region_node *child) {return nnhelper::append_child(this, child);}	void get_children(std::list<region_node*>& l) { nnhelper::get_children(this, l); }	region_node *get_first_child(const char *name);	const region_node *get_first_child(const char *name) const;		const lib::node *dom_node() const { return m_node; }	static int get_node_counter() { return node_counter;}	  private:		const lib::node *m_node;	common::region_dim_spec m_rds;	dimension_inheritance m_dim_inherit;	common::fit_t m_fit;	common::zindex_t m_zindex;	lib::color_t m_bgcolor;	double m_soundlevel;	common::sound_alignment m_soundalign;	const char *m_bgimage;	common::tiling m_tiling;	bool m_inherit_bgrepeat;	bool m_transparent;	bool m_showbackground;	bool m_inherit_bgcolor;	common::surface_template *m_surface_template;	bool m_is_subregion;		// display attributes for the animation_destination interface	common::region_dim_spec m_display_rds;	common::zindex_t m_display_zindex;	lib::color_t m_display_bgcolor;	lib::color_t m_display_color;	double m_display_soundlevel;	common::sound_alignment m_display_soundalign;		// verifier	static int node_counter;		// XML tree glue	region_node *m_parent;	region_node *m_child;	region_node *m_next;};} // namespace smil2 } // namespace ambulant#endif // AMBULANT_SMIL2_REGION_NODE_H

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美变态tickling挠脚心| 亚洲一二三四在线| 亚洲成a人v欧美综合天堂下载 | 久久久精品中文字幕麻豆发布| 一区二区中文字幕在线| 国产自产v一区二区三区c| 欧美日韩国产经典色站一区二区三区| 国产精品久久久久久久久晋中 | 一区二区在线观看免费视频播放| 久久精品国产一区二区| 91国偷自产一区二区三区成为亚洲经典| 亚洲精品一区二区三区福利| 亚洲亚洲人成综合网络| 本田岬高潮一区二区三区| 久久综合九色综合97婷婷女人| 天天综合网天天综合色| 91在线看国产| 18欧美乱大交hd1984| 国产精品自产自拍| 精品国产免费一区二区三区香蕉 | 国产高清精品网站| 欧美精品一区二区三区久久久 | 亚洲日本在线视频观看| 国产成人在线色| 日本一区二区三区免费乱视频| 国产一区二区三区av电影 | 欧美一级片在线| 午夜国产不卡在线观看视频| 色狠狠色噜噜噜综合网| 亚洲最新在线观看| 91成人在线精品| 亚洲在线视频免费观看| 欧美在线观看视频一区二区三区| 亚洲欧美日韩国产综合在线| 91在线观看污| 国产精品电影一区二区| 91天堂素人约啪| 亚洲综合图片区| 欧美色欧美亚洲另类二区| 亚洲成人久久影院| 欧美一区二区三区小说| 捆绑变态av一区二区三区| 精品久久久久久久久久久久久久久 | 国产一区不卡精品| 国产欧美va欧美不卡在线| 国产传媒久久文化传媒| 国产精品久久99| 欧洲一区二区三区在线| 日韩高清在线不卡| 26uuu另类欧美| 99久久精品免费精品国产| 亚洲人成影院在线观看| 欧美日韩在线三级| 国产一区二区视频在线| 国产精品网站在线| 一本到三区不卡视频| 亚洲bdsm女犯bdsm网站| 久久蜜桃一区二区| 色婷婷精品久久二区二区蜜臂av | 678五月天丁香亚洲综合网| 久久精品国产在热久久| 136国产福利精品导航| 欧美日韩aaaaaa| 国产99久久精品| 亚洲国产一区二区视频| 26uuu久久综合| 日本乱人伦aⅴ精品| 六月丁香综合在线视频| 亚洲欧洲精品一区二区三区不卡| 在线不卡免费欧美| 成人永久aaa| 奇米777欧美一区二区| 中文字幕中文字幕在线一区| 91精品国产欧美一区二区| 91丨porny丨国产入口| 国内精品国产成人国产三级粉色| 一区二区三区四区高清精品免费观看 | 欧美性受极品xxxx喷水| 国产精品综合二区| 肉色丝袜一区二区| 中文字幕一区二区三区四区| 日韩片之四级片| 欧美午夜在线观看| 成人精品gif动图一区| 午夜精品视频一区| 综合中文字幕亚洲| 久久久久高清精品| 日韩三级.com| 欧美精品日韩一本| 91国偷自产一区二区三区观看| 成人综合日日夜夜| 国产一区二区三区蝌蚪| 蜜臀a∨国产成人精品| 亚洲一区二区精品视频| 日韩理论片在线| 中文字幕高清不卡| 久久精品无码一区二区三区| 日韩午夜激情免费电影| 在线播放中文字幕一区| 欧美日韩在线亚洲一区蜜芽| 91丨porny丨国产入口| 成人精品国产一区二区4080| 国产高清精品在线| 国产成人aaa| 丁香六月综合激情| 成人中文字幕合集| 国产不卡视频在线播放| 国产麻豆视频一区二区| 极品少妇一区二区| 激情丁香综合五月| 久久99国产精品麻豆| 免费在线一区观看| 久久疯狂做爰流白浆xx| 久久成人免费日本黄色| 毛片av中文字幕一区二区| 热久久久久久久| 久久精品国产77777蜜臀| 秋霞成人午夜伦在线观看| 日韩精品色哟哟| 韩国av一区二区三区在线观看| 久久国产精品色| 国产成人综合自拍| 色一情一伦一子一伦一区| 在线观看一区二区视频| 欧美福利一区二区| 精品日产卡一卡二卡麻豆| 久久亚洲私人国产精品va媚药| 中文字幕精品一区二区精品绿巨人 | 91麻豆免费看片| 欧美在线制服丝袜| 日韩欧美激情四射| 欧美激情综合网| 国产精品国产精品国产专区不片| 1区2区3区精品视频| 亚洲国产精品久久久男人的天堂 | 亚洲v精品v日韩v欧美v专区 | 亚洲黄一区二区三区| 性做久久久久久免费观看| 青青草一区二区三区| 国产精品中文字幕日韩精品| 99视频精品全部免费在线| 久久女同互慰一区二区三区| 日韩毛片一二三区| 成人免费毛片高清视频| 麻豆91精品视频| 成人免费看的视频| 欧美日韩二区三区| 国产欧美久久久精品影院 | 欧美日韩精品是欧美日韩精品| 制服丝袜亚洲精品中文字幕| 久久久久国产精品麻豆ai换脸 | 国产精品视频一二三| 午夜不卡av免费| 粉嫩久久99精品久久久久久夜 | 日韩精品高清不卡| 成人黄色在线网站| 日韩欧美国产一区二区在线播放 | 欧美国产日韩一二三区| 亚洲国产视频a| 国产成人免费视| 在线成人小视频| 亚洲美女在线国产| 成人一级视频在线观看| 91精品国产综合久久婷婷香蕉 | 激情六月婷婷久久| 欧美天堂一区二区三区| 欧美国产精品v| 国产一区二区三区四区在线观看| 欧美猛男超大videosgay| 中文一区在线播放| 精品一区二区三区日韩| 欧美日本不卡视频| 亚洲麻豆国产自偷在线| 国产aⅴ综合色| 精品国产一二三区| 捆绑紧缚一区二区三区视频| 欧美性一区二区| 亚洲精品久久嫩草网站秘色| 国产夫妻精品视频| 久久精品水蜜桃av综合天堂| 奇米777欧美一区二区| 欧美日韩在线播放一区| 亚洲人精品一区| 暴力调教一区二区三区| 国产日韩精品一区| 国产一区 二区 三区一级| 精品久久久久久久久久久久久久久 | 亚洲国产一区二区视频| 91在线一区二区| 亚洲免费观看视频| 一本色道久久综合亚洲精品按摩| 18涩涩午夜精品.www| 不卡电影一区二区三区| 国产精品午夜电影| 91在线视频免费91| 亚洲色图一区二区三区| 色一区在线观看| 亚洲444eee在线观看| 91精品国产综合久久婷婷香蕉 | 国产欧美综合在线观看第十页 |