久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

用Xlib库进行基本图形编程

發(fā)布時間:2025/4/16 编程问答 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 用Xlib库进行基本图形编程 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

用Xlib庫進(jìn)行基本圖形編程

用Xlib庫進(jìn)行基本圖形編程
目錄
1、前言
2、X Window系統(tǒng)的客戶服務(wù)器模式
3、GUI編程-同步化的編程模型
4、基本的Xlib概念
? ? ? ? 1、X Display
? ? ? ? 2、GC-圖形上下文
? ? ? ? 3、對象句柄
? ? ? ? 4、Xlib 結(jié)構(gòu)體的內(nèi)存分配
? ? ? ? 5、事件
5、編譯給予Xlib的程序
6、打開和關(guān)閉一個連接到X服務(wù)器的連接
7、檢查關(guān)于Display的基本信息
8、創(chuàng)建一個簡單的窗口-我們的“hello world”程序
9、在窗口中繪畫
? ? ? ? 1、分配圖形上下文(GC)
? ? ? ? 2、基本繪圖-點(diǎn),線,框,圓...
10、X事件
? ? ? ? 1、使用事件遮罩給事件型別注冊
? ? ? ? 2、接收事件-撰寫事件循環(huán)
? ? ? ? 3、暴露事件
? ? ? ? 4、獲得用戶輸入
? ? ? ? ? ? ? ? 1、鼠標(biāo)按鈕點(diǎn)擊和釋放事件
? ? ? ? ? ? ? ? 2、鼠標(biāo)移動事件
? ? ? ? ? ? ? ? 3、鼠標(biāo)指針進(jìn)入和離開事件
? ? ? ? ? ? ? ? 4、鍵盤焦點(diǎn)
? ? ? ? ? ? ? ? 5、鍵盤按下和釋放事件
? ? ? ? 5、X事件-完整的例子
11、處理文本和字體
? ? ? ? 1、字體結(jié)構(gòu)
? ? ? ? 2、載入字體
? ? ? ? 3、把字體賦給圖形上下文
? ? ? ? 4、在窗口中繪出文本
12、窗口階層
? ? ? ? 1、根,父和子窗口
? ? ? ? 2、事件傳播
13、和窗口管理器交互
? ? ? ? 1、窗口屬性
? ? ? ? 2、設(shè)置窗口名和圖標(biāo)名
? ? ? ? 3、設(shè)置最佳窗口尺寸
? ? ? ? 4、設(shè)置窗口管理器的雜項
? ? ? ? 5、設(shè)置應(yīng)用程序的圖標(biāo)
14、簡單窗口操作
? ? ? ? 1、映射和取消映射窗口
? ? ? ? 2、在屏幕上移動窗口
? ? ? ? 3、縮放窗口
? ? ? ? 4、改變窗口的堆疊次序-提高會放低
? ? ? ? 5、標(biāo)識會取消標(biāo)識窗口
? ? ? ? 6、獲得窗口的信息
15、使用顏色來繪出彩虹
? ? ? ? 1、色表
? ? ? ? 2、分配和釋放色表
? ? ? ? 3、分配和釋放單個顏色
? ? ? ? 4、用顏色繪畫
16、X Bitmap和Pixmap
? ? ? ? 1、什么是X Bitmap?什么又是X Pixmap?
? ? ? ? 2、從文件中載入Bitmap
? ? ? ? 3、在窗口中畫出Bitmap
? ? ? ? 4、創(chuàng)建Pixmap
? ? ? ? 5、在窗口中畫出Pixmap
? ? ? ? 6、釋放Pixmap
17、鼠標(biāo)光標(biāo)的雜事
? ? ? ? 1、創(chuàng)建和釋放鼠標(biāo)光標(biāo)
? ? ? ? 2、設(shè)置窗口的鼠標(biāo)光標(biāo)
Preface
前言

This tutorial is the first in a series of "would-be" tutorials about graphical programming?

in the X window environment. By itself, it is useless. A real X programmer usually uses a?

much higher level of abstraction, such as using Motif (or its free version, lesstiff), GTK,?

QT and similar libraries. However, we need to start somewhere. More than this, knowing how?

things work down below is never a bad idea.
該教程是“可能會有”的關(guān)于在X Window環(huán)境下進(jìn)行圖形化編程的教程的第一個系列。其自身是用處不大

的。一個真正的X程序員一般使用一個更高層次的抽象,比如用Motif(或者它的的免費(fèi)版本,lesstiff),

GTK,QT和類似的庫。然而,我們需要從一個地方開始入手。不僅如此,知道表象之下的事情是如何工作

的決不會是壞的主意。

After reading this tutorial, one would be able to write very simple graphical programs, but?

not programs with a descent user interface. For such programs, one of the previously?

mentioned libraries would be used.?
在讀完本教程后,你可能能夠些簡單的圖形程序,但是那不會是一個有良好用戶界面的程序。對于這樣的

程序,也許就要用到上述的庫中的某一個。

The Client And Server Model Of The X Window System
X Window系統(tǒng)的客戶和服務(wù)器模型

The X window system was developed with one major goal - flexibility. The idea was that the?

way things look is one thing, but the way things work is another matter. Thus, the lower?

levels provide the tools required to draw windows, handle user input, allow drawing graphics?

using colors (or black and white screens), etc. To this point, a decision was made to?

separate the system into two parts. A client that decides what to do, and a server that?

actually draws on the screen and reads user input in order to send it to the client for?

processing.
X window系統(tǒng)開發(fā)之初有一個最大的目標(biāo)-靈活性。想法是這樣的東西看上如如何一回事,東西如何工作

的又是另外一回事。因而,底層提供在畫窗口,處理用戶輸入,允許使用顏色畫圖形(或者黑白屏幕)等動

作中需要的工作。就這點(diǎn)決定了把系統(tǒng)分為兩個部分。客戶決定作什么,而服務(wù)器實(shí)際在屏幕上畫圖并讀

出用戶輸入以發(fā)給客戶進(jìn)行處理。

This model is the complete opposite of what one is used to when dealing with clients and?

servers. In our case, the user seats near the machine controlled by the server, while the?

client might be running on a remote machine. The server controls the screen, mouse and?

keyboard. A client may connect to the server, request that it draws a window (or several?

windows), and ask the server to send it any input the user sends to these windows. Thus,?

several clients may connect to a single X server - one might be running an email software,?

one running a WWW browser, etc. When input it sent by the user to some window, the server?

sends a message to the client controlling this window for processing. The client decides?

what to do with this input, and sends the server requests for drawing in the window.
這個模型正好和人們在客戶和服務(wù)器中所習(xí)慣的行為相反。在我們的例子,用戶坐在由服務(wù)器控制的機(jī)器

旁邊,而客戶可能運(yùn)行于一個遠(yuǎn)程的機(jī)器上。服務(wù)器控制屏幕,鼠標(biāo)和鍵盤??蛻艨赡苓B接到了服務(wù)器,

發(fā)出畫一個(或者多個)窗口的請求,并要求服務(wù)器把任何用戶發(fā)送給這些窗口的輸入給他。因而,幾個客

戶可能連接到了同一個X服務(wù)器-一個可能在運(yùn)行email軟件,一個可能在運(yùn)行WWW瀏覽器,等等。當(dāng)由用

戶發(fā)送輸入給某些窗口時,服務(wù)器向控制這些窗口的客戶發(fā)送消息以供處理。客戶決定對輸入作什么,并

給服務(wù)器發(fā)送請求來在窗口中繪圖。

The whole session is carried out using the X message protocol. This protocol was originally?

carried over the TCP/IP protocol suite, allowing the client to run on any machine connected?

to the same network that the server is. Later on the X servers were extended to allow?

clients running on the local machine more optimized access to the server (note that an X?

protocol message may be several hundreds of KB in size), such as using shared memory, or?

using Unix domain sockets (a method for creating a logical channel on a Unix system between?

two processes).?
整個會話過程是用X消息協(xié)議執(zhí)行的。該協(xié)議最初時由TCP/IP協(xié)議包執(zhí)行的,允許客戶運(yùn)行于任何和服務(wù)

器連接在相同網(wǎng)絡(luò)上的機(jī)器上。后來,X服務(wù)器被擴(kuò)展為允許客戶運(yùn)行在本地機(jī)器上更優(yōu)的訪問服務(wù)器(注

意到X協(xié)議消息可能有幾百KB那么大),比如使用共享內(nèi)存,或者使用Unix域sockets(一個在Unix系統(tǒng)上的

兩個進(jìn)程間創(chuàng)建邏輯通道的方法)。

GUI programming - the Asynchronous Programming Model
GUI編程-同步化的編程模型

Unlike conventional computer programs, that carry some serial nature, a GUI program usually?

uses an asynchronous programming model, also known as "event-driven programming". This means?

that that program mostly sits idle, waiting for events sent by the X server, and then acts?

upon these events. An event may say "The user pressed the 1st button mouse in spot x,y", or?

"the window you control needs to be redrawn". In order for the program to be responsive to?

the user input, as well as to refresh requests, it needs to handle each event in a rather?

short period of time (e.g. less than 200 milliseconds, as a rule of thumb).
不同于包含某種順序化執(zhí)行內(nèi)質(zhì)的傳統(tǒng)的計算機(jī)程序。GUI程序通常使用同步化的編程模型,也被稱為“

事件驅(qū)動編程”。這個意味著程序大部分時候時閑著的,等待由X服務(wù)器發(fā)送的事件,然后根據(jù)這些事件

作出反應(yīng)。事件可能時”用戶在點(diǎn)x,y處按下第一個按鈕“,或者時”你控制的串口需要重畫“。為了程

序能夠響應(yīng)用戶輸入以及刷新請求,它需要在一個相當(dāng)短的時間內(nèi)處理每個事件(比如作為一個大體的規(guī)

則,小于200毫秒)。

This also implies that the program may not perform operations that might take a long time?

while handling an event (such as opening a network connection to some remote server, or?

connecting to a database server, or even performing a long file copy operation). Instead, it?

needs to perform all these operations in an asynchronous manner. This may be done by using?

various asynchronous models to perform the longish operations, or by performing them in a?

different process or thread.
這也意味著程序可能不執(zhí)行在處理過程也許需要很長時間的事件的操作(例如打開一個連接到遠(yuǎn)程服務(wù)器

的網(wǎng)絡(luò)連接,或者連接到數(shù)據(jù)庫服務(wù)器,甚至執(zhí)行一個大文件的拷貝)。而是,它需要同步化的執(zhí)行所有

這些操作。這可能通過使用各種同步模型來執(zhí)行長時間的操作,或者通過用不同的進(jìn)程或者線程來執(zhí)行他

們。

So the way a GUI program looks is something like that:
因而GUI程序看上去大概是這樣:

? ?1. Perform initialization routines.
? ?2. Connect to the X server.
? ?3. Perform X-related initialization.
? ?4. While not finished:
? ?? ?? ?1. Receive the next event from the X server.
? ?? ?? ?2. handle the event, possibly sending various drawing requests to the X server.
? ?? ?? ?3. If the event was a quit message, exit the loop.?
? ?5. Close down the connection to the X server.
? ?6. Perform cleanup operations.?
? ?1、執(zhí)行初始化
? ?2、連接到X服務(wù)器
? ?3、執(zhí)行X相關(guān)的初始化工作
? ?4、在沒有結(jié)束之前:
? ?? ???1、接收來自于X服務(wù)器的下一個事件
? ?? ???2、處理事件,也許向X服務(wù)器發(fā)送多種繪畫請求
? ?? ???3、如果事件是退出消息,跳出循環(huán)
? ?5、關(guān)閉連接到X服務(wù)器的連接
? ?6、執(zhí)行清理操作

Basic Xlib Notions
基本的Xlib概念

In order to eliminate the needs of programs to actually implement the X protocol layer, a?

library called 'Xlib' was created. This library gives a program a very low-level access to?

any X server. Since the protocol is standardized, A client using any implementation of Xlib?

may talk with any X server. This might look trivial these days, but back at the days of?

using character mode terminals and proprietary methods of drawing graphics on screens, this?

looked like a major break-through. In fact, you'll notice the big hype going around?

thin-clients, windows terminal servers, etc. They are implementing today what the X protocol?

enabled in the late 80's. On the other hand, the X universe is playing a catch-up game?

regarding CUA (common user access, a notion made by IBM to refer to the usage of a common?

look and feel for all programs in order to ease the lives of the users). Not having a common?

look and feel was a philosophy of the creators of the X window system. Obviously, it had?

some drawbacks that are evident today.?
為了消除程序事件實(shí)現(xiàn)X協(xié)議層的需求,一個稱為‘Xlib’的庫被創(chuàng)造出來。該庫給程序提供了一個對任

何X服務(wù)器非常底層的訪問。因為協(xié)議是標(biāo)準(zhǔn)化的,客戶使用Xlib的任何一種實(shí)現(xiàn)都可以和和X服務(wù)器通話

。這些可能在今天看來沒什么大用,但回到使用字符模式終端和專有方法在屏幕上繪圖的日子,這是一個

很大的突破。事實(shí)上,你將注意到咱愛瘦客戶,窗口終端服務(wù)器,等等周圍進(jìn)行的各種虛偽的騙局。他們

在今天實(shí)現(xiàn)X協(xié)議在80年代晚期已經(jīng)能夠作的事情。另外一方面,X universe在玩一個關(guān)于CUA(共通用戶

感觀,一個由IBM制造的概念,指的是對所有程序使用共通的觀感以使得用戶能夠更加輕松)的catch-up游

戲。沒有共通的感觀是X window系統(tǒng)創(chuàng)造者的哲學(xué)。明顯,它有許多在今天看來顯然的缺陷。

The X Display

The major notion of using Xlib is the X display. This is a structure representing the?

connection we have open with a given X server. It hides a queue of messages coming from the?

server, and a queue of pending requests that our client intends to send to the server. In?

Xlib, this structure is named 'Display'. When we open a connection to an X server, the?

library returns a pointer to such a structure. Later, we supply this pointer to any Xlib?

function that should send messages to the X server or receive messages from this server.?

X Display

使用Xlib的最大的概念是X display。這是一個代表我們和一個給定X服務(wù)器打開的連接的結(jié)構(gòu)體。它隱藏

了服務(wù)器的消息隊列,客戶將要發(fā)送給服務(wù)器的請求隊列。在Xlib中,這個結(jié)構(gòu)體被命名為‘Display’

。當(dāng)我們打開一個連接到X服務(wù)器的連接的時候,庫返回一個指向這種結(jié)構(gòu)體的指針。然后,我們把這個

指針提供給任何需要發(fā)送消息給X服務(wù)器或者從這個服務(wù)器接收消息的Xlib函數(shù)。

The GC - Graphics Context

When we perform various drawing operations (graphics, text, etc), we may specify various?

options for controlling how the data will be drawn - what foreground and background colors?

to use, how line edges will be connected, what font to use when drawing some text, etc). In?

order to avoid the need to supply zillions of parameters to each drawing function, a?

graphical context structure, of type 'GC' is used. We set the various drawing options in?

this structure, and then pass a pointer to this structure to any drawing routines. This is?

rather handy, as we often needs to perform several drawing requests with the same options.?

Thus, we would initialize a graphical context, set the desired options, and pass this GC?

structure to all drawing functions.?

GC -圖形上下文

當(dāng)我們執(zhí)行各種繪出(圖形,文本,等)操作的時候,我們可能要指定幾個選項以控制數(shù)據(jù)怎么被繪出 -?

前景色和背景色是什么,線的邊緣如何連接,在繪出文本的時候使用何種字體,等。為了避免給每個繪出

函數(shù)提供n多參數(shù),一個類型為‘GC’的圖形上下文結(jié)構(gòu)被啟用。我們在這個結(jié)構(gòu)中設(shè)置各種繪出選項,

并且把指向這個結(jié)構(gòu)的指針傳遞給每個繪出函數(shù)。這個是相當(dāng)方便的,因為我們通常需要用相同選項執(zhí)行

好幾個繪出請求。因而,我們初始化圖形上下文,設(shè)置所需的選項,并把這個GC結(jié)構(gòu)傳遞給所有的繪出函

數(shù)。

Object Handles

When various objects are created for us by the X server - such as windows, drawing areas and?

cursors - the relevant function returns a handle. This is some identifier for the object?

that actually resides in the X server's memory - not in our application's memory. We can?

later manipulate this object by supplying this handle to various Xlib functions. The server?

keeps a mapping between these handles and the actual objects it manages. Xlib provides?

various type definitions for these objects (Window, Cursor, Colormap and so on), which are?

all eventually mapped to simple integers. We should still use these type names when defining?

variables that hold handles - for portability reasons.?

對象句柄

當(dāng)各種對象被創(chuàng)造出來給X服務(wù)器使用 - 例如窗口,繪畫區(qū)域和光標(biāo) - 相關(guān)的函數(shù)返回一個句柄。這

是實(shí)際存在于X服務(wù)器的內(nèi)存中的對象的標(biāo)識符。我們能夠在后面通過把這些句柄提供給各種Xlib函數(shù)來

操縱這些對象。服務(wù)器保存了這些句柄和它們管理的對象之間的映射。Xlib提供各種型別定義給這些對象

(窗口,光標(biāo),色表等等),它們實(shí)際上最終映射為簡單的整數(shù)。我們在定義保存這些句柄的變量的時候仍

然應(yīng)當(dāng)使用這些型別名-為了有更好的可移植性。

Memory Allocation For Xlib Structures
為Xlib結(jié)構(gòu)體分配內(nèi)存

Various structure types are used in Xlib's interface. Some of them are allocated directly by?

the user. Others are allocated using specific Xlib functions. This allows the library to?

initialize properly these structures. This is very handy, since these structures tend to?

