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

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

?? notebookp.h

?? 安裝DDD之前
?? H
字號:
/** * * $Header: /cvsroot/lesstif/lesstif/include/Motif-2.1/Xm/NotebookP.h,v 1.1 2004/08/28 19:23:25 dannybackx Exp $ *  * Copyright (C) 1995 Free Software Foundation, Inc. * Copyright (C) 1995-2000 LessTif Development Team * * This file is part of the GNU LessTif Library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * **/#ifndef _XM_NOTEBOOKP_H#define _XM_NOTEBOOKP_H#include <Xm/ManagerP.h>#include <Xm/Notebook.h>#include <Xm/ScrollFrameT.h>#ifdef __cplusplusextern "C" {#endif/* Notebook's constraint info. fields */typedef struct _XmNotebookConstraintPart{    int page_number;    unsigned char child_type;    Boolean resizable;    Boolean active;} XmNotebookConstraintPart, *XmNotebookConstraint;typedef struct _XmNotebookConstraintRec{    XmManagerConstraintPart manager;    XmNotebookConstraintPart notebook;} XmNotebookConstraintRec, *XmNotebookConstraintPtr;/* Define the notebook instance part */typedef struct {        int current_page_number;	int first_page_number;              	int last_page_number;               	unsigned char orientation;          	unsigned char back_page_pos;        	Cardinal back_page_number;          	Dimension back_page_size;           	Pixel back_page_foreground;         	Pixel back_page_background;         	Pixel frame_background;             	unsigned char binding_type;         	Pixmap binding_pixmap;              	Pixmap spiral_pixmap;               	Dimension binding_width;            	Dimension margin_width;             	Dimension margin_height;            	Dimension major_spacing;            	Dimension minor_spacing;            	Dimension shadow_thickness;         	XtCallbackList page_change_callback;	Widget scroller;                    	Widget scroller_child;              	Widget next_major;                  	Widget prev_major;                  	Widget next_minor;                  	Widget prev_minor;                  	Dimension real_binding_width;       	Dimension real_back_page_number;    	Dimension page_width;               	Dimension page_height;              	Dimension status_width;             	Dimension status_height;            	Dimension major_width;              	Dimension major_height;             	Dimension minor_width;              	Dimension minor_height;             	Dimension scroller_width;           	Dimension scroller_height;          	Dimension major_scroller_width;     	Dimension major_scroller_height;    	Dimension minor_scroller_width;     	Dimension minor_scroller_height;    	Dimension frame_width;              	Dimension frame_height;             	Widget first_major;                 	Widget old_top_major;               	Widget top_major;                   	Widget last_major;                  	Widget first_minor;                 	Widget old_top_minor;               	Widget top_minor;                   	Widget last_minor;                  	Widget constraint_child;            	Dimension major_shadow_thickness;   	Dimension minor_shadow_thickness;   	Widget major_shadow_child;          	Widget minor_shadow_child;          	Boolean in_setshadow;               	unsigned char major_pos;            	unsigned char minor_pos;            	unsigned char binding_pos;          	unsigned char which_tab;            	int last_alloc_num;                 	unsigned char scroller_status;      	unsigned short need_scroller;       	Boolean dynamic_last_page_num;      	Boolean in_callback;                	GC back_page_gc;                    	GC frame_gc;                        	GC binding_gc;                      	GC foreground_gc;                   	GC background_gc;                   	Boolean first_change_managed;       	XmScrollFrameData scroll_frame_data; } XmNotebookPart;/* Define the full instance record */typedef struct _XmNotebookRec {    CorePart core;    CompositePart composite;    ConstraintPart constraint;    XmManagerPart manager;    XmNotebookPart notebook;} XmNotebookRec;/* Define class part structure */typedef struct {    XtPointer extension;} XmNotebookClassPart;/* Define the full class record */typedef struct _XmNotebookClassRec {    CoreClassPart core_class;    CompositeClassPart composite_class;    ConstraintClassPart constraint_class;    XmManagerClassPart manager_class;    XmNotebookClassPart notebook_class;} XmNotebookClassRec;XMLIBEXPORT extern XmNotebookClassRec xmNotebookClassRec;/* * actions *//* * Access macros */#define NB_FirstPageNumber(w)		\			(((XmNotebookWidget)w)->notebook.first_page_number)#define NB_LastPageNumber(w)		\			(((XmNotebookWidget)w)->notebook.last_page_number)#define NB_Orientation(w)		\			(((XmNotebookWidget)w)->notebook.orientation)#define NB_BackPagePos(w)		\			(((XmNotebookWidget)w)->notebook.back_page_pos)#define NB_BackPageNumber(w)		\			(((XmNotebookWidget)w)->notebook.back_page_number)#define NB_BackPageSize(w)		\			(((XmNotebookWidget)w)->notebook.back_page_size)#define NB_BackPageForeground(w)	\			(((XmNotebookWidget)w)->notebook.back_page_foreground)#define NB_BackPageBackground(w)	\			(((XmNotebookWidget)w)->notebook.back_page_background)#define NB_FrameBackground(w)		\			(((XmNotebookWidget)w)->notebook.frame_background)#define NB_BindingType(w)		\			(((XmNotebookWidget)w)->notebook.binding_type)#define NB_BindingPixmap(w)		\			(((XmNotebookWidget)w)->notebook.binding_pixmap)#define NB_SpiralPixmap(w)		\			(((XmNotebookWidget)w)->notebook.spiral_pixmap)#define NB_BindingWidth(w)		\			(((XmNotebookWidget)w)->notebook.binding_width)#define NB_MarginWidth(w)		\			(((XmNotebookWidget)w)->notebook.margin_width)#define NB_MarginHeight(w)		\			(((XmNotebookWidget)w)->notebook.margin_height)#define NB_MajorSpacing(w)		\			(((XmNotebookWidget)w)->notebook.major_spacing)#define NB_MinorSpacing(w)		\			(((XmNotebookWidget)w)->notebook.minor_spacing)#define NB_ShadowThickness(w)		\			(((XmNotebookWidget)w)->notebook.shadow_thickness)#define NB_PageChangeCallback(w)	\			(((XmNotebookWidget)w)->notebook.page_change_callback)#define NB_Scroller(w)			\			(((XmNotebookWidget)w)->notebook.scroller)#define NB_ScrollerChild(w)		\			(((XmNotebookWidget)w)->notebook.scroller_child)#define NB_NextMajor(w)			\			(((XmNotebookWidget)w)->notebook.next_major)#define NB_PrevMajor(w)			\			(((XmNotebookWidget)w)->notebook.prev_major)#define NB_NextMinor(w)			\			(((XmNotebookWidget)w)->notebook.next_minor)#define NB_PrevMinor(w)			\			(((XmNotebookWidget)w)->notebook.prev_minor)#define NB_RealBindingWidth(w)		\			(((XmNotebookWidget)w)->notebook.real_binding_width)#define NB_RealBackPageNumber(w)	\			(((XmNotebookWidget)w)->notebook.real_back_page_number)#define NB_PageWidth(w)			\			(((XmNotebookWidget)w)->notebook.page_width)#define NB_PageHeight(w)		\			(((XmNotebookWidget)w)->notebook.page_height)#define NB_StatusWidth(w)		\			(((XmNotebookWidget)w)->notebook.status_width)#define NB_StatusHeight(w)		\			(((XmNotebookWidget)w)->notebook.status_height)#define NB_MajorWidth(w)		\			(((XmNotebookWidget)w)->notebook.major_width)#define NB_MajorHeight(w)		\			(((XmNotebookWidget)w)->notebook.major_height)#define NB_MinorWidth(w)		\			(((XmNotebookWidget)w)->notebook.minor_width)#define NB_MinorHeight(w)		\			(((XmNotebookWidget)w)->notebook.minor_height)#define NB_ScrollerWidth(w)		\			(((XmNotebookWidget)w)->notebook.scroller_width)#define NB_ScrollerHeight(w)		\			(((XmNotebookWidget)w)->notebook.scroller_height)#define NB_MajorScrollerWidth(w)	\			(((XmNotebookWidget)w)->notebook.major_scroller_width)#define NB_MajorScrollerHeight(w)	\			(((XmNotebookWidget)w)->notebook.major_scroller_height)#define NB_MinorScrollerWidth(w)	\			(((XmNotebookWidget)w)->notebook.minor_scroller_width)#define NB_MinorScrollerHeight(w)	\			(((XmNotebookWidget)w)->notebook.minor_scroller_height)#define NB_FrameWidth(w)		\			(((XmNotebookWidget)w)->notebook.frame_width)#define NB_FrameHeight(w)		\			(((XmNotebookWidget)w)->notebook.frame_height)#define NB_FirstMajor(w)		\			(((XmNotebookWidget)w)->notebook.first_major)#define NB_OldTopMajor(w)		\			(((XmNotebookWidget)w)->notebook.old_top_major)#define NB_TopMajor(w)			\			(((XmNotebookWidget)w)->notebook.top_major)#define NB_LastMajor(w)			\			(((XmNotebookWidget)w)->notebook.last_major)#define NB_FirstMinor(w)		\			(((XmNotebookWidget)w)->notebook.first_minor)#define NB_OldTopMinor(w)		\			(((XmNotebookWidget)w)->notebook.old_top_minor)#define NB_TopMinor(w)			\			(((XmNotebookWidget)w)->notebook.top_minor)#define NB_LastMinor(w)			\			(((XmNotebookWidget)w)->notebook.last_minor)#define NB_ConstraintChild(w)		\			(((XmNotebookWidget)w)->notebook.constraint_child)#define NB_MajorShadowThickness(w)	\			(((XmNotebookWidget)w)->notebook.major_shadow_thickness)#define NB_MinorShadowThickness(w)	\			(((XmNotebookWidget)w)->notebook.minor_shadow_thickness)#define NB_MajorShadowChild(w)		\			(((XmNotebookWidget)w)->notebook.major_shadow_child)#define NB_MinorShadowChild(w)		\			(((XmNotebookWidget)w)->notebook.minor_shadow_child)#define NB_InSetshadow(w)		\			(((XmNotebookWidget)w)->notebook.in_setshadow)#define NB_MajorPos(w)			\			(((XmNotebookWidget)w)->notebook.major_pos)#define NB_MinorPos(w)			\			(((XmNotebookWidget)w)->notebook.minor_pos)#define NB_BindingPos(w)		\			(((XmNotebookWidget)w)->notebook.binding_pos)#define NB_WhichTab(w)			\			(((XmNotebookWidget)w)->notebook.which_tab)#define NB_LastAllocNum(w)		\			(((XmNotebookWidget)w)->notebook.last_alloc_num)#define NB_ScrollerStatus(w)		\			(((XmNotebookWidget)w)->notebook.scroller_status)#define NB_NeedScroller(w)		\			(((XmNotebookWidget)w)->notebook.need_scroller)#define NB_DynamicLastPageNum(w)	\			(((XmNotebookWidget)w)->notebook.dynamic_last_page_num)#define NB_InCallback(w)		\			(((XmNotebookWidget)w)->notebook.in_callback)#define NB_BackPageGc(w)		\			(((XmNotebookWidget)w)->notebook.back_page_gc)#define NB_FrameGc(w)			\			(((XmNotebookWidget)w)->notebook.frame_gc)#define NB_BindingGc(w)			\			(((XmNotebookWidget)w)->notebook.binding_gc)#define NB_ForegroundGc(w)		\			(((XmNotebookWidget)w)->notebook.foreground_gc)#define NB_BackgroundGc(w)		\			(((XmNotebookWidget)w)->notebook.background_gc)#define NB_FirstChangeManaged(w)	\			(((XmNotebookWidget)w)->notebook.first_change_managed)#define NB_ScrollFrameData(w)		\			(((XmNotebookWidget)w)->notebook.scroll_frame_data)#define	NB_CurrentPageNumber(w)		\			(((XmNotebookWidget)w)->notebook.current_page_number)/* For Constraint resources *//* Note the NBC*() need a Notebook child as argument. */#define NB_GetConstraintRec(w) \    ((XmNotebookConstraint)(&((XmNotebookConstraintPtr) \    (w)->core.constraints)->notebook))#define	NBC_PageNumber(w)	(NB_GetConstraintRec(w)->page_number)#define	NBC_ChildType(w)	(NB_GetConstraintRec(w)->child_type)#define	NBC_Resizable(w)	(NB_GetConstraintRec(w)->resizable)#define	NBC_Active(w)		(NB_GetConstraintRec(w)->active)/* * The end */#ifdef __cplusplus}#endif#endif /* _XM_NOTEBOOKP_H */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
婷婷中文字幕一区三区| 国产美女一区二区| 不卡视频免费播放| 欧美电影免费提供在线观看| 亚洲精品日产精品乱码不卡| 国产综合久久久久久鬼色| 欧美无乱码久久久免费午夜一区| www国产精品av| 视频一区中文字幕国产| 欧美主播一区二区三区| 亚洲色图清纯唯美| 成人小视频免费在线观看| 亚洲精品一线二线三线无人区| 亚洲成精国产精品女| 91色porny| 亚洲视频一二三区| 99久久久久久99| 国产精品久久久久久久久免费樱桃| 麻豆精品在线观看| 91精品国产综合久久蜜臀| 亚洲综合图片区| 色琪琪一区二区三区亚洲区| 国产精品毛片久久久久久| 国产精品一区二区久久不卡| 亚洲精品一区二区在线观看| 久久超碰97中文字幕| 日韩一级大片在线| 强制捆绑调教一区二区| 日韩欧美的一区| 久久99精品国产91久久来源| 精品国产乱码久久久久久蜜臀 | 欧美电影在线免费观看| 亚洲最新视频在线观看| 精品国产一区二区三区久久久蜜月 | 日韩一区二区视频在线观看| 日韩精品一二三| 欧美调教femdomvk| 午夜伊人狠狠久久| 91精品久久久久久蜜臀| 精品一区二区日韩| 久久免费视频色| 成人伦理片在线| 亚洲影院理伦片| 欧美一级日韩免费不卡| 精品一区二区三区免费| 国产三区在线成人av| 99精品桃花视频在线观看| 亚洲精品水蜜桃| 日韩一区二区免费在线观看| 韩日av一区二区| 亚洲同性同志一二三专区| 在线观看一区二区视频| 麻豆成人综合网| 国产精品乱人伦中文| 欧美日韩免费一区二区三区| 美女网站视频久久| 成人免费在线播放视频| 欧美日韩一级视频| 国产剧情一区二区三区| 成人免费在线视频观看| 欧美日韩aaaaaa| 国产寡妇亲子伦一区二区| 亚洲日本乱码在线观看| 欧美tk—视频vk| 9i在线看片成人免费| 三级精品在线观看| 国产精品日韩成人| 欧美一级二级三级蜜桃| 99这里只有精品| 视频一区二区国产| 中文字幕在线不卡一区| 日韩视频永久免费| 色综合网站在线| 国产精品99久久久久久宅男| 亚洲影视资源网| 欧美国产综合一区二区| 91精品国产日韩91久久久久久| 福利电影一区二区| 日韩va欧美va亚洲va久久| 亚洲视频免费观看| 欧美成人三级电影在线| 欧美三级韩国三级日本三斤| 成人激情校园春色| 国产主播一区二区三区| 亚洲成人av免费| 一区二区在线观看不卡| 国产日产欧美一区| 精品成人一区二区三区四区| 欧美三级韩国三级日本三斤| 91免费视频观看| 成人免费毛片app| 国产美女精品一区二区三区| 日韩一区精品视频| 一区二区三区四区在线免费观看| 久久久久久黄色| 欧美大片在线观看一区| 日韩一区二区三区免费观看| 欧美性色综合网| 色94色欧美sute亚洲13| av中文字幕不卡| 成人一级视频在线观看| 国产传媒日韩欧美成人| 国产一区二区三区在线观看免费 | 色综合久久综合网97色综合| 成人精品一区二区三区四区| 国产精品自在欧美一区| 国产美女视频一区| 国产精品一区在线观看你懂的| 九色综合狠狠综合久久| 美女www一区二区| 久久99最新地址| 久久国产精品99久久久久久老狼| 另类欧美日韩国产在线| 日本不卡不码高清免费观看| 美女一区二区在线观看| 国内精品第一页| 国产成人精品免费网站| 成人免费不卡视频| 97精品久久久久中文字幕| 99久久精品99国产精品 | 成人做爰69片免费看网站| 成人教育av在线| 91国内精品野花午夜精品| 欧美色视频在线| 日韩一区二区三区av| 久久久青草青青国产亚洲免观| 中文字幕av不卡| 亚洲日本一区二区| 日本在线播放一区二区三区| 久久99精品久久久久婷婷| 国产精品一区二区黑丝| 91免费视频观看| 6080国产精品一区二区| 精品久久久久久无| √…a在线天堂一区| 亚洲第一在线综合网站| 久久电影网站中文字幕| 北岛玲一区二区三区四区| 色天使色偷偷av一区二区 | 色又黄又爽网站www久久| 欧美视频你懂的| 日韩一区二区免费在线观看| 国产欧美精品在线观看| 一区二区三区四区蜜桃| 久久成人免费网站| 99国产精品国产精品久久| 欧美日韩精品欧美日韩精品一| 久久午夜电影网| 一区二区三区蜜桃| 精品一区二区影视| 色婷婷av一区二区三区之一色屋| 日韩亚洲欧美成人一区| 国产精品福利一区二区| 日韩电影在线观看电影| 成人午夜短视频| 日韩欧美国产精品| 亚洲黄一区二区三区| 国产精品99久久久久久似苏梦涵| 色狠狠一区二区| 精品成人一区二区三区四区| 亚洲在线免费播放| 风间由美一区二区三区在线观看| 欧美日韩成人综合天天影院| 亚洲欧美综合另类在线卡通| 精品一区二区在线播放| 欧美日韩mp4| 亚洲精品第1页| 成人av电影观看| 26uuu精品一区二区三区四区在线| 又紧又大又爽精品一区二区| 国产精品一二三四区| 91精品婷婷国产综合久久竹菊| 最新不卡av在线| 成人看片黄a免费看在线| 精品国产91乱码一区二区三区| 午夜视频一区二区三区| 色诱亚洲精品久久久久久| 国产精品乱码人人做人人爱 | 日韩高清国产一区在线| 91久久香蕉国产日韩欧美9色| 国产欧美一区二区精品忘忧草| 久久99日本精品| 欧美一区二区精品| 日本在线观看不卡视频| 欧美日韩国产成人在线91| 一区二区不卡在线播放| 91在线视频在线| 亚洲天堂成人在线观看| 99久久99久久综合| 国产欧美日韩另类一区| 国产.精品.日韩.另类.中文.在线.播放| 欧美xingq一区二区| 免费观看在线综合色| 欧美一区二区成人| 免费精品视频最新在线| 日韩欧美国产综合一区 | 久久成人免费日本黄色| 精品国产精品一区二区夜夜嗨| 麻豆精品一区二区综合av| 日韩欧美一区电影|