contain a lot of variables, making it rather tedious for the poor programmer to initialize.?

Remember - Xlib tries to be as flexible as possible, and this means it is also as complex as?

it can get. Having default values will enable a beginner X programmer to use the library,?

without interfering with the ability of a more experienced programmer to tweak with these?

zillions of options.
在Xlib的接口中使用了各種結(jié)構(gòu)型別。他們中的一些直接由用戶分配內(nèi)存。其他的使用Xlib函數(shù)分配。這

使得庫能夠恰當(dāng)?shù)某跏蓟@些結(jié)構(gòu)。這非常方便,因為這些結(jié)構(gòu)傾向于包含很多變量,使得對于差勁點(diǎn)的

程序員非常難于初始化它們。記住-Xlib嘗試著盡可能的了靈活,而且這意味著他也是盡可能的復(fù)雜。由

缺省值使得初學(xué)X的程序員能夠使用這個庫,而不打擾有經(jīng)驗的程序員在n多選項中作調(diào)整的可能。

As for freeing memory, this is done in one of two ways. In cases where we allocated the?

memory - we free it in the same manner (i.e. use free() to free memory allocated using?

malloc()). In case we used some Xlib function to allocate it, or we used some Xlib query?

method that returns dynamically allocated memory - we will use the XFree() function to free?

this memory block.
對于釋放內(nèi)存,由兩種方法完成。在我們分配內(nèi)存的情況-我們用相同方法釋放它們(也就是使用free()

來釋放由malloc()分配的內(nèi)存)。在我們用某Xlib函數(shù)分配的時候,或者我們使用返回動態(tài)分配的內(nèi)存的

Xlib查詢方法的時候-我們使用XFree()函數(shù)來釋放這些內(nèi)存塊。

Events
事件

A structure of type 'XEvent' is used to pass events received from the X server. Xlib?

supports a large amount of event types. The XEvent structure contains the type of event?

received, as well as the data associated with the event (e.g. position on the screen where?

the event was generated, mouse button associated with the event, region of screen associated?

with a 'redraw' event, etc). The way to read the event's data depends on the event type.?

Thus, an XEvent structure contains a C language union of all possible event types (if you're?

not sure what C unions are, it is time to check your proffered C language manual...). Thus,?

we could have an XExpose event, an XButton event, an XMotion event, etc.?

型別‘XEvent’的結(jié)構(gòu)被用來傳遞從X服務(wù)器接收來的事件。Xlib支持很大數(shù)量的事件型別。XEvent結(jié)構(gòu)

包含接收事件的類型,以及與該事件相關(guān)的數(shù)據(jù)(例如事件產(chǎn)生的屏幕位置,與事件相關(guān)的鼠標(biāo)按鈕,和

‘redraw’事件相關(guān)的屏幕區(qū)域,等)。讀取事件的數(shù)據(jù)的方法和事件類型有關(guān)。因而,XEvent結(jié)構(gòu)包含

一個C語言對于所有可能事件型別的聯(lián)合(如果你不確知C的聯(lián)合是什么,該是查查你的C語言手冊的時候

...)。因而,我們能夠有一個XExpose事件,XButton事件,XMotion事件,等。

Compiling Xlib-Based Programs
編譯基于Xlib的程序

Compiling Xlib-Based programs requires linking them with the Xlib library. This is done?

using a compilation command like this:
編譯基于Xlib的需要把他們和Xlib庫進(jìn)行鏈接。這是通過使用如下的編譯命令行來完成的:


cc prog.c -o prog -lX11

If the compiler complains that it cannot find the X11 library, try adding a '-L' flag, like?

this:
如果編譯器抱怨它找不到X11庫,嘗試加上‘-L’標(biāo)志,像這樣:

cc prog.c -o prog -L/usr/X11/lib -lX11

or perhaps this (for a system with release 6 of X11):
或者也許是這樣(對于用X11的release 6的系統(tǒng)):

cc prog.c -o prog -L/usr/X11R6/lib -lX11

On SunOs 4 systems, the X libraries are placed in /usr/openwin/lib:
在SunOs 4系統(tǒng)上,X庫被放置于/usr/openwin/lib:

cc prog.c -o prog -L/usr/openwin/lib -lX11

and so on...
等等...

Opening And Closing The Connection To An X Server
打開和關(guān)閉連接到X服務(wù)器的連接

An X program first needs to open the connection to the X server. When we do that, we need to?

specify the address of the host running the X server, as well as the display number. The X?

window system can support several displays all connected to the same machine. However,?

usually there is only one such display, which is display number '0'. If we wanted to connect?

to the local display (i.e. the display of the machine on which our client program runs), we?

could specify the display as ":0". To connect to the first display of a machine whose?

address is "simey", we could use the address "simey:0". Here is how the connection is?

opened:
X程序首先需要打開連接到X服務(wù)器的連接。在我們完成這件工作的時候,我們需要指定運(yùn)行X服務(wù)器的機(jī)

器的地址,以及display號碼。X window系統(tǒng)能夠支持全部連接于同一個機(jī)器的好幾個display。然而,通

常只有一個這樣的display,它的display號是‘0’。如果我們想要連接到本地display(也就是我們客戶

程序所運(yùn)行的機(jī)器的display),我們可以指定display為’:0‘。要連接到地址為”simey“的機(jī)器的第一

個display,我們能夠使用地址”simey:0“。這兒是連接是如何被打開的:

#include <X11/Xlib.h>? ?/* defines common Xlib functions and structs. */
.
.
/* this variable will contain the pointer to the Display structure */
/* returned when opening a connection.? ?? ?? ?? ?? ?? ?? ?? ?? ???*/
Display* display;

/* open the connection to the display "simey:0". */
display = XOpenDisplay("simey:0");
if (display == NULL) {
? ? fprintf(stderr, "Cannot connect to X server %s\n", "simey:0");
? ? exit (-1);
}

Note that is common for X programs to check if the environment variable 'DISPLAY' is?

defined, and if it is, use its contents as the parameter to the XOpenDisplay() function.
注意,對于X程序來說檢查系統(tǒng)變量‘DISPLAY’是否被定義了是很常見的,而且如果是的話,使用它的內(nèi)

容作為XOpenDisplay()函數(shù)的參數(shù)。

When the program finished its business and needs to close the connection the X server, it?

does something like this:
當(dāng)程序完成了它的使命并且需要關(guān)閉連接到X服務(wù)器的連接的時候,它如下動作:


XCloseDisplay(display);


This would cause all windows created by the program (if any are left) to be automatically?

closed by the server, and any resources stored on the server on behalf of the clients - to?

be freed. Note that this does not cause our client program to terminate - we could use the?

normal exit() function to do that.
這將導(dǎo)致所有由程序創(chuàng)造的窗口(如果還有剩下的話)自動被服務(wù)器關(guān)閉,而且為了客戶的利益任何留在服

務(wù)器上的資源-將被釋放。注意這將不會導(dǎo)致我們的客戶程序終止-我們使用普通的exit()函數(shù)來完成。

Checking Basic Information About A Display
檢查關(guān)于Display的基本信息

Once we opened a connection to an X server, we should check some basic information about it:?

what screens it has, what is the size (width and height) of the screen, how many colors it?

supports (black and white? grey scale? 256 colors? more?), and so on. We will show a code?

snippet that makes few of these checks, with comments explaining each function as it is?

being used. We assume that 'display' is a pointer to a 'Display' structure, as returned by a?

previous call to XOpenDisplay().

一旦我們打開了一個連接到X服務(wù)器的連接,我們應(yīng)當(dāng)檢查有關(guān)它的一些基本信息:他有什么樣的屏幕,

尺寸是多少(寬和高),它支持多少顏色(黑白?灰度?256色?更多?),以及等等。我們將展示一些作一

些這樣檢查的代碼片段,以及在使用中解釋每個函數(shù)的注釋。我們假定‘display’是一個指向‘Display

’的結(jié)構(gòu)的指針,由前面對XOpenDisplay()的調(diào)用返回的。

/* this variable will be used to store the "default" screen of the??*/
/* X server. usually an X server has only one screen, so we're only */
/* interested in that screen.? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?*/
int screen_num;

/* these variables will store the size of the screen, in pixels.? ? */
int screen_width;
int screen_height;

/* this variable will be used to store the ID of the root window of our */
/* screen. Each screen always has a root window that covers the whole? ?*/
/* screen, and always exists.? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ? */
Window root_window;

/* these variables will be used to store the IDs of the black and white */
/* colors of the given screen. More on this will be explained later.? ? */
unsigned long white_pixel;
unsigned long black_pixel;

/* check the number of the default screen for our X server. */
screen_num = DefaultScreen(display);

/* find the width of the default screen of our X server, in pixels. */
screen_width = DisplayWidth(display, screen_num);

/* find the height of the default screen of our X server, in pixels. */
screen_height = DisplayHeight(display, screen_num);

/* find the ID of the root window of the screen. */
root_window = RootWindow(display, screen_num);

/* find the value of a white pixel on this screen. */
white_pixel = WhitePixel(display, screen_num);

/* find the value of a black pixel on this screen. */
black_pixel = BlackPixel(display, screen_num);

There are various other macros to get more information about the screen, that you can find?

in any Xlib reference. There are also function equivalents for some of these macros (e.g.?

XWhitePixel, which does the same as WhitePixel).
有各種其他的宏來得到關(guān)于屏幕的更多信息,你可以從任何Xlib參考書中得到它們。還有和這些宏完成相

同功能的函數(shù)(例如XWhitePixel,它和WhitePixel干一樣的事情)。

Creating A Basic Window - Our "hello world" Program
創(chuàng)建一個簡單窗口 - 我們的“hello world”程序

After we got some basic information about our screen, we can get to creating our first?

window. Xlib supplies several functions for creating new windows, one of which is?

XCreateSimpleWindow(). This function gets quite a few parameters determining the window's?

size, its position, and so on. Here is a complete list of these parameters:
在我們獲得了一些有關(guān)我們的屏幕的基本信息之后,我們可以開始創(chuàng)建我們第一個窗口。Xlib提供數(shù)個函

數(shù)來創(chuàng)建新窗口,其中的一個是XCreateSimpleWindow()。這個函數(shù)或者少量幾個決定窗口的大小和位置

等的參數(shù)。這有一個這些參數(shù)的完整列表:

Display* display
? ? Pointer to the Display structure.
Window parent
? ? The ID of an existing window that should be the parent of the new window.
int x
? ? X Position of the top-left corner of the window (given as number of pixels from the left?

of the screen).
int y
? ? Y Position of the top-left corner of the window (given as number of pixels from the top?

of the screen).
unsigned int width
? ? Width of the new window, in pixels.
unsigned int height
? ? Height of the new window, in pixels.
unsigned int border_width
? ? Width of the window's border, in pixels.
unsigned long border
? ? Color to be used to paint the window's border.
unsigned long background
? ? Color to be used to paint the window's background.

Lets create a simple window, whose width is 1/3 of the screen's width, height is 1/3 of the?

screen's height, background color is white, border color is black, and border width is 2?

pixels. The window will be placed at the top-left corner of the screen.
讓我們創(chuàng)建一個簡單窗口,它的寬是屏幕寬的1/3,高是屏幕高的1/3,背景色是白的,邊框顏色是黑色的

,而且邊框?qū)?象素。窗口將會放置在屏幕的左上角。


/* this variable will store the ID of the newly created window. */
Window win;

/* these variables will store the window's width and height. */
int win_width;
int win_height;

/* these variables will store the window's location. */
int win_x;
int win_y;

/* calculate the window's width and height. */
win_width = DisplayWidth(display, screen_num) / 3;
win_height = DisplayHeight(display, screen_num) / 3;

/* position of the window is top-left corner - 0,0. */
win_x = win_y = 0;

/* create the window, as specified earlier. */
win = XCreateSimpleWindow(display,
? ?? ?? ?? ?? ?? ?? ?? ???RootWindow(display, screen_num),
? ?? ?? ?? ?? ?? ?? ?? ???win_x, win_y,
? ?? ?? ?? ?? ?? ?? ?? ???win_width, win_height,
? ?? ?? ?? ?? ?? ?? ?? ???win_border_width, BlackPixel(display, screen_num),
? ?? ?? ?? ?? ?? ?? ?? ???WhitePixel(display, screen_num));

The fact that we created the window does not mean it will be drawn on screen. By default,?

newly created windows are not mapped on the screen - they are invisible. In order to make?

our window visible, we use the XMapWindow() function, as follows:
我們創(chuàng)造了窗口的事實(shí)并不意味著它會被畫在屏幕上。缺省的,新創(chuàng)建的窗口不會被映射于屏幕之上 -?

它們是不可見的。為了使得我們的窗口可見,我們使用XMapWindow()函數(shù),如下:


XMapWindow(win);

To see all the code we have gathered so far, take a look at the simple-window.c program.?

You'll see two more function not explained so far - XFlush() and XSync(). The XFlush()?

function flushes all pending requests to the X server - much like the fflush() function is?

used to flash standard output. The XSync() function also flushes all pending requests to the?

X server, and then waits until the X server finishes processing these requests. In a normal?

program this will not be necessary (you'll see why when we get to write a normal X program),?

but for now we put it there. Try compiling the program either with or without these function?

calls to see the difference in its behavior.
要看我們至今積累寫出的所有代碼,看看simple-window.c程序。你將看到至今沒有解釋的兩個另外的函

數(shù) - XFlush()和XSync()函數(shù)用來清除仍未發(fā)送給X服務(wù)器的請求 - 很想用來清除標(biāo)準(zhǔn)輸出的fflush()

函數(shù)。XSync()函數(shù)也清除所有仍未發(fā)送給X服務(wù)器的消息,而且等待X服務(wù)器結(jié)束處理所有這些請求。在

一個通常的程序中,這將不會是必要的(你可以看到為什么在我們開始寫一個普通的X程序的時候),但對

于現(xiàn)在我們把它放在那兒。嘗試著有和去掉這些函數(shù)調(diào)用來編譯程序,以觀察它們行為上的不同點(diǎn)。

Drawing In A Window
在窗口中繪圖

Drawing in a window can be done using various graphical functions - drawing pixels, lines,?

circles, rectangles, etc. In order to draw in a window, we first need to define various?

general drawing parameters - what line width to use, which color to draw with, etc. This is?

done using a graphical context (GC).?
在窗口中繪圖能夠通過使用各種圖形函數(shù)來完成 - 畫點(diǎn),線,圓,矩形,等。為了能夠在窗口中繪圖,

我們首先需要定義幾種通用的繪圖參數(shù) - 線寬使用多少的,繪圖的顏色是什么,等。這個是用圖形上下

文(GC)來完成的。

Allocating A Graphics Context (GC)
分配圖形上下文(GC)

As we said, a graphical context defines several attributes to be used with the various?

drawing functions. For this, we define a graphical context. We can use more than one?

graphical context with a single window, in order to draw in multiple styles (different?

colors, different line widths, etc.). Allocating a new GC is done using the XCreateGC()?

function, as follows (in this code fragment, we assume "display" is a pointer to a Display?

structure, and "win" is the ID of a previously created window):
如我所說,圖形上下文給出幾個用于繪圖函數(shù)的屬性。因此,我們定義一個圖形上下文。我們能夠在一個

窗口中使用多余一個的圖形上下文,以達(dá)到用多種風(fēng)格(不同的顏色,線寬,等)繪圖。分配一個新的GC是

通過使用XCreateGC()函數(shù)來完成的,如下(在這個代碼片段中,我們假定“display”是一個只想Display

結(jié)構(gòu)的指針,而起“win”是先前創(chuàng)建的窗口的ID):


/* this variable will contain the handle to the returned graphics context. */
GC gc;

/* these variables are used to specify various attributes for the GC. */
/* initial values for the GC. */
XGCValues values = CapButt | JoinBevel;
/* which values in 'values' to check when creating the GC. */
unsigned long valuemask = GCCapStyle | GCJoinStyle;

/* create a new graphical context. */
gc = XCreateGC(display, win, valuemask, &values);
if (gc < 0) {
? ? fprintf(stderr, "XCreateGC: \n");
}

Note should be taken regarding the roles of "valuemask" and "values". Since a graphics?

context has zillions of attributes, and since often we don't want to define few of them, we?

need to be able to tell the XCreateGC() which attributes we want to set. This is what the?

"valuemask" variable is for. We then use the "values" variable to specify actual values for?

the attributes we defined in the "valuesmask". Thus, for each constant used in "values",?

we'll use the matching constant in "valuesmask". In this case, we defined a graphics context?

with two attributes:
注意“valuesmask”和“values”的角色。因為圖形上下文有n多屬性,并且我們不想定義它們中的一些

,我們需要能夠告訴XCreateGC()哪些屬性是我們想要設(shè)置的。這就是“valuesmask”變量的用處。我們

然后使用“values”變量來指定我們在“valuesmask”中定義的屬性的值。因而,對于每個在“values”

中使用的常量,我們將使用在“valuesmask”中相應(yīng)的常量。在此例中,我們用兩個屬性定義圖形上下文



? ?1. When drawing a multiple-part line, the lines should be joined in a 'Bevelian' style.
? ?2. A line's end-point will be drawn straight (as opposed to ending the line in a round?

shape, if its width is more than 1 pixel wide).?
? ?1、當(dāng)在畫多部分的線的時候,線應(yīng)該以‘Bevelian’風(fēng)格連接起來。
? ?2、線的終點(diǎn)將被直的畫出來(與以圓角結(jié)束線相對,如果它的寬度大于一個象素)。

The rest of the attributes of this GC will be set to their default values.
這個GC的剩余屬性將由它們的缺省值設(shè)定。

Once we created a graphics context, we can use it in drawing functions. We can also modify?

its parameters using various functions. Here are a few examples:
一旦我們創(chuàng)建了一個圖形上下文,我們能夠在繪圖函數(shù)中使用它。我們還能夠各種函數(shù)修改它的參數(shù)。這

兒有幾個例子:


/* change the foreground color of this GC to white. */
XSetForeground(display, gc, WhitePixel(display, screen_num));

/* change the background color of this GC to black. */
XSetBackground(display, gc, BlackPixel(display, screen_num));

/* change the fill style of this GC to 'solid'. */
XSetFillStyle(display, gc, FillSolid);

/* change the line drawing attributes of this GC to the given values. */
/* the parameters are: Display structure, GC, line width (in pixels), */
/* line drawing??style, cap (line's end) drawing style, and lines? ???*/
/* join style.? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ???*/
XSetLineAttributes(display, gc, 2, LineSolid, CapRound, JoinRound);

for complete information on the various attributes available in a graphics context, refer to?

the manual page of XCreateGC(). We will use just a few simple attributes in our tutorial, to?

avoid over-complicating it.
要獲關(guān)于在圖形上下文中有的各種屬性的完整信息,參考XCreateGC()的手冊頁。我們將在我們的教程中

僅僅使用幾個簡單的屬性,以避搞得過度復(fù)雜了。

Drawing Primitives - Point, Line, Box, Circle...
基本繪圖-點(diǎn),線,框,圓...

After we have created a GC, we can draw on a window using this GC, with a set of Xlib?

functions, collectively called "drawing primitives". Without much fuss, lets see how they?

are used. We assume that "gc" is a previously initialized GC, and that 'win' contains the?

handle of a previously created window.
在我們創(chuàng)建了GC之后,我們能夠使用這個GC在窗口上用一套Xlib函數(shù)繪畫了,這些函數(shù)合成為“基本繪圖

函數(shù)”。廢話不多說了,讓我們看看它們是如何使用的吧。我們假定”gc“是先前初始化了的GC,而且‘

win’包含了先前創(chuàng)建的窗口的句柄。

/* draw a pixel at position '5,60' (line 5, column 60) of the given window. */
XDrawPoint(display, win, gc, 5, 5);

/* draw a line between point '20,20' and point '40,100' of the window. */
XDrawLine(display, win, gc, 20, 20, 40, 100);

/* draw an arc whose center is at position 'x,y', its width (if it was a? ???*/
/* full ellipse) is 'w', and height is 'h'. Start the arc at angle 'angle1'??*/
/* (angle 0 is the hour '3' on a clock, and positive numbers go? ?? ?? ?? ???*/
/* counter-clockwise. the angles are in units of 1/64 of a degree (so 360*64 */
/* is 360 degrees).? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ? */
int x = 30, y = 40;
int h = 15, w = 45;
int angle1 = 0, angle2 = 2.109;
XDrawArc(display, win, gc, x-(w/2), y-(h/2), w, h, angle1, angle2);

/* now use the XDrawArc() function to draw a circle whose diameter */
/* is 15 pixels, and whose center is at location '50,100'.? ?? ?? ?*/
XDrawArc(display, win, gc, 50-(15/2), 100-(15/2), 15, 15, 0, 360*64);

/* the XDrawLines() function draws a set of consecutive lines, whose? ???*/
/* edges are given in an array of XPoint structures.? ?? ?? ?? ?? ?? ?? ?*/
/* The following block will draw a triangle. We use a block here, since??*/
/* the C language allows defining new variables only in the beginning of */
/* a block.? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ???*/
??{
? ? /* this array contains the pixels to be used as the line's end-points. */
? ? XPoint points[] = {
? ?? ?{0, 0},
? ?? ?{15, 15},
? ?? ?{0, 15},
? ?? ?{0, 0}
? ? };
? ? /* and this is the number of pixels in the array. The number of drawn */
? ? /* lines will be 'npoints - 1'.? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?*/
? ? int npoints = sizeof(points)/sizeof(XPoint);

? ? /* draw a small triangle at the top-left corner of the window. */
? ? /* the triangle is made of a set of consecutive lines, whose? ?*/
? ? /* end-point pixels are specified in the 'points' array.? ?? ? */
? ? XDrawLines(display, win, gc, points, npoints, CoordModeOrigin);
??}

/* draw a rectangle whose top-left corner is at '120,150', its width is */
/* 50 pixels, and height is 60 pixels.? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ? */
XDrawRectangle(display, win, gc, 120, 150, 50, 60);

/* draw a filled rectangle of the same size as above, to the left of the??*/
/* previous rectangle. note that this rectangle is one pixel smaller than */
/* the previous line, since 'XFillRectangle()' assumes it is filling up? ?*/
/* an already drawn rectangle. This may be used to draw a rectangle using */
/* one color, and later to fill it using another color.? ?? ?? ?? ?? ?? ? */
XFillRectangle(display, win, gc, 60, 150, 50, 60);


Hopefully, you got the point by now. We will mention a few more functions that may be used?

in a similar fashion. For example, XFillArc() takes the same parameters as XDrawArc(), but?

draws only the inside of this arc (like XFillRectangle() does to a rectangle drawn using the?

XDrawRectangle() function). There is also an XFillPolygon() function that fills the inside?

of a polygon. It takes almost the same parameters as XDrawLines(). However, if the last?

point in the array has a different location than the first point in the array, the?

XFillPolygon() function automatically adds another "virtual" lines, connecting these two?

points. Another difference between the two functions, is that XFillPolygon() takes an?

additional parameters, shape, that is used to help the X server optimize its operation. You?

can read about it in your manual pages. There are also plural versions for these functions,?

namely XFillArcs() and XFillRectangles().
但愿你跟上了我的進(jìn)度。我們還將提到更多的一些使用上差不多的函數(shù)。例如,XFillArc()和XDrawArc()

帶有相同的參數(shù),但是只畫出弧的內(nèi)部(像XFillRectangle()函數(shù)所作的和用XDrawRectangle()函數(shù)畫出

的矩形一樣)。還有一個填充多邊形內(nèi)部的XFillPolygon()函數(shù)。它和XDrawLines()基本上有相同的參數(shù)

。然而,如果數(shù)組的最后一個點(diǎn)和第一個點(diǎn)處于不同的位置,XFillPolygon()函數(shù)自動添加一條”

virtual“線,連接這兩個點(diǎn)。兩個函數(shù)的另外一個不同點(diǎn)就是XFillPolygon()帶另外一個參數(shù),shape。

它用來幫助X服務(wù)器優(yōu)化它的行為。你能夠在手冊頁上學(xué)到這些。對于這些函數(shù)還有復(fù)數(shù)版本,名字為

XFillArcs()和XFillRectangles()。

The source code for a program doing these drawings is found in the file simple-drawing.c.
完成這些繪畫的程序的源代碼位于文件simple-drawing.c中。

X Events
X 事件

In an Xlib program, everything is driven by events. Event painting on the screen is?

sometimes done as a response to an event - an "expose" event. If part of a program's window?

that was hidden, gets exposed (e.g. the window was raised above other windows), the X server?

will send an "expose" event to let the program know it should repaint that part of the?

window. User input (key presses, mouse movement, etc.) is also received as a set of events.?
在Xlib程序中,所有的事情都是被事件驅(qū)動的。事件繪圖有時是對事件-一個”暴露的“事件-的反應(yīng)。

如果程序窗口被隱藏的一部分重又暴露了(例如窗口從另外一個窗口后面升上來了),X服務(wù)器將發(fā)送一個

”暴露的“事件讓程序知道它應(yīng)當(dāng)重新畫處窗口的這個部分。用戶輸入(按鍵,鼠標(biāo)移動,等)也是作為一

套事件被接收的。

Registering For Event Types Using Event Masks
使用事件遮罩給事件型別注冊

After a program creates a window (or several windows), it should tell the X server what?

types of events it wishes to receive for this window. By default, no events are sent to the?

program. It may register for various mouse (also called "pointer") events, keyboard events,?

expose events and so on. This is done for optimizing the server-to-client connection (i.e.?

why send a program (that might even be running at the other side of the globe) an event it?

is not interested in?).
在程序創(chuàng)建了一個窗口(或者幾個窗口)之后,它應(yīng)當(dāng)告訴X服務(wù)器它想讓這個窗口接收什么型別的事件。

缺省的,沒有事件發(fā)送給程序。它可能注冊各種鼠標(biāo)(也被稱為”指針“)事件,鍵盤事件,暴露事件等等

。這是用于優(yōu)化服務(wù)器和客戶之間的連接(也就是,為什么要發(fā)送給程序(那可能是運(yùn)行于地球的另外一邊

的)它不感興趣的事件的?)。

In Xlib, we use the XSelectInput() function to register for events. This function accepts 3?

parameters - the display structure, an ID of a window, and a mask of the event types it?

wishes to get. The window ID parameter allows us to register for receiving different types?

of events for different windows. Here is how we register for "expose" events for a window?

whose ID is 'win':
在Xlib中,我們使用XSelectInput()函數(shù)來注冊事件。這個函數(shù)接收3個參數(shù) - display結(jié)構(gòu),窗口的ID

,以及它想要收到的事件型別的遮罩。窗口ID這個參數(shù)使得我們能夠為不同的窗口注冊接收不同型別的事

件。這兒是我們?nèi)绾谓oID為‘win’的窗口注冊”暴露”事件的:


XSelectInput(display, win, ExposureMask);

ExposureMask is a constant defined in the "X.h" header file. If we wanted to register to?

several event types, we can logically "or" them, as follows:
ExposureMask 是定義在頭文件“X.h”中的常量。如果我們想要注冊好幾種事件型別,我們用邏輯或進(jìn)行

連接,如下:


XSelectInput(display, win, ExposureMask | ButtonPressMask);

This registers for "expose" events as well as for mouse button presses inside the given?

window. You should note that a mask may represent several event sub-types.
遮注冊了“暴露”事件以及鼠標(biāo)按鈕在給定窗口按下的事件。你應(yīng)當(dāng)注意到一個遮罩有可能代表了好幾種

事件子型別。

Note: A common bug programmers do is adding code to handle new event types in their program,?

while forgetting to add the masks for these events in the call to XSelectInput(). Such a?

programmer then could sit down for hours debugging his program, wondering "why doesn't my?

program notice that i released the button??", only to find that they registered for button?

press events, but not for button release events.?
注意:一個常見的蹩腳程序員所作的是在它們的程序中添加代碼來處理新的事件型別,而忘記了在調(diào)用

XSelectInput()中添加這些事件的遮罩。這樣的程序員然后坐下來花數(shù)個小時調(diào)試它們的程序,奇怪于“

為什么我的程序沒注意到我釋放鼠標(biāo)??”,最后只是發(fā)現(xiàn)它們忘記了只注冊鼠標(biāo)按下事件,而不是鼠標(biāo)

釋放事件。

Receiving Events - Writing The Events Loop
接收事件-撰寫事件循環(huán)

After we have registered for the event types we are interested in, we need to enter a loop?

of receiving events and handling them. There are various ways to write such a loop, but the?

basic loop looks like this:
在我們?yōu)楦信d趣的事件型別注冊了之后,我們需要進(jìn)入接收事件和處理它們的循環(huán)。有好幾種撰寫這樣的

循環(huán)的辦法,但基本的循環(huán)是這樣的:

/* this structure will contain the event's data, once received. */
XEvent an_event;

/* enter an "endless" loop of handling events. */
while (1) {
? ? XNextEvent(display, &an_event);
? ? switch (an_event.type) {
? ?? ?case Expose:
? ?? ???/* handle this event type... */
? ?? ???.
? ?? ???.
? ?? ???break;
? ?? ?default: /* unknown event type - ignore it. */
? ?? ???break;
? ? }
}

The XNextEvent() function fetches the next event coming from the X server. If no event is?

waiting, it blocks until one is received. When it returns, the event's data is placed in the?

XEvent variable given to the function as the second parameter. After that, the "type" field?

of this variable specifies what type of event we got. Expose is the event type that tells us?

there is a part of the window that needs to be redrawn. After we handle this event, we go?

back and wait for the next event to process. Obviously, we will need to give the user some?

way of terminating the program. This is usually done by handling a special "quit" event, as?

we'll soon see.
XNextEvent()函數(shù)取得從X服務(wù)器發(fā)送來的下一個事件。如果沒有事件在等待,它阻塞在那知道接收到了

一個。當(dāng)它返回了,事件的數(shù)據(jù)被放置給函數(shù)的第二個參數(shù)XEvent變量中。之后,變量的“type”域指定

了我們得到的事件的型別。事件的型別是Expose告訴我們窗口的一部分布需要重畫。在我們處理了事件之

后,我們回過頭來繼續(xù)等待下一個要處理的。明顯,我們需要給用戶某種終止程序的途徑。如我們即將看

到的,這通常是通過處理“quit”事件來完成那個的。

Expose Events
暴露事件

The "expose" event is one of the most basic events an application may receive. It will be?

sent to us in one of several cases:
“暴露”事件是程序可能接收的最基本的事件中的一個。它在一下情況中將發(fā)送給我們:

? ? * A window that covered part of our window has moved away, exposing part (or all) of our?

window.
? ? * Our window was raised above other windows.
? ? * Our window mapped for the first time.
? ? * Our window was de-iconified.?
? ? * 覆蓋我們一部分窗口的窗口被移開了,暴露我們窗口的部分(或者全部)。
? ? * 我們的窗口從其他窗口后面升上來了
? ? * 我們的窗口第一次映射
? ? * 我們的窗口被取消標(biāo)識了。

You should note the implicit assumption hidden here - the contents of our window is lost?

when it is being obscured (covered) by other windows. One may wonder why the X server does?

not save this contents. The answer is - to save memory. After all, the number of windows on?

a display at a given time may be very large, and storing the contents of all of them might?

require a lot of memory (for instance, a 256 color bitmap covering 400 pixels by 400 pixels?

takes 160KB of memory to store. Now think about 20 windows, some much larger than this?

size). Actually, there is a way to tell the X server to store the contents of a window in?

special cases, as we will see later.
你應(yīng)當(dāng)注意背后隱藏的假設(shè) - 我們窗口的內(nèi)容在被其他窗口遮蓋時候丟失了。你可能奇怪X服務(wù)器為什

么不保存這些內(nèi)容。答案是 - 為了節(jié)省內(nèi)存。畢竟,窗口在display上的數(shù)量在給定時間是非常巨大的

,而且保存它們的所有內(nèi)容可能需要很多的內(nèi)存(例如,大小為400*400象素的256色位圖占據(jù)160KB的內(nèi)存

存儲。現(xiàn)在想想20個窗口,比這個數(shù)字要大得多)。事實(shí)上,在特殊情況下有告訴X服務(wù)器保存窗口內(nèi)容的

辦法,我們將在后面看到。

When we get an "expose" event, we should take the event's data from the "xexpose" member of?

the XEvent structure (in our code example we refer to it as "an_event.xexpose"). It contains?

several interesting fields:
當(dāng)我們得到一個“暴露”事件的時候,我們應(yīng)當(dāng)從XEvent結(jié)構(gòu)的"xexpose“成員處取出事件的數(shù)據(jù)(在我

們的代碼例子中用”an_event.xexpose“引用它)。它包含幾個有趣的域:

count
? ? Number of other expose events waiting in the server's events queue. This may be useful?

if we got several expose events in a row - we will usually avoid redrawing the window until?

we get the last of them (i.e. until count is 0).?
? ? 在服務(wù)器中的事件隊列等待的其他暴露事件的數(shù)量。這個可能在我們一次接連得到好幾個的時候有用?

- 我們通常將避免重畫知道我們得到它們的最后一個(也就是知道count為0的時候)。
Window window
? ? The ID of the window this expose event was sent for (in case our application registered?

for events on several windows).?
? ? 暴露事件被發(fā)送的窗口的ID(如果我們的程序在幾個窗口中注冊事件)。
int x, y
? ? The x and y coordinates (in pixels) from the top-left of the window, of the window's?

region that needs to be redrawn.?
? ? 需要重畫的窗口區(qū)域的從窗口左上角開始的x和y坐標(biāo)(象素為單位)。
int width, height
? ? The width and height (in pixels) of the window's region that needs to be redraw.
? ? 需要重畫的窗口區(qū)域的寬和高(象素為單位)。?

In our demo programs, we will tend to ignore the region supplied, and simply re-draw all the?

window. However, this is very inefficient, and we will try to demonstrate some techniques?

for drawing only the relevant section of screen later on.
在我們的演示程序中,我們將傾向于忽略提供的區(qū)域,而僅僅重畫整個屏幕。然而,這是非常沒有效率的

,而且我們將嘗試在后面演示一些僅僅畫出相關(guān)屏幕部分的技術(shù)。

As an example, here is how we will draw a line across our window, whenever we receive?

"expose" events. Assume this 'case' is part of the event loop's switch command.
作為例子,這是我們將如何橫跨我們的窗口畫一條線,每當(dāng)我們接收到”暴露“事件的時候。假設(shè)這個’

case‘是事件循環(huán)switch語句的一部分。


??case Expose:
? ? /* if we have several other expose events waiting, don't redraw. */
? ? /* we will do the redrawing when we receive the last of them.? ? */
? ? if (an_event.xexpose.count > 0)
? ?? ???break;
? ? /* ok, now draw the line... */
? ? XDrawLine(display, win, gc, 0, 100, 400, 100);
? ? break;

Getting User Input
獲得用戶輸入

User input traditionally comes from two sources - the mouse and the keyboard. Various event?

types exist to notify us of user input - a key being pressed on the keyboard, a key being?

released on the keyboard, the mouse moving over our window, the mouse entering (or leaving)?

our window and so on.?
傳統(tǒng)上用戶輸入有兩個來源 - 鼠標(biāo)和鍵盤。存在多種事件型別來通知我們用戶的輸入 - 鍵盤上的按鍵

被按下,在鍵盤上釋放按鍵,鼠標(biāo)移動于我們的窗口之上,鼠標(biāo)進(jìn)入(或者離開)我們的窗口等等。

Mouse Button Click And Release Events
鼠標(biāo)按鈕點(diǎn)擊和釋放事件

The first event type we'll deal with is a mouse button-press (or button release) event in?

our window. In order to register to such an event type, we would add one (or more) of the?

following masks to the event types we specify for the XSelectInput() function:
我們將要處理的第一個事件型別是在我們窗口中鼠標(biāo)按鈕按下(或者按鍵放開)事件。為了注冊這樣的一個

事件,我們將添加一下遮罩中一個(或者更多)來在XSelectInput()函數(shù)中指定事件型別:

ButtonPressMask
? ? Notify us of any button that was pressed in one of our windows.
ButtonReleaseMask
? ? Notify us of any button that was released over one of our windows.

The event types to be checked for in our event-loop switch, are any of the following:

ButtonPress
? ? A button was pressed over one of our windows.
ButtonRelease
? ? A button was released over one of our windows.

The event structure for these event types is accessed as "an_event.xbutton", and contains?

the following interesting fields:
這些事件型別的事件結(jié)構(gòu)是通過"an_event.xbutton“來訪問的,并且包括一下有趣的域:

Window window
? ? The ID of the window this button event was sent for (in case our application registered?

for events on several windows).
? ? 鼠標(biāo)事件發(fā)送給的窗口ID(如果我們的程序在幾個窗口中注冊了事件)。
int x, y
? ? The x and y coordinates (in pixels) from the top-left of the window, of the mouse?

pointer, during the click.
? ? 在點(diǎn)擊時,鼠標(biāo)指針從窗口左上角為原點(diǎn)的x和y坐標(biāo)(象素為單位)。
int button
? ? The number of mouse button that was clicked. May be a value such as Button1, Button2,?

Button3.
? ? 被點(diǎn)擊的鼠標(biāo)按鈕的編號??赡苁窍馚utton1, Button2, Button3這樣的值。
Time time
? ? time (in millisecond) the event took place in. May be used to calculate "double-click"?

situations by an application (e.g. if the mouse button was clicked two times in a duration?

shorter than a given amount, assume this was a double-click).
? ? 事件發(fā)生的時間(毫秒為單位)??赡苡糜谠诔绦蛑杏嬎恪彪p擊“的情況(例如,如果鼠標(biāo)按鈕在小于

給定時間內(nèi)被點(diǎn)擊兩次,就認(rèn)定這個為雙擊)。

As an example, here is how we will draw a black pixel at the mouse position, whenever we?

receive "button press" events, with the 1st mouse button, and erase that pixel (i.e. draw a?

white pixel) when the 2nd mouse button is pressed. We assume the existence of two GCs,?

gc_draw with foreground color set to black, and gc_erase, with foreground color set to?

white.
作為例子,這兒是我們?nèi)绾蚊慨?dāng)接收到”鼠標(biāo)按下“事件時,當(dāng)按下的是第一個鼠標(biāo)按鈕的時候在鼠標(biāo)點(diǎn)

擊位置畫一個黑點(diǎn)的,而是第二個的時候擦除該點(diǎn)(也就是畫個白點(diǎn))。我們假定存在兩個GC,gc_draw設(shè)

置為前景色為黑,而gc_erase前景色為白。
Assume that the following 'case' is part of the event loop's switch command.
假定一下'case’是事件循環(huán)的swtich語句的一部分。

??case ButtonPress:
? ? /* store the mouse button coordinates in 'int' variables. */
? ? /* also store the ID of the window on which the mouse was */
? ? /* pressed.? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ???*/
? ? x = an_event.xbutton.x;
? ? y = an_event.xbutton.y;
? ? the_win = an_event.xbutton.window;

? ? /* check which mouse button was pressed, and act accordingly. */
? ? switch (an_event.xbutton.button) {
? ?? ???case Button1:
? ?? ?? ?? ?/* draw a pixel at the mouse position. */
? ?? ?? ?? ?XDrawPoint(display, the_win, gc_draw, x, y);
? ?? ?? ?? ?break;
? ?? ???case Button2:
? ?? ?? ?? ?/* erase a pixel at the mouse position. */
? ?? ?? ?? ?XDrawPoint(display, the_win, gc_erase, x, y);
? ?? ?? ?? ?break;
? ?? ???default: /* probably 3rd button - just ignore this event. */
? ?? ?? ?? ?break;
? ? }
? ? break;

Mouse Movement Events
鼠標(biāo)移動事件

Similar to mouse button press and release events, we also can be notified of various mouse?

movement events. These can be split into two families. One is of mouse pointer movement?

while no buttons are pressed, and the second is a mouse pointer motion while one (or more)?

of the buttons are pressed (this is sometimes called "a mouse drag operation", or just?

"dragging"). The following event masks may be added in the call to XSelectInput() for our?

application to be notified of such events:
與鼠標(biāo)按下和釋放事件類似,我們也可以得到各種鼠標(biāo)移動事件的通知。這些能夠劃分為兩類。一類是按

鈕沒有被按下時鼠標(biāo)指針的移動,而第二類時當(dāng)一個或者多個按鈕被按下的時候鼠標(biāo)指針的移動(這有時

被稱為“鼠標(biāo)托放操作”,或者僅僅“拖放”)。下面的事件遮罩可以加到XSelectInput()的調(diào)用中以讓

我們的應(yīng)用程序得到這些事件的通知。

PointerMotionMask
? ? Events of the pointer moving in one of the windows controlled by our application, while?

no mouse button is held pressed.
指針移動遮罩
? ? 當(dāng)沒有鼠標(biāo)按鈕被按下時,由程序控制的窗口中的一個的指針移動的事件
ButtonMotionMask
? ? Events of the pointer moving while one (or more) of the mouse buttons is held pressed.
按鈕移動遮罩
? ? 當(dāng)鼠標(biāo)的一個(或者更多)的鼠標(biāo)按鈕被按下的時候指針移動的事件。
Button1MotionMask
? ? Same as ButtonMotionMask, but only when the 1st mouse button is held pressed.
按鈕1移動遮罩
? ? 核按鈕移動遮罩一樣,只不過當(dāng)?shù)谝粋€鼠標(biāo)按鈕被按下的時候。
Button2MotionMask, Button3MotionMask, Button4MotionMask, Button5MotionMask
? ? Likewise, for 2nd mouse button, or 3rd, 4th or 5th.
鼠標(biāo)2移動遮罩,鼠標(biāo)3移動遮罩,鼠標(biāo)4移動遮罩,鼠標(biāo)5移動遮罩
? ? 類似的,用于第二個鼠標(biāo)按鈕,或者第三,第四,第五。

The event types to be checked for in our event-loop switch, are any of the following:
在我們的事件循環(huán)swtich語句中要檢查的事件型別,是以下的任何一個:

MotionNotify
? ? The mouse pointer moved in one of the windows for which we requested to be notified of?

such events.
移動通知
? ? 在我們需要得到這個消息通知的窗口中移動的鼠標(biāo)指針。

The event structure for these event types is accessed as "an_event.xbutton", and contains?

the following interesting fields:
這些事件型別的事件結(jié)構(gòu)是以”an_event.xbutton“來訪問的,并且包含一下有趣的域:

Window window
? ? The ID of the window this mouse motion event was sent for (in case our application?

registered for events on several windows).
? ? 鼠標(biāo)移動事件發(fā)送給的窗口的ID(如果我們的應(yīng)用程序給幾個窗口注冊了事件)。
int x, y
? ? The x and y coordinates (in pixels) from the top-left of the window, of the mouse?

pointer, when the event was generated.
? ? 事件發(fā)生的時候,以窗口的左上角為原點(diǎn)鼠標(biāo)指針?biāo)挥诘膞和y坐標(biāo)(象素為單位)。
unsigned int state
? ? A mask of the buttons (or keys) held down during this event - if any. This field is a?

bitwise OR of any of the following:
? ? 按鈕(或者按鍵)在事件發(fā)生時按下的遮罩 - 如果有的話。改域是以下值的位或:
??# Button1Mask
??# Button2Mask
??# Button3Mask
??# Button4Mask
??# Button5Mask
??# ShiftMask
??# LockMask
??# ControlMask
??# Mod1Mask
??# Mod2Mask
??# Mod3Mask
??# Mod4Mask
??# Mod5Mask
? ? Their names are self explanatory, where the first 5 refer to mouse buttons that are?

being pressed, while the rest refer to various "special keys" that are being pressed (Mod1?

is usually the 'ALT' key or the 'META' key).?
? ? 它們的名字是可以自明的,前五個是指被按下的鼠標(biāo)按鈕,而剩下的指的是被按下的“特殊按鍵”

(Mod1通常是‘ALT’或者‘META’鍵)。
Time time
? ? time (in millisecond) the event took place in.
? ? 事件發(fā)生所處的事件(毫秒為單位)。

As an example, the following code handles a "draw mode" for a painting program, that is, if?

the user moves the mouse while the 1st mouse button is being held down, then we 'draw' on?

the screen. Note that this code has a flow: Since mouse movement may generate many events,?

it might be that we won't get a mouse motion event for each pixel the mouse moved over. Our?

program should be able to cope with such a situation. One way to do that would be to?

remember the last pixel the mouse was dragged over, and draw a line between that position?

and the new mouse pointer position. Assume that the following 'case' is part of the event?

loop's switch command.
作為例子,以下的代碼處理一個繪圖程序的“繪圖模式”,也就是說如果用戶在鼠標(biāo)1鍵按下的時候移動

了,那么我們在屏幕上“繪圖”。注意代碼有一個慣性:因為鼠標(biāo)移動可能產(chǎn)生許多事件,可能我們不會

在每個鼠標(biāo)移到的點(diǎn)都得到鼠標(biāo)移動事件。我們的程序應(yīng)當(dāng)能夠處理這么一個情況。解決的一個辦法可能

是記住鼠標(biāo)托過的上一個點(diǎn),并在和新的鼠標(biāo)指針位置之間畫直線。假定下面的‘case’是事件循環(huán)的

switch語句的一部分。


??case MotionNotify:
? ? /* store the mouse button coordinates in 'int' variables. */
? ? /* also store the ID of the window on which the mouse was */
? ? /* pressed.? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ???*/
? ? x = an_event.xmotion.x;
? ? y = an_event.xmotion.y;
? ? the_win = an_event.xbutton.window;

? ? /* if the 1st mouse button was held during this event, draw a pixel */
? ? /* at the mouse pointer location.? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ???*/
? ? if (an_event.xmotion.state & Button1Mask) {
? ?? ???/* draw a pixel at the mouse position. */
? ?? ???XDrawPoint(display, the_win, gc_draw, x, y);
? ? }
? ? break;

Mouse Pointer Enter And Leave Events
鼠標(biāo)指針進(jìn)入和離開事件

Another type of event that applications might be interested at, is a mouse pointer entering?

a window the program controls, or leaving such a window. Some programs use these events to?

show the user that the application is now in focus. In order to register for such an event?

type, we would add one (or more) of the following masks to the event types we specify for?

the XSelectInput() function:
另一個應(yīng)用程序可能感興趣的事件型別,是鼠標(biāo)指針進(jìn)入或者離開程序控制的窗口。一些程序使用這些事

件來向用戶展示應(yīng)用程序現(xiàn)在在焦點(diǎn)狀態(tài)。為了注冊這么一個事件型別,我們將把下面的一個(或者多個)

遮罩添加到我們給XSelectInput()函數(shù)指定的事件型別中:

EnterWindowMask
? ? Notify us when the mouse pointer enters any of our controlled windows.
? ? 當(dāng)鼠標(biāo)指針進(jìn)入我們控制的任何窗口時通知我們。
LeaveWindowMask
? ? Notify us when the mouse pointer leaves any of our controlled windows.
? ? 當(dāng)鼠標(biāo)指針離開我們控制的任何窗口時通知我們。

The event types to be checked for in our event-loop switch, are any of the following:
要在我們的事件循環(huán)swtich中檢查的事件型別是以下的這些:

EnterNotify
? ? The mouse pointer just entered one of our controlled windows.
? ? 鼠標(biāo)指針剛剛進(jìn)入了我們控制的窗口
LeaveNotify
? ? The mouse pointer just left one of our controlled windows.
? ? 鼠標(biāo)指針剛剛離開了我們控制的窗口

The event structure for these event types is accessed as "an_event.xcrossing", and contains?

the following interesting fields:
這些事件型別的事件結(jié)構(gòu)是通過“an_event.xcrossing"來訪問的,并且包含以下有趣的域:

Window window
? ? The ID of the window this button event was sent for (in case our application registered?

for events on several windows).
? ? 鼠標(biāo)事件發(fā)送給的窗口的ID(如果我們的程序給幾個程序注冊了事件)。
Window subwindow
? ? The ID of the child window from which the mouse entered our window (in an EnterNotify?

event), or into which the mouse pointer has moved (in a LeaveNotify event), or None, if the?

mouse moved from outside our window.
? ? 鼠標(biāo)進(jìn)入到我們的窗口(在EnterNotify事件中),或者鼠標(biāo)指針移出到的子窗口ID(在LeaveNotify事

件中),或者兩者均否,如果鼠標(biāo)從我們的窗口外邊移入。
int x, y
? ? The x and y coordinates (in pixels) from the top-left of the window, of the mouse?

pointer, when the event was generated.
? ? 事件產(chǎn)生的時候,鼠標(biāo)指針以窗口的左上角為原點(diǎn)的x和y坐標(biāo)(象素為單位)。
int mode
? ? The number of mouse button that was clicked. May be a value such as Button1, Button2,?

Button3.
? ? 鼠標(biāo)指針點(diǎn)擊的編號??赡苁侨鏐utton1, Button2, Button3這樣的值。
Time time
? ? time (in millisecond) the event took place in. May be used to calculate "double-click"?

situations by an application (e.g. if the mouse button was clicked two times in a duration?

shorter than a given amount, assume this was a double-click).
? ? 事件發(fā)生的時間(毫秒為單位)??赡苡糜谠诔绦蛑杏嬎恪彪p擊“的情況(例如,如果鼠標(biāo)按鈕在小于

給定時間內(nèi)被點(diǎn)擊兩次,就認(rèn)定這個為雙擊)。
unsigned int state
? ? A mask of the buttons (or keys) held down during this event - if any. This field is a?

bitwise OR of any of the following:
??# Button1Mask
??# Button2Mask
??# Button3Mask
??# Button4Mask
??# Button5Mask
??# ShiftMask
??# LockMask
??# ControlMask
??# Mod1Mask
??# Mod2Mask
??# Mod3Mask
??# Mod4Mask
??# Mod5Mask
? ? Their names are self explanatory, where the first 5 refer to mouse buttons that are?

being pressed, while the rest refer to various "special keys" that are being pressed (Mod1?

is usually the 'ALT' key or the 'META' key).?
Bool focus
? ? Set to True if the window has the keyboard focus, False otherwise.
? ? 如果窗口擁有鍵盤焦點(diǎn),設(shè)置為真。否則反之。

The Keyboard Focus
鍵盤焦點(diǎn)

There may be many windows on a screen, but only a single keyboard attached to them. How does?

the X server then know which window should be sent a given keyboard input? This is done?

using the keyboard focus. Only a single window on the screen may have the keyboard focus at?

a given time. There are Xlib functions that allow a program to set the keyboard focus to a?

given window. The user can usually set the keyboard focus using the window manager (often by?

clicking on the title bar of the desired window). Once our window has the keyboard focus,?

every key press or key release will cause an event to be sent to our program (if it?

registered for these event types...).
屏幕上有許多窗口,但是僅僅有一個鍵盤和他附著。X服務(wù)器如何知道鍵盤輸入是發(fā)送給哪個窗口的呢?

這個是通過鍵盤焦點(diǎn)來完成的。在給定的時間,屏幕上只有一個窗口能夠有鍵盤焦點(diǎn)。存在Xlib函數(shù)來使

得程序給某個窗口設(shè)置鍵盤焦點(diǎn)。用戶通常能夠使用窗口管理器來安排鍵盤焦點(diǎn)(通常是通過點(diǎn)擊所需窗

口的標(biāo)題欄)。一旦我們的窗口擁有了鍵盤焦點(diǎn),每個鍵的按下和放開都將導(dǎo)致事件發(fā)送給我們的程序(如

果它注冊了這些事件類型...)。

Keyboard Press And Release Events
鍵盤按下和釋放事件

If a window controlled by our program currently holds the keyboard focus, it can receive key?

press and key release events. In order to register for such events, any of the following?

masks may be added to the call to XSelectInput():
如果由我們程序控制的窗口當(dāng)前保有鍵盤焦點(diǎn),它能夠接收鍵的按下和釋放事件。為了注冊這些事件,下

面的遮罩要加到XSelectInput()的調(diào)用中去:

KeyPressMask
? ? Notify our program when a key was pressed while any of its controlled windows had the?

keyboard focus.
KeyPressMask
? ? Notify our program when a key was released while any of its controlled windows had the?

keyboard focus.

The event types to be checked for in our event-loop switch, are any of the following:

KeyPress
? ? A key was just pressed on the keyboard while any of our windows had the keyboard focus.
KeyRelease
? ? A key was just released on the keyboard while any of our windows had the keyboard focus.

The event structure for these event types is accessed as "an_event.xkey", and contains the?

following interesting fields:

Window window
? ? The ID of the window this button event was sent for (in case our application registered?

for events on several windows).
unsigned int keycode
? ? The code of the key that was pressed (or released). This is some internal X code, that?

should be translated into a key symbol, as will be explained below.
int x, y
? ? The x and y coordinates (in pixels) from the top-left of the window, of the mouse?

pointer, when the event was generated.
Time time
? ? time (in millisecond) the event took place in. May be used to calculate "double-click"?

situations by an application (e.g. if the mouse button was clicked two times in a duration?

shorter than a given amount, assume this was a double-click).
unsigned int state
? ? A mask of the buttons (or modifier keys) held down during this event - if any. This?

field is a bitwise OR of any of the following:
??# Button1Mask
??# Button2Mask
??# Button3Mask
??# Button4Mask
??# Button5Mask
??# ShiftMask
??# LockMask
??# ControlMask
??# Mod1Mask
??# Mod2Mask
??# Mod3Mask
??# Mod4Mask
??# Mod5Mask
? ? Their names are self explanatory, where the first 5 refer to mouse buttons that are?

being pressed, while the rest refer to various "special keys" that are being pressed (Mod1?

is usually the 'ALT' key or the 'META' key).?

As we mentioned, the key code is rather meaningless on its own, and is affected by the?

specific keyboard device attached to the machine running the X server. To actually use this?

code, we translate it into a key symbol, which is standardized. We may use the?

XKeycodeToKeysym() function to do the translation. This function gets 3 parameters: a?

pointer to the display, the key code to be translated, and an index (we'll supply '0' for?

this parameter). Standard Xlib key codes are found in the include file "X11/keysymdef.h". As?

an example for using the key press events together with the XKeycodeToKeysym function, we'll?

show how to handle key presses of this sort: Pressing '1' will cause painting the pixel?

where the mouse pointer is currently located. Pressing the DEL key will cause to erase that?

pixel (using a 'gc_erase' GC). Pressing any of the letters (a to z, upper case or lower?

case) will cause it to be printed to standard output. Any other key pressed will be ignored.?

Assume that the following 'case' is part of the event loop's switch command.?
如果我們提到過的,按鍵代碼于其本身是相當(dāng)沒有意義的,并且是受到了附著于運(yùn)行X服務(wù)器的機(jī)器的鍵

盤設(shè)備的影響。為了真正使用這些代碼,我們要把他們翻譯為按鍵符號,它們是標(biāo)準(zhǔn)的。我們能用

XKeycodeToKeysym()函數(shù)來完成翻譯工作。這個函數(shù)需要3個參數(shù):只想display的指針,要翻譯的按鍵代

碼,和一個索引(我們將用‘0’來作這個參數(shù))。標(biāo)準(zhǔn)Xl

總結(jié)

以上是生活随笔為你收集整理的用Xlib库进行基本图形编程的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。

1000部夫妻午夜免费 | 亚洲aⅴ无码成人网站国产app | 中文字幕乱码人妻二区三区 | 精品一区二区三区波多野结衣 | 中文字幕人妻无码一夲道 | 国产尤物精品视频 | 丰满妇女强制高潮18xxxx | 日韩av无码一区二区三区不卡 | 欧美熟妇另类久久久久久不卡 | 日本爽爽爽爽爽爽在线观看免 | 国产黑色丝袜在线播放 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 久久zyz资源站无码中文动漫 | 欧美成人高清在线播放 | 亚洲人成网站免费播放 | 亚洲理论电影在线观看 | 自拍偷自拍亚洲精品被多人伦好爽 | 波多野结衣高清一区二区三区 | 人人妻人人澡人人爽欧美一区九九 | 色综合久久久久综合一本到桃花网 | 天天拍夜夜添久久精品大 | 少妇性l交大片欧洲热妇乱xxx | 亚洲精品中文字幕久久久久 | www一区二区www免费 | 人妻中文无码久热丝袜 | 国产激情无码一区二区app | 国产精品无码一区二区三区不卡 | 国产疯狂伦交大片 | 国产精品久久久午夜夜伦鲁鲁 | 性做久久久久久久久 | 在线亚洲高清揄拍自拍一品区 | 天堂在线观看www | 少妇无码一区二区二三区 | 亚洲精品午夜无码电影网 | 精品人妻人人做人人爽夜夜爽 | 日韩人妻无码一区二区三区久久99 | 国产无遮挡又黄又爽免费视频 | 欧美性生交活xxxxxdddd | 97久久国产亚洲精品超碰热 | 久久精品国产一区二区三区肥胖 | 老熟女重囗味hdxx69 | av香港经典三级级 在线 | 日日鲁鲁鲁夜夜爽爽狠狠 | 色一情一乱一伦 | 久激情内射婷内射蜜桃人妖 | 亚洲国产精华液网站w | 人人妻人人澡人人爽精品欧美 | 亚洲精品国偷拍自产在线麻豆 | 乱人伦人妻中文字幕无码久久网 | 国产亚洲日韩欧美另类第八页 | 少妇被黑人到高潮喷出白浆 | 日本一区二区三区免费播放 | 澳门永久av免费网站 | 久久久精品国产sm最大网站 | 国产午夜亚洲精品不卡下载 | 日日橹狠狠爱欧美视频 | 国产精品va在线观看无码 | 国产片av国语在线观看 | 国产又爽又猛又粗的视频a片 | 99久久99久久免费精品蜜桃 | 国内综合精品午夜久久资源 | 内射巨臀欧美在线视频 | 日本爽爽爽爽爽爽在线观看免 | 精品国产精品久久一区免费式 | 四虎影视成人永久免费观看视频 | 大胆欧美熟妇xx | 丁香花在线影院观看在线播放 | 台湾无码一区二区 | 欧美性色19p | 精品国产青草久久久久福利 | 国产69精品久久久久app下载 | 亚洲最大成人网站 | 精品久久久无码中文字幕 | 东京一本一道一二三区 | 国产免费久久精品国产传媒 | 综合网日日天干夜夜久久 | 久久精品女人的天堂av | 2019nv天堂香蕉在线观看 | 亚洲经典千人经典日产 | 国产一精品一av一免费 | 亚洲精品中文字幕乱码 | 无码精品国产va在线观看dvd | 伊人久久大香线焦av综合影院 | 亚洲一区二区三区偷拍女厕 | 亚洲国产欧美在线成人 | 国产精品亚洲综合色区韩国 | 人妻aⅴ无码一区二区三区 | 麻豆精品国产精华精华液好用吗 | 俄罗斯老熟妇色xxxx | 国产精品亚洲一区二区三区喷水 | 久久综合色之久久综合 | 俺去俺来也www色官网 | 精品乱码久久久久久久 | 亚洲男人av天堂午夜在 | 精品偷拍一区二区三区在线看 | 国产精品亚洲五月天高清 | 好屌草这里只有精品 | 日韩av无码一区二区三区不卡 | 欧美xxxxx精品 | 最近的中文字幕在线看视频 | www国产亚洲精品久久网站 | 大乳丰满人妻中文字幕日本 | 久久亚洲精品中文字幕无男同 | 人人妻人人澡人人爽人人精品 | 日产国产精品亚洲系列 | 亚洲熟妇色xxxxx亚洲 | 国产成人无码午夜视频在线观看 | 国产精品嫩草久久久久 | aa片在线观看视频在线播放 | 丁香花在线影院观看在线播放 | 久久天天躁夜夜躁狠狠 | 影音先锋中文字幕无码 | 日本大乳高潮视频在线观看 | 欧美日韩在线亚洲综合国产人 | 欧美性猛交xxxx富婆 | 国产成人无码a区在线观看视频app | 国产人妻精品一区二区三区 | 永久免费观看国产裸体美女 | 亚洲日韩精品欧美一区二区 | 在线欧美精品一区二区三区 | 亚洲日本va中文字幕 | 欧美国产日韩久久mv | 久久精品人妻少妇一区二区三区 | 欧美 日韩 人妻 高清 中文 | 最新版天堂资源中文官网 | 国产成人久久精品流白浆 | 内射巨臀欧美在线视频 | 无码国产乱人伦偷精品视频 | 中文精品无码中文字幕无码专区 | 人人澡人摸人人添 | 青青青爽视频在线观看 | 久久久久99精品国产片 | 久久久久亚洲精品男人的天堂 | 人妻与老人中文字幕 | 人妻无码久久精品人妻 | 亚洲中文字幕久久无码 | 装睡被陌生人摸出水好爽 | 东京一本一道一二三区 | 久久99久久99精品中文字幕 | 欧美精品国产综合久久 | 蜜桃av抽搐高潮一区二区 | 色狠狠av一区二区三区 | 国产av人人夜夜澡人人爽麻豆 | 亚洲一区二区三区 | 色老头在线一区二区三区 | 三上悠亚人妻中文字幕在线 | 国产无遮挡又黄又爽又色 | 亚洲男人av天堂午夜在 | 亚洲色无码一区二区三区 | 久久久久久亚洲精品a片成人 | 成人试看120秒体验区 | 人人妻人人藻人人爽欧美一区 | 激情爆乳一区二区三区 | 中文字幕无码免费久久99 | 亚洲欧美国产精品专区久久 | 久激情内射婷内射蜜桃人妖 | 日产精品高潮呻吟av久久 | 欧美肥老太牲交大战 | 99久久婷婷国产综合精品青草免费 | 欧美野外疯狂做受xxxx高潮 | 激情国产av做激情国产爱 | 色婷婷综合中文久久一本 | 无码一区二区三区在线 | 国产人妻精品午夜福利免费 | 一本精品99久久精品77 | 亚洲人交乣女bbw | 成人试看120秒体验区 | 成人av无码一区二区三区 | 88国产精品欧美一区二区三区 | 久久久www成人免费毛片 | 国产精品毛片一区二区 | 欧美大屁股xxxxhd黑色 | 久久国产精品萌白酱免费 | 中文精品久久久久人妻不卡 | 国产九九九九九九九a片 | 欧美性生交活xxxxxdddd | 免费人成在线观看网站 | 久久天天躁夜夜躁狠狠 | 久久久久av无码免费网 | 中文字幕无码免费久久9一区9 | 久久亚洲中文字幕精品一区 | 国产午夜亚洲精品不卡下载 | 久久亚洲中文字幕精品一区 | 国产亚洲精品久久久ai换 | 精品久久久久久亚洲精品 | 高清无码午夜福利视频 | 99久久精品国产一区二区蜜芽 | 国产乱人伦av在线无码 | 天天拍夜夜添久久精品 | 成人试看120秒体验区 | 97夜夜澡人人爽人人喊中国片 | 国产麻豆精品一区二区三区v视界 | 婷婷综合久久中文字幕蜜桃三电影 | 国产莉萝无码av在线播放 | 高潮喷水的毛片 | 国产精品久久久一区二区三区 | 成人免费视频视频在线观看 免费 | 婷婷丁香六月激情综合啪 | 亚洲欧洲无卡二区视頻 | 欧美人妻一区二区三区 | 国产片av国语在线观看 | 丰满岳乱妇在线观看中字无码 | 人人妻人人澡人人爽欧美一区九九 | 欧美日韩人成综合在线播放 | 97精品国产97久久久久久免费 | 亚洲一区二区三区国产精华液 | 国产疯狂伦交大片 | 少妇人妻偷人精品无码视频 | 高潮毛片无遮挡高清免费 | 欧美高清在线精品一区 | 一区二区三区乱码在线 | 欧洲 | 无码吃奶揉捏奶头高潮视频 | 欧美野外疯狂做受xxxx高潮 | 亚洲の无码国产の无码影院 | 欧美一区二区三区 | 色诱久久久久综合网ywww | 色欲综合久久中文字幕网 | 日欧一片内射va在线影院 | 亚洲码国产精品高潮在线 | 亚洲码国产精品高潮在线 | 国产真实夫妇视频 | 亚洲中文字幕av在天堂 | 国内揄拍国内精品人妻 | 国产另类ts人妖一区二区 | 国产欧美亚洲精品a | 亚洲人成网站免费播放 | 在线观看欧美一区二区三区 | 天堂久久天堂av色综合 | 国产无遮挡吃胸膜奶免费看 | 牲欲强的熟妇农村老妇女 | 99久久婷婷国产综合精品青草免费 | 国产香蕉97碰碰久久人人 | 学生妹亚洲一区二区 | 熟妇人妻无乱码中文字幕 | 激情人妻另类人妻伦 | 亚洲国产成人a精品不卡在线 | 久久久久人妻一区精品色欧美 | 在线观看国产午夜福利片 | 日日麻批免费40分钟无码 | 国产精品国产自线拍免费软件 | 国产在线无码精品电影网 | 国产在线无码精品电影网 | 未满小14洗澡无码视频网站 | 成人无码影片精品久久久 | 国产成人综合色在线观看网站 | 久久亚洲精品成人无码 | 天堂久久天堂av色综合 | 亚洲区欧美区综合区自拍区 | 伊人久久大香线焦av综合影院 | 水蜜桃亚洲一二三四在线 | 无码国产色欲xxxxx视频 | 国产av人人夜夜澡人人爽麻豆 | 国产另类ts人妖一区二区 | 大屁股大乳丰满人妻 | 奇米影视7777久久精品人人爽 | 国产三级久久久精品麻豆三级 | 久久久精品成人免费观看 | 大肉大捧一进一出好爽视频 | 欧美丰满老熟妇xxxxx性 | 日本熟妇浓毛 | 久久精品人人做人人综合 | 精品亚洲成av人在线观看 | 成人欧美一区二区三区黑人免费 | 色婷婷香蕉在线一区二区 | 中文字幕无码乱人伦 | 精品国产国产综合精品 | 又黄又爽又色的视频 | 天堂一区人妻无码 | 国产精品福利视频导航 | 精品成人av一区二区三区 | 精品少妇爆乳无码av无码专区 | 久久国产36精品色熟妇 | 青青久在线视频免费观看 | 人人妻人人澡人人爽人人精品 | 麻豆av传媒蜜桃天美传媒 | 国产精品久久精品三级 | 国产精品亚洲综合色区韩国 | 伊人久久大香线蕉午夜 | 97无码免费人妻超级碰碰夜夜 | 无遮挡国产高潮视频免费观看 | 女人和拘做爰正片视频 | 啦啦啦www在线观看免费视频 | 色一情一乱一伦一视频免费看 | 欧美日韩视频无码一区二区三 | 2019nv天堂香蕉在线观看 | www国产亚洲精品久久网站 | 日韩人妻无码一区二区三区久久99 | 久久综合九色综合欧美狠狠 | 精品久久久久久亚洲精品 | 国产人妻人伦精品1国产丝袜 | 免费无码的av片在线观看 | 久久久久人妻一区精品色欧美 | 性色欲情网站iwww九文堂 | 精品国产精品久久一区免费式 | 久久精品国产精品国产精品污 | 亚洲の无码国产の无码步美 | 亚洲日韩乱码中文无码蜜桃臀网站 | 亚洲性无码av中文字幕 | 久久久久成人精品免费播放动漫 | 99久久亚洲精品无码毛片 | 国产午夜精品一区二区三区嫩草 | 国产精品亚洲专区无码不卡 | 色欲综合久久中文字幕网 | 中文字幕人成乱码熟女app | 国产精品久免费的黄网站 | 国产美女精品一区二区三区 | 亚欧洲精品在线视频免费观看 | 国产手机在线αⅴ片无码观看 | 波多野42部无码喷潮在线 | 在线天堂新版最新版在线8 | 俺去俺来也www色官网 | 无码人妻久久一区二区三区不卡 | 图片区 小说区 区 亚洲五月 | 丰满人妻翻云覆雨呻吟视频 | 又粗又大又硬毛片免费看 | 亚洲の无码国产の无码影院 | 伊人久久大香线蕉av一区二区 | 无码av最新清无码专区吞精 | av香港经典三级级 在线 | 国产精品高潮呻吟av久久 | 人妻无码久久精品人妻 | 亚洲精品国产精品乱码不卡 | 97无码免费人妻超级碰碰夜夜 | 中文字幕av日韩精品一区二区 | 亚洲欧洲中文日韩av乱码 | 香港三级日本三级妇三级 | 欧美性生交活xxxxxdddd | 亚洲精品中文字幕 | 国产情侣作爱视频免费观看 | 欧美丰满老熟妇xxxxx性 | 午夜免费福利小电影 | 一本久道久久综合婷婷五月 | 欧美野外疯狂做受xxxx高潮 | 中文无码精品a∨在线观看不卡 | 亚洲一区二区三区偷拍女厕 | 久久久久国色av免费观看性色 | 最近中文2019字幕第二页 | 日韩av无码一区二区三区不卡 | 无码中文字幕色专区 | 2019午夜福利不卡片在线 | 国内精品久久久久久中文字幕 | 国产精品高潮呻吟av久久4虎 | 东京热一精品无码av | 成年美女黄网站色大免费视频 | 亚洲爆乳精品无码一区二区三区 | av无码久久久久不卡免费网站 | 精品无码国产一区二区三区av | 无码人妻精品一区二区三区下载 | 国产精品人人爽人人做我的可爱 | 思思久久99热只有频精品66 | 亚洲国产欧美日韩精品一区二区三区 | 亚洲成色www久久网站 | 成人三级无码视频在线观看 | 亚洲熟妇色xxxxx欧美老妇y | 无码人妻黑人中文字幕 | 天堂在线观看www | 国产精品丝袜黑色高跟鞋 | 国产成人无码av在线影院 | 蜜桃臀无码内射一区二区三区 | 亚洲国产成人a精品不卡在线 | 国产性生大片免费观看性 | 久久国产精品_国产精品 | 少妇无码av无码专区在线观看 | 久久无码中文字幕免费影院蜜桃 | 久久久精品国产sm最大网站 | 亚洲国产av精品一区二区蜜芽 | 国产成人无码一二三区视频 | 精品人人妻人人澡人人爽人人 | 人人超人人超碰超国产 | 欧美兽交xxxx×视频 | 亚洲乱码中文字幕在线 | 亚洲国产精品美女久久久久 | 天天爽夜夜爽夜夜爽 | 欧美黑人巨大xxxxx | 久久久久久av无码免费看大片 | 国产乱码精品一品二品 | 丰满少妇熟乱xxxxx视频 | 中文字幕无码免费久久9一区9 | 国产成人精品一区二区在线小狼 | 欧美35页视频在线观看 | 久久久久国色av免费观看性色 | 无套内射视频囯产 | 国产精品怡红院永久免费 | 未满成年国产在线观看 | 男女超爽视频免费播放 | 精品日本一区二区三区在线观看 | 日韩少妇内射免费播放 | 亚洲精品久久久久中文第一幕 | 国产乡下妇女做爰 | 亚洲精品久久久久avwww潮水 | 伊人色综合久久天天小片 | 久久99精品久久久久久 | 在线观看国产一区二区三区 | 欧美兽交xxxx×视频 | 国产精品香蕉在线观看 | 99久久人妻精品免费一区 | 国产熟妇高潮叫床视频播放 | 荫蒂添的好舒服视频囗交 | 久久精品人人做人人综合试看 | 天天躁日日躁狠狠躁免费麻豆 | 色欲综合久久中文字幕网 | 少妇久久久久久人妻无码 | 国产精品99爱免费视频 | 久久久精品成人免费观看 | 激情内射日本一区二区三区 | 久久久亚洲欧洲日产国码αv | 国产亚洲日韩欧美另类第八页 | 国产绳艺sm调教室论坛 | 人妻插b视频一区二区三区 | 熟女俱乐部五十路六十路av | 国产莉萝无码av在线播放 | 蜜桃视频插满18在线观看 | 国产 浪潮av性色四虎 | 牲欲强的熟妇农村老妇女 | 男女下面进入的视频免费午夜 | 久久亚洲精品中文字幕无男同 | 亚洲成av人片在线观看无码不卡 | 最新版天堂资源中文官网 | 日日天干夜夜狠狠爱 | 欧洲美熟女乱又伦 | 亚洲一区二区三区含羞草 | 亚洲码国产精品高潮在线 | 在线a亚洲视频播放在线观看 | 国产亚洲精品久久久久久大师 | 亚洲欧美日韩成人高清在线一区 | 色狠狠av一区二区三区 | 久久99精品久久久久久动态图 | 国内丰满熟女出轨videos | 丰满人妻精品国产99aⅴ | 国产精品久久精品三级 | 成年美女黄网站色大免费全看 | 中文字幕无码免费久久9一区9 | 亚洲中文无码av永久不收费 | 久久久久国色av免费观看性色 | 国产人妖乱国产精品人妖 | 日韩人妻系列无码专区 | 无码午夜成人1000部免费视频 | 动漫av一区二区在线观看 | 99在线 | 亚洲 | a国产一区二区免费入口 | 乱人伦人妻中文字幕无码久久网 | 欧美乱妇无乱码大黄a片 | 久久午夜无码鲁丝片午夜精品 | 成人欧美一区二区三区黑人 | 亚洲国产高清在线观看视频 | 一本色道久久综合狠狠躁 | 国产69精品久久久久app下载 | 亚洲熟妇色xxxxx欧美老妇 | 国产麻豆精品精东影业av网站 | 99国产欧美久久久精品 | 国产精品无码永久免费888 | 99久久人妻精品免费一区 | 亚洲日韩中文字幕在线播放 | 免费无码肉片在线观看 | 精品无码国产一区二区三区av | 久久99精品国产麻豆蜜芽 | 无码人妻丰满熟妇区五十路百度 | 亚洲国产日韩a在线播放 | 又紧又大又爽精品一区二区 | 99久久久国产精品无码免费 | 午夜不卡av免费 一本久久a久久精品vr综合 | 在线播放无码字幕亚洲 | 亚洲精品欧美二区三区中文字幕 | 国产9 9在线 | 中文 | 伊人久久大香线蕉午夜 | 国产成人无码专区 | 精品国产精品久久一区免费式 | 1000部夫妻午夜免费 | 熟妇人妻无码xxx视频 | 国产人成高清在线视频99最全资源 | 人妻尝试又大又粗久久 | 天天摸天天碰天天添 | 在线播放无码字幕亚洲 | 两性色午夜视频免费播放 | 在线精品国产一区二区三区 | 精品无码国产自产拍在线观看蜜 | 精品国产av色一区二区深夜久久 | 麻豆av传媒蜜桃天美传媒 | 真人与拘做受免费视频一 | 国产午夜亚洲精品不卡下载 | 成人综合网亚洲伊人 | 无套内谢的新婚少妇国语播放 | 国产熟妇另类久久久久 | 人人澡人人妻人人爽人人蜜桃 | 永久免费精品精品永久-夜色 | 亚洲自偷自偷在线制服 | 国内精品一区二区三区不卡 | 成人精品天堂一区二区三区 | 国产精品丝袜黑色高跟鞋 | 人妻少妇被猛烈进入中文字幕 | 无码乱肉视频免费大全合集 | 无码午夜成人1000部免费视频 | 婷婷丁香六月激情综合啪 | 久久无码中文字幕免费影院蜜桃 | 一本色道婷婷久久欧美 | 亚洲国产av精品一区二区蜜芽 | 亚洲欧美日韩成人高清在线一区 | 国产麻豆精品一区二区三区v视界 | 亚洲乱码国产乱码精品精 | 国产在线无码精品电影网 | 超碰97人人射妻 | 精品国产成人一区二区三区 | 大屁股大乳丰满人妻 | 亚洲色欲色欲欲www在线 | 亚洲综合久久一区二区 | 麻豆蜜桃av蜜臀av色欲av | 精品国产乱码久久久久乱码 | 曰韩少妇内射免费播放 | 国产av人人夜夜澡人人爽麻豆 | 亚洲中文字幕av在天堂 | 天下第一社区视频www日本 | 玩弄少妇高潮ⅹxxxyw | 久久国内精品自在自线 | 1000部啪啪未满十八勿入下载 | 日日夜夜撸啊撸 | a在线观看免费网站大全 | 国产精品亚洲综合色区韩国 | 成年女人永久免费看片 | 青青青手机频在线观看 | 日韩少妇白浆无码系列 | 中文字幕无线码 | 亚洲 激情 小说 另类 欧美 | 亚洲精品一区二区三区在线观看 | 日韩欧美成人免费观看 | 双乳奶水饱满少妇呻吟 | 红桃av一区二区三区在线无码av | 熟女少妇在线视频播放 | 欧美日韩视频无码一区二区三 | 中文字幕色婷婷在线视频 | 精品aⅴ一区二区三区 | 无码乱肉视频免费大全合集 | 丰满少妇高潮惨叫视频 | 九九久久精品国产免费看小说 | 少妇性l交大片欧洲热妇乱xxx | 亚洲日本一区二区三区在线 | 国产免费无码一区二区视频 | 男女猛烈xx00免费视频试看 | 中文字幕无码av波多野吉衣 | 啦啦啦www在线观看免费视频 | 欧美老人巨大xxxx做受 | 性生交大片免费看女人按摩摩 | 国产偷国产偷精品高清尤物 | 国产色精品久久人妻 | 欧美人与禽猛交狂配 | 熟妇人妻无乱码中文字幕 | 欧美丰满熟妇xxxx性ppx人交 | √8天堂资源地址中文在线 | 国内老熟妇对白xxxxhd | 久久久久久久久888 | 国产一区二区三区影院 | 牲欲强的熟妇农村老妇女视频 | 人妻互换免费中文字幕 | 久久精品成人欧美大片 | 日本精品久久久久中文字幕 | 亚欧洲精品在线视频免费观看 | 四虎4hu永久免费 | 亚洲国产一区二区三区在线观看 | 欧美丰满老熟妇xxxxx性 | 久久人妻内射无码一区三区 | 午夜福利电影 | 亚洲精品久久久久avwww潮水 | 蜜桃视频韩日免费播放 | 性史性农村dvd毛片 | 激情内射日本一区二区三区 | 精品成在人线av无码免费看 | 成人亚洲精品久久久久软件 | 99精品视频在线观看免费 | 九一九色国产 | 日韩少妇白浆无码系列 | 色诱久久久久综合网ywww | 欧美人妻一区二区三区 | 亚洲一区二区三区含羞草 | 又大又黄又粗又爽的免费视频 | 又紧又大又爽精品一区二区 | 亚洲人成网站色7799 | 牲欲强的熟妇农村老妇女视频 | 黄网在线观看免费网站 | 少妇高潮一区二区三区99 | 日本高清一区免费中文视频 | 美女黄网站人色视频免费国产 | 97夜夜澡人人爽人人喊中国片 | 亚洲一区二区三区播放 | 高清国产亚洲精品自在久久 | 中文字幕无码人妻少妇免费 | 免费观看的无遮挡av | 亚洲 a v无 码免 费 成 人 a v | 国产成人一区二区三区在线观看 | 久久久国产精品无码免费专区 | 亚洲爆乳大丰满无码专区 | 色五月五月丁香亚洲综合网 | 国产亚洲精品久久久久久大师 | 国产成人综合色在线观看网站 | 成 人 网 站国产免费观看 | 免费乱码人妻系列无码专区 | 欧美性猛交xxxx富婆 | 丰满肥臀大屁股熟妇激情视频 | 99久久久无码国产精品免费 | 免费国产黄网站在线观看 | 国产色xx群视频射精 | 日韩精品乱码av一区二区 | 超碰97人人做人人爱少妇 | 疯狂三人交性欧美 | 亚洲va中文字幕无码久久不卡 | 久久国产精品二国产精品 | 伊人久久大香线蕉av一区二区 | 亚洲色欲色欲天天天www | 国产精品沙发午睡系列 | 狠狠综合久久久久综合网 | 欧美阿v高清资源不卡在线播放 | 理论片87福利理论电影 | 亚洲精品国产a久久久久久 | 欧美熟妇另类久久久久久不卡 | 亚无码乱人伦一区二区 | 国产麻豆精品精东影业av网站 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 久久综合九色综合欧美狠狠 | 蜜臀aⅴ国产精品久久久国产老师 | 狠狠躁日日躁夜夜躁2020 | 香蕉久久久久久av成人 | 亚洲色欲久久久综合网东京热 | 国语精品一区二区三区 | 欧美日韩精品 | 久久99精品国产.久久久久 | 亚洲中文字幕成人无码 | 精品偷自拍另类在线观看 | 久久久久久av无码免费看大片 | 鲁一鲁av2019在线 | 老司机亚洲精品影院 | 日本护士xxxxhd少妇 | 欧美猛少妇色xxxxx | 色窝窝无码一区二区三区色欲 | 亚洲中文字幕在线观看 | 亚洲国产精品久久久久久 | 免费无码av一区二区 | 极品嫩模高潮叫床 | 熟女少妇在线视频播放 | 亚洲第一网站男人都懂 | 久久99国产综合精品 | 欧美35页视频在线观看 | 国产乡下妇女做爰 | 国产精品亚洲а∨无码播放麻豆 | 亚洲第一无码av无码专区 | 国产综合久久久久鬼色 | 免费人成网站视频在线观看 | 国产亚洲精品久久久久久国模美 | 久久亚洲日韩精品一区二区三区 | 日本一卡2卡3卡四卡精品网站 | 少女韩国电视剧在线观看完整 | 88国产精品欧美一区二区三区 | 亚洲一区二区三区播放 | 漂亮人妻洗澡被公强 日日躁 | 中文字幕无码乱人伦 | 国产午夜精品一区二区三区嫩草 | 亚洲国产av精品一区二区蜜芽 | 日本肉体xxxx裸交 | 一个人看的www免费视频在线观看 | 少女韩国电视剧在线观看完整 | 欧美 日韩 亚洲 在线 | 欧美精品无码一区二区三区 | 亚洲一区二区三区 | 色综合久久久久综合一本到桃花网 | 久久久久久av无码免费看大片 | 久久久成人毛片无码 | 扒开双腿疯狂进出爽爽爽视频 | 国产亚洲美女精品久久久2020 | 亚洲日韩乱码中文无码蜜桃臀网站 | 国产午夜福利亚洲第一 | 天堂一区人妻无码 | 一本久道久久综合婷婷五月 | 熟妇人妻无码xxx视频 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 亚洲 高清 成人 动漫 | 成熟女人特级毛片www免费 | 国产麻豆精品精东影业av网站 | 日本一卡二卡不卡视频查询 | 国产人妻精品午夜福利免费 | 99久久99久久免费精品蜜桃 | 真人与拘做受免费视频一 | 日韩欧美成人免费观看 | 午夜精品久久久内射近拍高清 | 兔费看少妇性l交大片免费 | 狠狠色色综合网站 | 国产黑色丝袜在线播放 | 亚洲春色在线视频 | 精品无码一区二区三区爱欲 | 免费网站看v片在线18禁无码 | 成 人影片 免费观看 | 丝袜人妻一区二区三区 | 亚洲一区二区三区无码久久 | 内射爽无广熟女亚洲 | 一本久久伊人热热精品中文字幕 | 精品厕所偷拍各类美女tp嘘嘘 | 综合人妻久久一区二区精品 | 亚洲国产精品美女久久久久 | 日韩无码专区 | 亚洲综合久久一区二区 | 国产明星裸体无码xxxx视频 | 精品无码国产一区二区三区av | 亚洲人成影院在线无码按摩店 | 欧美日本精品一区二区三区 | 一区二区三区乱码在线 | 欧洲 | 国产亚洲精品久久久闺蜜 | 国产精品久久久午夜夜伦鲁鲁 | 一本色道婷婷久久欧美 | 乌克兰少妇性做爰 | 人妻少妇精品久久 | 久久久久久国产精品无码下载 | 久久精品成人欧美大片 | 波多野结衣 黑人 | 久久久久免费看成人影片 | 老熟妇乱子伦牲交视频 | 狠狠躁日日躁夜夜躁2020 | 丰满少妇弄高潮了www | 成熟妇人a片免费看网站 | 久久久久久久人妻无码中文字幕爆 | 精品国产aⅴ无码一区二区 | 在线观看欧美一区二区三区 | 麻花豆传媒剧国产免费mv在线 | 久青草影院在线观看国产 | a国产一区二区免费入口 | 人妻无码久久精品人妻 | www国产亚洲精品久久网站 | 久热国产vs视频在线观看 | 成 人 网 站国产免费观看 | 在线精品国产一区二区三区 | 欧美精品无码一区二区三区 | 在线亚洲高清揄拍自拍一品区 | 精品欧美一区二区三区久久久 | 野狼第一精品社区 | 任你躁国产自任一区二区三区 | 扒开双腿疯狂进出爽爽爽视频 | 少妇性荡欲午夜性开放视频剧场 | 精品无码av一区二区三区 | 内射后入在线观看一区 | 亚洲男人av香蕉爽爽爽爽 | 国产精品人妻一区二区三区四 | 国产精品内射视频免费 | 午夜精品久久久内射近拍高清 | 麻豆精品国产精华精华液好用吗 | 欧美成人午夜精品久久久 | 国产亲子乱弄免费视频 | а√天堂www在线天堂小说 | 国产精品亚洲综合色区韩国 | 亚洲日韩乱码中文无码蜜桃臀网站 | 一个人看的www免费视频在线观看 | 又黄又爽又色的视频 | 人妻少妇精品无码专区二区 | 久久国产自偷自偷免费一区调 | 麻豆精产国品 | 午夜精品久久久久久久 | 蜜臀aⅴ国产精品久久久国产老师 | 日本精品久久久久中文字幕 | 欧美熟妇另类久久久久久不卡 | 秋霞特色aa大片 | 美女毛片一区二区三区四区 | 粉嫩少妇内射浓精videos | 精品国偷自产在线视频 | 中文字幕av无码一区二区三区电影 | 精品久久久久久人妻无码中文字幕 | 欧美真人作爱免费视频 | 亚洲日韩乱码中文无码蜜桃臀网站 | 熟妇人妻激情偷爽文 | 中文字幕人成乱码熟女app | 国产色在线 | 国产 | 久久精品丝袜高跟鞋 | 国产黄在线观看免费观看不卡 | 成人无码精品一区二区三区 | 99久久精品无码一区二区毛片 | 国产av一区二区三区最新精品 | 精品厕所偷拍各类美女tp嘘嘘 | 三上悠亚人妻中文字幕在线 | 偷窥日本少妇撒尿chinese | 久久无码中文字幕免费影院蜜桃 | 国产成人亚洲综合无码 | 高中生自慰www网站 | 鲁鲁鲁爽爽爽在线视频观看 | 午夜熟女插插xx免费视频 | 香港三级日本三级妇三级 | 精品国产青草久久久久福利 | 亚洲日韩av片在线观看 | 少妇无码吹潮 | 日韩亚洲欧美精品综合 | 国产sm调教视频在线观看 | 粉嫩少妇内射浓精videos | 国产乱人无码伦av在线a | 久久精品一区二区三区四区 | 国产97在线 | 亚洲 | 亚洲色欲色欲天天天www | 久久久久久久女国产乱让韩 | 国产精品-区区久久久狼 | 男人扒开女人内裤强吻桶进去 | aa片在线观看视频在线播放 | 女人被爽到呻吟gif动态图视看 | 成人精品视频一区二区 | 欧美乱妇无乱码大黄a片 | 国产精品对白交换视频 | 亚洲熟妇色xxxxx欧美老妇 | 亚洲中文字幕成人无码 | 熟女俱乐部五十路六十路av | 欧美freesex黑人又粗又大 | 国产婷婷色一区二区三区在线 | 久久久久99精品成人片 | 免费男性肉肉影院 | 国产香蕉尹人综合在线观看 | 天天做天天爱天天爽综合网 | 无码人妻久久一区二区三区不卡 | 2019nv天堂香蕉在线观看 | 在线亚洲高清揄拍自拍一品区 | 综合激情五月综合激情五月激情1 | 亚洲人成人无码网www国产 | 亚洲天堂2017无码 | 成人av无码一区二区三区 | 精品久久久中文字幕人妻 | 国产精品对白交换视频 | 中文久久乱码一区二区 | 国产精品igao视频网 | 久精品国产欧美亚洲色aⅴ大片 | 婷婷丁香六月激情综合啪 | 久久久久久久女国产乱让韩 | 亚洲成色www久久网站 | 国产精品无码一区二区桃花视频 | 亚洲精品一区二区三区在线观看 | 最近中文2019字幕第二页 | 西西人体www44rt大胆高清 | 伊人久久大香线蕉午夜 | 亚洲人成网站免费播放 | 精品无码一区二区三区的天堂 | 亚洲男人av天堂午夜在 | 国产精品对白交换视频 | 麻花豆传媒剧国产免费mv在线 | 中文字幕av无码一区二区三区电影 | 国产一精品一av一免费 | 内射巨臀欧美在线视频 | 国产午夜精品一区二区三区嫩草 | 中文字幕人成乱码熟女app | 国产一区二区三区日韩精品 | 久久午夜无码鲁丝片秋霞 | 日韩精品无码一区二区中文字幕 | 少妇人妻偷人精品无码视频 | 亚洲人成影院在线无码按摩店 | 麻豆国产97在线 | 欧洲 | 久热国产vs视频在线观看 | 少妇被黑人到高潮喷出白浆 | www国产精品内射老师 | 国产成人无码av片在线观看不卡 | 婷婷五月综合缴情在线视频 | 成人无码精品一区二区三区 | 在线播放亚洲第一字幕 | 少妇无码一区二区二三区 | 无码人妻出轨黑人中文字幕 | 沈阳熟女露脸对白视频 | 欧美大屁股xxxxhd黑色 | 国产九九九九九九九a片 | 国产精品va在线观看无码 | 无码国内精品人妻少妇 | 亚洲熟女一区二区三区 | 亚洲中文字幕乱码av波多ji | 亚洲の无码国产の无码步美 | 国产在线精品一区二区三区直播 | 欧美freesex黑人又粗又大 | 秋霞特色aa大片 | 最近中文2019字幕第二页 | 特黄特色大片免费播放器图片 | 国产成人精品一区二区在线小狼 | 动漫av一区二区在线观看 | 在线 国产 欧美 亚洲 天堂 | 欧洲熟妇色 欧美 | 无码福利日韩神码福利片 | 捆绑白丝粉色jk震动捧喷白浆 | 国产成人午夜福利在线播放 | 欧美人与动性行为视频 | 亚洲成a人片在线观看无码3d | 爆乳一区二区三区无码 | 成人免费无码大片a毛片 | 久久久久久av无码免费看大片 | 乱人伦人妻中文字幕无码久久网 | 国产成人无码专区 | 天天综合网天天综合色 | 免费无码一区二区三区蜜桃大 | 国产乱人伦av在线无码 | 波多野结衣av一区二区全免费观看 | 久久视频在线观看精品 | 美女张开腿让人桶 | 欧美日韩亚洲国产精品 | 国产色视频一区二区三区 | 国产成人精品无码播放 | 精品午夜福利在线观看 | 国产成人久久精品流白浆 | 亚洲国产精品毛片av不卡在线 | 亚洲熟妇色xxxxx欧美老妇y | 欧洲精品码一区二区三区免费看 | 精品亚洲成av人在线观看 | 高清无码午夜福利视频 | 亚洲欧洲无卡二区视頻 | 婷婷五月综合激情中文字幕 | 强奷人妻日本中文字幕 | 国产一区二区三区四区五区加勒比 | 少妇人妻偷人精品无码视频 | 亚洲色成人中文字幕网站 | 久久综合狠狠综合久久综合88 | 国产精品亚洲а∨无码播放麻豆 | 国产av一区二区三区最新精品 | 日日摸夜夜摸狠狠摸婷婷 | 色诱久久久久综合网ywww | a片在线免费观看 | 日本欧美一区二区三区乱码 | 亚洲日本va中文字幕 | 国产欧美熟妇另类久久久 | 东京无码熟妇人妻av在线网址 | 亚洲国产精品久久久久久 | 国产又爽又黄又刺激的视频 | 亚洲啪av永久无码精品放毛片 | 国产精品国产三级国产专播 | 黑人大群体交免费视频 | 欧洲熟妇精品视频 | 在线播放免费人成毛片乱码 | 亚洲人成影院在线无码按摩店 | 国产亚洲欧美日韩亚洲中文色 | 一本色道婷婷久久欧美 | 亲嘴扒胸摸屁股激烈网站 | 一本久道久久综合狠狠爱 | 国产精品鲁鲁鲁 | 成人精品天堂一区二区三区 | 亚洲国产日韩a在线播放 | 国产乱人伦av在线无码 | 99久久亚洲精品无码毛片 | 日日夜夜撸啊撸 | 熟妇人妻中文av无码 | 色偷偷人人澡人人爽人人模 | 一本久久a久久精品亚洲 | 特级做a爰片毛片免费69 | 色综合天天综合狠狠爱 | 亚洲精品无码国产 | 亚洲熟妇色xxxxx欧美老妇y | 国产亚洲精品久久久久久大师 | 久久国产劲爆∧v内射 | 国产xxx69麻豆国语对白 | 荫蒂被男人添的好舒服爽免费视频 | 国产精品久久久av久久久 | 麻豆国产人妻欲求不满 | 日韩av无码一区二区三区 | 18禁黄网站男男禁片免费观看 | 东北女人啪啪对白 | 国产人妻精品午夜福利免费 | 色婷婷av一区二区三区之红樱桃 | 欧美日韩人成综合在线播放 | 性做久久久久久久免费看 | 老熟妇仑乱视频一区二区 | 亚洲欧美精品伊人久久 | 乱人伦人妻中文字幕无码久久网 | 亚洲中文字幕乱码av波多ji | 人人妻人人澡人人爽精品欧美 | 久久综合色之久久综合 | 国产无套内射久久久国产 | 欧美人妻一区二区三区 | 欧美激情综合亚洲一二区 | 欧美熟妇另类久久久久久多毛 | 国语精品一区二区三区 | 无码人妻黑人中文字幕 | 亚洲成av人在线观看网址 | 西西人体www44rt大胆高清 | 夜夜高潮次次欢爽av女 | 精品无人区无码乱码毛片国产 | 最近免费中文字幕中文高清百度 | a片免费视频在线观看 | 亲嘴扒胸摸屁股激烈网站 | 久久 国产 尿 小便 嘘嘘 | 国产绳艺sm调教室论坛 | 欧美变态另类xxxx | 亚洲 欧美 激情 小说 另类 | 国产人妻精品一区二区三区不卡 | 国产精品无码一区二区三区不卡 | 国产精品久久久久无码av色戒 | 天天做天天爱天天爽综合网 | 女人被男人爽到呻吟的视频 | 少妇高潮一区二区三区99 | 无码精品人妻一区二区三区av | 曰韩少妇内射免费播放 | 精品偷自拍另类在线观看 | av无码电影一区二区三区 | 亚洲精品久久久久中文第一幕 | 日日摸天天摸爽爽狠狠97 | 在线成人www免费观看视频 | 少妇性l交大片欧洲热妇乱xxx | 丝袜人妻一区二区三区 | 久久亚洲中文字幕无码 | 东京热男人av天堂 | 狂野欧美性猛xxxx乱大交 | 国产农村乱对白刺激视频 | 波多野结衣一区二区三区av免费 | 久久久久av无码免费网 | 国产成人精品视频ⅴa片软件竹菊 | 伊在人天堂亚洲香蕉精品区 | 亚洲爆乳精品无码一区二区三区 | 宝宝好涨水快流出来免费视频 | 亚洲高清偷拍一区二区三区 | 日韩 欧美 动漫 国产 制服 | 18精品久久久无码午夜福利 | 国产成人综合在线女婷五月99播放 | 亚洲成av人影院在线观看 | 性欧美videos高清精品 | 在线欧美精品一区二区三区 | 无码人妻黑人中文字幕 | 欧美国产亚洲日韩在线二区 | 色综合久久久无码中文字幕 | а√天堂www在线天堂小说 | 久久精品国产精品国产精品污 | 人人妻人人澡人人爽人人精品 | 亚洲综合无码久久精品综合 | 久久久久免费精品国产 | 欧美老妇交乱视频在线观看 | 老头边吃奶边弄进去呻吟 | 亚洲最大成人网站 | 在线天堂新版最新版在线8 | 高中生自慰www网站 | 成人免费视频在线观看 | 国产精品怡红院永久免费 | 又黄又爽又色的视频 | 综合激情五月综合激情五月激情1 | 国产美女精品一区二区三区 | 国产香蕉尹人综合在线观看 | 人人妻人人澡人人爽人人精品 | 国产小呦泬泬99精品 | 中文字幕乱码中文乱码51精品 | 亚洲中文字幕成人无码 | 国产三级精品三级男人的天堂 | 少妇性荡欲午夜性开放视频剧场 | 人妻少妇精品无码专区二区 | 香港三级日本三级妇三级 | 欧美日韩一区二区免费视频 | 乱码av麻豆丝袜熟女系列 | 日韩人妻无码中文字幕视频 | 久久久久久av无码免费看大片 | 小泽玛莉亚一区二区视频在线 | 亚洲а∨天堂久久精品2021 | 欧美日本免费一区二区三区 | 狠狠躁日日躁夜夜躁2020 | 国产又粗又硬又大爽黄老大爷视 | 十八禁视频网站在线观看 | 99久久人妻精品免费一区 | 亚洲狠狠婷婷综合久久 | 强辱丰满人妻hd中文字幕 | 性色欲网站人妻丰满中文久久不卡 | 丰满少妇女裸体bbw | 熟妇人妻激情偷爽文 | 久久久久久久久888 | 国产午夜福利100集发布 | 色妞www精品免费视频 | √天堂中文官网8在线 | 亚洲a无码综合a国产av中文 | 永久免费观看国产裸体美女 | 西西人体www44rt大胆高清 | 嫩b人妻精品一区二区三区 | 乱人伦人妻中文字幕无码 | 综合人妻久久一区二区精品 | 国产卡一卡二卡三 | 欧美精品无码一区二区三区 | 久久亚洲精品成人无码 | 1000部夫妻午夜免费 | 久久精品国产精品国产精品污 | 丰满人妻一区二区三区免费视频 | 欧美老妇与禽交 | 2020久久香蕉国产线看观看 | 亚洲小说春色综合另类 | 亚洲国产欧美日韩精品一区二区三区 | 人妻中文无码久热丝袜 | 国产极品视觉盛宴 | 99久久久国产精品无码免费 | 国色天香社区在线视频 | 亚洲精品中文字幕乱码 | 狠狠色噜噜狠狠狠7777奇米 | 国产精品美女久久久网av | 国产婷婷色一区二区三区在线 | 久久亚洲中文字幕精品一区 | 精品久久久无码人妻字幂 | 免费无码午夜福利片69 | 色欲综合久久中文字幕网 | a在线观看免费网站大全 | 国产深夜福利视频在线 | 国产精品人妻一区二区三区四 | 日韩精品无码一本二本三本色 | 精品一区二区三区波多野结衣 | 一本色道久久综合亚洲精品不卡 | 青青久在线视频免费观看 | 亚洲 日韩 欧美 成人 在线观看 | 在线精品国产一区二区三区 | 小sao货水好多真紧h无码视频 | 波多野结衣aⅴ在线 | 精品国产一区二区三区四区在线看 | 免费国产黄网站在线观看 | 九月婷婷人人澡人人添人人爽 | 国产亚洲精品久久久久久大师 | 亚洲精品成人福利网站 | 台湾无码一区二区 | 国产精品久久久av久久久 | 国产莉萝无码av在线播放 | 人人妻人人澡人人爽人人精品 | 成人综合网亚洲伊人 | 水蜜桃色314在线观看 | 亚洲成av人影院在线观看 | 亚洲欧美国产精品专区久久 | 日本免费一区二区三区最新 | 乱码午夜-极国产极内射 | 国产精品igao视频网 | 国产精品美女久久久久av爽李琼 | 曰本女人与公拘交酡免费视频 | 麻豆av传媒蜜桃天美传媒 | 国产偷国产偷精品高清尤物 | 又大又硬又黄的免费视频 | 久久 国产 尿 小便 嘘嘘 | 久久精品国产大片免费观看 | 性欧美牲交xxxxx视频 | 丝袜 中出 制服 人妻 美腿 | 性欧美大战久久久久久久 | 国产亚洲精品久久久久久大师 | 国精品人妻无码一区二区三区蜜柚 | 国产成人一区二区三区在线观看 | 无码帝国www无码专区色综合 | 动漫av网站免费观看 | 水蜜桃色314在线观看 | 无码av岛国片在线播放 | 国产av无码专区亚洲a∨毛片 | 中文字幕无码免费久久9一区9 | 亚洲精品一区二区三区在线观看 | 麻豆国产人妻欲求不满谁演的 | 国产精品无码一区二区三区不卡 | 日韩精品久久久肉伦网站 | 99er热精品视频 | 在线观看欧美一区二区三区 | 成在人线av无码免观看麻豆 | 午夜男女很黄的视频 | 大胆欧美熟妇xx | 青春草在线视频免费观看 | 免费看男女做好爽好硬视频 | 免费人成网站视频在线观看 | 少妇愉情理伦片bd | 国产精品无码成人午夜电影 | 国产精品对白交换视频 | 亚洲 欧美 激情 小说 另类 | 特黄特色大片免费播放器图片 | 国产精品99久久精品爆乳 | 色婷婷香蕉在线一区二区 | 精品久久久久久人妻无码中文字幕 | 日日麻批免费40分钟无码 | 欧美性猛交内射兽交老熟妇 | 国产亚洲精品久久久久久久久动漫 | 性开放的女人aaa片 | 日本精品少妇一区二区三区 | 一本久久a久久精品亚洲 | 狂野欧美激情性xxxx | 亚洲乱码日产精品bd | 欧美精品免费观看二区 | 免费人成网站视频在线观看 | 中文字幕无码av波多野吉衣 | 欧美xxxxx精品 | 色五月五月丁香亚洲综合网 | 思思久久99热只有频精品66 | 成人亚洲精品久久久久软件 | 国产精品爱久久久久久久 | 国产精品久久久久久久影院 | 美女极度色诱视频国产 | 久久久久久久人妻无码中文字幕爆 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 亚洲精品中文字幕乱码 | 久久久久免费看成人影片 | 国产av无码专区亚洲a∨毛片 | 国产日产欧产精品精品app | 久久亚洲日韩精品一区二区三区 | 国产在线aaa片一区二区99 | 秋霞特色aa大片 | 日韩精品乱码av一区二区 | 人人澡人人妻人人爽人人蜜桃 | 清纯唯美经典一区二区 | 巨爆乳无码视频在线观看 | √8天堂资源地址中文在线 | 未满小14洗澡无码视频网站 | 天干天干啦夜天干天2017 | 一本久久a久久精品亚洲 | 国产成人无码区免费内射一片色欲 | 国内精品久久毛片一区二区 | 两性色午夜免费视频 | 亚洲小说春色综合另类 | 精品偷拍一区二区三区在线看 | 国产高清av在线播放 | 美女毛片一区二区三区四区 | 久久亚洲中文字幕无码 | 亲嘴扒胸摸屁股激烈网站 | 国产日产欧产精品精品app | 99久久婷婷国产综合精品青草免费 | 精品乱子伦一区二区三区 | 久久久久成人精品免费播放动漫 | 无码一区二区三区在线观看 | 夜夜影院未满十八勿进 | 97无码免费人妻超级碰碰夜夜 | 自拍偷自拍亚洲精品被多人伦好爽 | 午夜成人1000部免费视频 | 成人欧美一区二区三区黑人 | 欧美猛少妇色xxxxx | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 国产超级va在线观看视频 | 亚洲日韩中文字幕在线播放 | 日韩欧美中文字幕公布 | 亚洲国产精品美女久久久久 | 国产午夜精品一区二区三区嫩草 | 国产乱码精品一品二品 | 内射巨臀欧美在线视频 | 小泽玛莉亚一区二区视频在线 | 狠狠色色综合网站 | 强伦人妻一区二区三区视频18 | 在线精品国产一区二区三区 | 国产成人无码av一区二区 | 亚洲中文字幕在线无码一区二区 | 国产乱人偷精品人妻a片 | 国产乱人伦av在线无码 | 欧美国产亚洲日韩在线二区 | 国产亚洲精品久久久久久久久动漫 | 国产精品va在线观看无码 | 大胆欧美熟妇xx | 亚洲第一网站男人都懂 | 国产色xx群视频射精 | 中文字幕乱码人妻无码久久 | 精品国产一区av天美传媒 | 日韩在线不卡免费视频一区 | 无码中文字幕色专区 | 国产真人无遮挡作爱免费视频 | 丰满人妻翻云覆雨呻吟视频 | 天天拍夜夜添久久精品 | 牲欲强的熟妇农村老妇女 | 久青草影院在线观看国产 | 久久久久国色av免费观看性色 | 水蜜桃色314在线观看 | 亚洲中文无码av永久不收费 | 人妻与老人中文字幕 | 久久亚洲中文字幕精品一区 | 青青青手机频在线观看 | 免费中文字幕日韩欧美 | 久久久精品欧美一区二区免费 | 日韩av无码一区二区三区不卡 | 国产精品久久久午夜夜伦鲁鲁 | 中文精品无码中文字幕无码专区 | 少妇高潮一区二区三区99 | 久久亚洲a片com人成 | 亚欧洲精品在线视频免费观看 | 久久久精品欧美一区二区免费 | 无码av中文字幕免费放 | 巨爆乳无码视频在线观看 | 99精品视频在线观看免费 | 国产美女极度色诱视频www | 国产亚洲精品久久久闺蜜 | av无码电影一区二区三区 | 中文字幕无码人妻少妇免费 | 国精品人妻无码一区二区三区蜜柚 | 中文字幕av伊人av无码av | 草草网站影院白丝内射 | 成人aaa片一区国产精品 | 婷婷丁香六月激情综合啪 | 精品人妻av区 | 人妻体内射精一区二区三四 | 亚洲精品久久久久久一区二区 | 国产精品怡红院永久免费 | 人妻与老人中文字幕 | 久久久久久国产精品无码下载 | 亚洲啪av永久无码精品放毛片 | 青春草在线视频免费观看 | 午夜福利一区二区三区在线观看 | 成人aaa片一区国产精品 | 久久久中文久久久无码 | 荫蒂被男人添的好舒服爽免费视频 | 国产欧美精品一区二区三区 | 成熟人妻av无码专区 | 女高中生第一次破苞av | 四十如虎的丰满熟妇啪啪 | 国产97人人超碰caoprom | 国产午夜手机精彩视频 | 无码毛片视频一区二区本码 | 久久99精品国产.久久久久 | 免费无码肉片在线观看 | 乱人伦人妻中文字幕无码久久网 | 国产特级毛片aaaaaa高潮流水 | 国产精品美女久久久 | 国产成人av免费观看 | 成人亚洲精品久久久久软件 | 日本又色又爽又黄的a片18禁 | 夜夜影院未满十八勿进 | 在线观看国产午夜福利片 | 精品一区二区三区无码免费视频 | 日本大乳高潮视频在线观看 | 亚洲男人av天堂午夜在 | 精品欧美一区二区三区久久久 | 人妻天天爽夜夜爽一区二区 | 国产av一区二区三区最新精品 | 无码人妻黑人中文字幕 | 精品无码成人片一区二区98 | 鲁鲁鲁爽爽爽在线视频观看 | 精品夜夜澡人妻无码av蜜桃 | 国产一区二区三区日韩精品 | 久久综合给合久久狠狠狠97色 | 奇米影视888欧美在线观看 | 国产午夜手机精彩视频 | 亚洲gv猛男gv无码男同 | yw尤物av无码国产在线观看 | 欧美午夜特黄aaaaaa片 | 国产亚洲精品久久久久久久 | 日韩在线不卡免费视频一区 | 蜜臀aⅴ国产精品久久久国产老师 | 又黄又爽又色的视频 | 亚洲精品久久久久avwww潮水 | 亚洲人成影院在线观看 | 婷婷丁香六月激情综合啪 | 成人免费视频视频在线观看 免费 | 亚洲人成网站色7799 | 亚洲中文字幕va福利 | 粗大的内捧猛烈进出视频 | 欧美黑人乱大交 | 亚洲日本va午夜在线电影 | 四虎4hu永久免费 | 久久精品人人做人人综合 | 黑人粗大猛烈进出高潮视频 | 无码国内精品人妻少妇 | 人妻少妇精品视频专区 | 少妇激情av一区二区 | 成人精品视频一区二区三区尤物 | 沈阳熟女露脸对白视频 | 东北女人啪啪对白 | 一本色道久久综合亚洲精品不卡 | 亚洲阿v天堂在线 | 中文字幕av无码一区二区三区电影 | 男女性色大片免费网站 | 欧美人妻一区二区三区 | 牲欲强的熟妇农村老妇女 | 亚洲无人区午夜福利码高清完整版 | 欧美人与动性行为视频 | 99久久婷婷国产综合精品青草免费 | 久久综合九色综合97网 | 日日摸天天摸爽爽狠狠97 | 水蜜桃av无码 | 夜先锋av资源网站 | 日韩亚洲欧美精品综合 | 捆绑白丝粉色jk震动捧喷白浆 | 国产色xx群视频射精 | 牲欲强的熟妇农村老妇女 | 国产免费久久久久久无码 | 免费网站看v片在线18禁无码 | 国内精品久久久久久中文字幕 | 人人妻人人澡人人爽欧美精品 | 黑人大群体交免费视频 | 欧美老熟妇乱xxxxx | 国产特级毛片aaaaaa高潮流水 | 女人被男人躁得好爽免费视频 | 人妻少妇被猛烈进入中文字幕 | 国产激情精品一区二区三区 | 色狠狠av一区二区三区 | a国产一区二区免费入口 | 一区二区三区乱码在线 | 欧洲 | 婷婷综合久久中文字幕蜜桃三电影 | 国产综合久久久久鬼色 | 欧美野外疯狂做受xxxx高潮 | 一本久久a久久精品亚洲 | 久久人人爽人人爽人人片ⅴ | 久久亚洲日韩精品一区二区三区 | 国色天香社区在线视频 | 国产成人午夜福利在线播放 | 亚洲综合伊人久久大杳蕉 | 性欧美大战久久久久久久 | 欧美精品无码一区二区三区 | 国产人成高清在线视频99最全资源 | 精品偷自拍另类在线观看 | 亚洲日韩一区二区 | 亚洲国产欧美国产综合一区 | 18精品久久久无码午夜福利 | 国产精品资源一区二区 | 亚洲日韩av片在线观看 | 国产在线精品一区二区高清不卡 | 中文字幕无码日韩欧毛 | 日本大香伊一区二区三区 | 免费国产黄网站在线观看 | 久久久久久久久888 | 国色天香社区在线视频 | 亚洲 日韩 欧美 成人 在线观看 | 国产精品久久久久久久影院 | 久久视频在线观看精品 | 亚洲色偷偷男人的天堂 | 人人妻人人澡人人爽欧美一区九九 | 老熟女乱子伦 | 国产av久久久久精东av | 性生交大片免费看l | 蜜桃无码一区二区三区 | 偷窥村妇洗澡毛毛多 | 狂野欧美性猛xxxx乱大交 | 国产精品无码一区二区三区不卡 | 欧美激情综合亚洲一二区 | 一本久道高清无码视频 | 偷窥村妇洗澡毛毛多 | 玩弄人妻少妇500系列视频 | 婷婷六月久久综合丁香 | 老熟妇乱子伦牲交视频 | 精品人妻中文字幕有码在线 | 人人妻人人澡人人爽精品欧美 | 国产疯狂伦交大片 | 亚洲精品鲁一鲁一区二区三区 | 风流少妇按摩来高潮 | 国产成人亚洲综合无码 | 亚洲综合无码久久精品综合 | 好爽又高潮了毛片免费下载 | 国产va免费精品观看 | 亚洲精品久久久久久一区二区 | 久久五月精品中文字幕 | 成人av无码一区二区三区 | 亚洲综合无码久久精品综合 | 欧美人妻一区二区三区 | 三级4级全黄60分钟 | 久在线观看福利视频 | 亚洲国产精品美女久久久久 | 97无码免费人妻超级碰碰夜夜 | 国产精品沙发午睡系列 | 亚洲成av人在线观看网址 | 国产高潮视频在线观看 | 欧美zoozzooz性欧美 | 成人无码影片精品久久久 | 牲欲强的熟妇农村老妇女视频 | 乌克兰少妇性做爰 | 性生交片免费无码看人 | 激情内射日本一区二区三区 | 中文字幕无码人妻少妇免费 | 99久久精品国产一区二区蜜芽 | 美女毛片一区二区三区四区 | 中文字幕乱码人妻无码久久 | 久久久成人毛片无码 | 亚洲第一网站男人都懂 | 亚洲成a人一区二区三区 | 成人精品天堂一区二区三区 | 国产精品亚洲一区二区三区喷水 | 国产猛烈高潮尖叫视频免费 | 亚洲熟妇色xxxxx欧美老妇 | 性生交大片免费看女人按摩摩 | 亚洲爆乳精品无码一区二区三区 | 亚洲精品国产精品乱码不卡 | 欧美激情一区二区三区成人 | 国产精品亚洲lv粉色 | 夜夜夜高潮夜夜爽夜夜爰爰 | 亚洲欧美日韩综合久久久 | 亚洲综合在线一区二区三区 | 骚片av蜜桃精品一区 | 99久久亚洲精品无码毛片 | 动漫av一区二区在线观看 | 疯狂三人交性欧美 | 无码国内精品人妻少妇 | 亚洲国产精品无码一区二区三区 | 国产成人综合美国十次 | 久久久久成人片免费观看蜜芽 | 人人妻人人澡人人爽精品欧美 | 午夜无码人妻av大片色欲 | 67194成是人免费无码 | 亚洲精品一区二区三区在线 | 永久免费观看美女裸体的网站 | 精品久久久无码人妻字幂 | 国产免费观看黄av片 | 日本大香伊一区二区三区 | 天天av天天av天天透 | 亚洲色www成人永久网址 | 精品久久综合1区2区3区激情 | 国产福利视频一区二区 | 丰满岳乱妇在线观看中字无码 | 巨爆乳无码视频在线观看 | 国产精品人人妻人人爽 | av无码电影一区二区三区 | 性史性农村dvd毛片 | 久久97精品久久久久久久不卡 | 国产乱人无码伦av在线a | 欧洲精品码一区二区三区免费看 | 丰满少妇人妻久久久久久 | 粉嫩少妇内射浓精videos | 国产高清不卡无码视频 | 亚洲乱码国产乱码精品精 | 亚洲乱亚洲乱妇50p | 白嫩日本少妇做爰 | 久久久久99精品成人片 | 狠狠色噜噜狠狠狠7777奇米 | 荫蒂被男人添的好舒服爽免费视频 | 国色天香社区在线视频 | 装睡被陌生人摸出水好爽 | 亲嘴扒胸摸屁股激烈网站 | 国产精品对白交换视频 | 午夜无码人妻av大片色欲 | 成人无码精品1区2区3区免费看 | 高潮喷水的毛片 | 亚洲国产欧美在线成人 | 久久久亚洲欧洲日产国码αv | 丰满少妇熟乱xxxxx视频 | 粗大的内捧猛烈进出视频 | 综合网日日天干夜夜久久 | 性色av无码免费一区二区三区 | 丰满人妻翻云覆雨呻吟视频 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 在线观看国产一区二区三区 | 丰满肥臀大屁股熟妇激情视频 | 久久精品99久久香蕉国产色戒 | 老子影院午夜伦不卡 | 久久天天躁狠狠躁夜夜免费观看 | 一本大道伊人av久久综合 | 亚洲中文字幕无码一久久区 | 在线播放亚洲第一字幕 | 欧美日韩一区二区免费视频 | 久久这里只有精品视频9 | 亚洲经典千人经典日产 | 对白脏话肉麻粗话av | 精品一区二区不卡无码av | 日韩亚洲欧美精品综合 | 免费网站看v片在线18禁无码 | 亚洲综合无码久久精品综合 | 国产成人精品无码播放 | 国产在线精品一区二区三区直播 | 红桃av一区二区三区在线无码av | 久久天天躁狠狠躁夜夜免费观看 | 亚洲精品久久久久中文第一幕 | 大肉大捧一进一出好爽视频 | 无码播放一区二区三区 | 国产超级va在线观看视频 | 亚洲小说春色综合另类 | 99久久婷婷国产综合精品青草免费 | 欧美日韩视频无码一区二区三 | 久久久久亚洲精品男人的天堂 | 日日碰狠狠躁久久躁蜜桃 | 少妇激情av一区二区 | 日本精品少妇一区二区三区 | 国产欧美精品一区二区三区 | v一区无码内射国产 | 久久久久久a亚洲欧洲av冫 | 无码人妻丰满熟妇区毛片18 | 国产成人av免费观看 | 又色又爽又黄的美女裸体网站 | 亚洲七七久久桃花影院 | 少妇性荡欲午夜性开放视频剧场 | 成熟妇人a片免费看网站 | 精品成人av一区二区三区 | 国产又粗又硬又大爽黄老大爷视 | 久久久精品欧美一区二区免费 | 久久这里只有精品视频9 | 强奷人妻日本中文字幕 | 欧美日韩久久久精品a片 | 97无码免费人妻超级碰碰夜夜 | 青春草在线视频免费观看 | 国产电影无码午夜在线播放 | 中文字幕人妻无码一夲道 | 亚洲熟妇色xxxxx欧美老妇 | 国产亲子乱弄免费视频 | 国产精品igao视频网 | 欧美喷潮久久久xxxxx | 久久久久免费精品国产 | 亚洲欧美精品伊人久久 | 亚洲a无码综合a国产av中文 | 精品一区二区不卡无码av | 5858s亚洲色大成网站www | 午夜性刺激在线视频免费 | 玩弄中年熟妇正在播放 | 日韩欧美中文字幕公布 | 亚无码乱人伦一区二区 | 亚洲欧美综合区丁香五月小说 | 特级做a爰片毛片免费69 | 亚洲日韩一区二区 | 小泽玛莉亚一区二区视频在线 | 欧美三级a做爰在线观看 | 丰满诱人的人妻3 | 欧美阿v高清资源不卡在线播放 | 欧美精品在线观看 | 麻花豆传媒剧国产免费mv在线 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 欧美日韩人成综合在线播放 | 色综合久久久久综合一本到桃花网 | 国产亚洲欧美在线专区 | 好男人社区资源 | 久久综合给合久久狠狠狠97色 | 亚洲色www成人永久网址 | 亚洲 欧美 激情 小说 另类 | 国产无遮挡吃胸膜奶免费看 | 午夜丰满少妇性开放视频 | 国产97色在线 | 免 | 男人的天堂2018无码 | 亚洲综合无码一区二区三区 | 内射巨臀欧美在线视频 | 99视频精品全部免费免费观看 | 国产熟妇高潮叫床视频播放 | 日本一本二本三区免费 | 日韩精品一区二区av在线 | 精品成人av一区二区三区 | 蜜桃av抽搐高潮一区二区 | 露脸叫床粗话东北少妇 | 色综合久久久久综合一本到桃花网 | 亚洲春色在线视频 | 色一情一乱一伦一区二区三欧美 | 中文字幕无码免费久久9一区9 | 亚洲成色www久久网站 | 色诱久久久久综合网ywww | 国产片av国语在线观看 | 人妻尝试又大又粗久久 | 欧美性生交活xxxxxdddd | 兔费看少妇性l交大片免费 | 狠狠躁日日躁夜夜躁2020 | 亚洲成熟女人毛毛耸耸多 | 欧美野外疯狂做受xxxx高潮 | 国产精品手机免费 | 又色又爽又黄的美女裸体网站 | 熟妇人妻中文av无码 | 久久久久久a亚洲欧洲av冫 | 波多野结衣乳巨码无在线观看 | 国产成人综合在线女婷五月99播放 | 999久久久国产精品消防器材 | 真人与拘做受免费视频一 | www一区二区www免费 | 亚洲一区二区观看播放 | 日韩精品a片一区二区三区妖精 | 欧美 日韩 亚洲 在线 | 久久久久久国产精品无码下载 | 成人一在线视频日韩国产 | 国产黑色丝袜在线播放 | 久久久中文久久久无码 | 无码午夜成人1000部免费视频 | 日韩av无码一区二区三区不卡 | 丰满人妻被黑人猛烈进入 | 国产热a欧美热a在线视频 | 色综合天天综合狠狠爱 | 国产又爽又黄又刺激的视频 | 性色欲网站人妻丰满中文久久不卡 | 国产亚洲精品久久久久久 | 欧美性生交活xxxxxdddd | 麻豆果冻传媒2021精品传媒一区下载 | 国产精品99久久精品爆乳 | 人妻天天爽夜夜爽一区二区 | 亚洲无人区午夜福利码高清完整版 | 国产精品免费大片 | 色老头在线一区二区三区 | 无码av岛国片在线播放 | 亚洲精品国产a久久久久久 | 又大又硬又黄的免费视频 | 亚洲国产精品久久久天堂 | 色婷婷久久一区二区三区麻豆 | 亚洲精品中文字幕久久久久 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 中文无码精品a∨在线观看不卡 | 麻豆成人精品国产免费 | 无码帝国www无码专区色综合 | 四虎4hu永久免费 | 久久亚洲中文字幕精品一区 | 日韩精品一区二区av在线 | 欧美老人巨大xxxx做受 | 国产一区二区不卡老阿姨 | 狂野欧美激情性xxxx | 亚洲精品成a人在线观看 | 在线 国产 欧美 亚洲 天堂 | 在线观看欧美一区二区三区 | 一个人免费观看的www视频 | 双乳奶水饱满少妇呻吟 | 国产日产欧产精品精品app | 18黄暴禁片在线观看 | 中文字幕日产无线码一区 | 免费看男女做好爽好硬视频 | 综合人妻久久一区二区精品 | 国产精品va在线观看无码 | 日韩精品无码一本二本三本色 | 日韩精品无码免费一区二区三区 | 日日摸日日碰夜夜爽av | 成人欧美一区二区三区黑人免费 | 中文字幕乱码人妻无码久久 | 免费人成网站视频在线观看 | 国产又爽又猛又粗的视频a片 | 无套内谢老熟女 | 国产精品二区一区二区aⅴ污介绍 | 国产麻豆精品一区二区三区v视界 | 四虎国产精品免费久久 | 蜜臀av无码人妻精品 | 亚洲va中文字幕无码久久不卡 | 亚洲综合色区中文字幕 | 少妇激情av一区二区 | 亚洲s码欧洲m码国产av | 一二三四社区在线中文视频 | 成人aaa片一区国产精品 |