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

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

PyQt v4 - Python Bindings for Qt v4 | Документация

發布時間:2023/12/15 python 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 PyQt v4 - Python Bindings for Qt v4 | Документация 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

PyQt v4 - Python Bindings for Qt v4 | Документация

PyQt v4 - Python Bindings for Qt v4

Reference Guide

Contact:Version:Copyright:
info@riverbankcomputing.com
4.4.4
Copyright (c) 2008 Riverbank Computing Limited

Contents

  • 1???Introduction
    • 1.1???License
    • 1.2???PyQt Components
  • 2???Installing PyQt
    • 2.1???Downloading SIP
    • 2.2???Downloading PyQt
    • 2.3???Configuring PyQt
    • 2.4???Building PyQt
  • 3???Signal and Slot Support
    • 3.1???PyQt Signals and Qt Signals
    • 3.2???The PyQt_PyObject Signal Argument Type
    • 3.3???Short-circuit Signals
    • 3.4???PyQt Slots and Qt Slots
    • 3.5???Connecting Signals and Slots
    • 3.6???Emitting Signals
    • 3.7???The QtCore.pyqtSignature() Decorator
      • 3.7.1???Integrating Python and JavaScript in QtWebKit
      • 3.7.2???Using Python Widgets in Qt Designer
      • 3.7.3???Connecting Slots By Name
  • 4???Python Objects and QVariant
  • 5???Support for Pickling
  • 6???Support for Python's Buffer Interface
  • 7???Using PyQt from the Python Shell
  • 8???Using Qt Designer
    • 8.1???Using the Generated Code
    • 8.2???The uic Module
    • 8.3???pyuic4
    • 8.4???Writing Qt Designer Plugins
  • 9???The PyQt Resource System
    • 9.1???pyrcc4
  • 10???Internationalisation of PyQt Applications
    • 10.1???pylupdate4
    • 10.2???Differences Between PyQt and Qt
  • 11???The DBus Support Module
  • 12???Things to be Aware Of
    • 12.1???Python Strings, Qt Strings and Unicode
    • 12.2???Garbage Collection
    • 12.3???Multiple Inheritance
    • 12.4???Access to Protected Member Functions
    • 12.5???None and NULL
    • 12.6???Support for void *
    • 12.7???super and PyQt Classes
  • 13???Deploying Commercial PyQt Applications
  • 14???The PyQt Build System
    • 14.1???pyqtconfig Classes

1???Introduction

This is the reference guide for PyQt 4.4.4. PyQt v4 is a set of
Python bindings for v4 of the Qt application
framework from Trolltech.

There is a separate PyQt API Reference.

Qt is a set of C++ libraries and development tools that includes platform
independent abstractions for graphical user interfaces, networking, threads,
Unicode, regular expressions, SQL databases, SVG, OpenGL, XML, and user and
application settings. PyQt implements 440 of these classes as a set of
Python modules.

PyQt supports the Windows, Linux, UNIX and MacOS/X platforms.

PyQt does not include Qt itself - you must obtain it separately.

The homepage for PyQt is http://www.riverbankcomputing.com/software/pyqt/.
Here you will always find the latest stable version, current development
snapshots, and the latest version of this documentation.

PyQt is built using the SIP bindings generator. SIP must be installed in
order to build and use PyQt.

Earlier versions of Qt are supported by PyQt v3.

1.1???License

Like Qt v4, PyQt is licensed on all platforms under a commercial license, the
GPL v2 and the GPL v3. Your PyQt license must be compatible with your Qt
license. If you use the GPL versions then your own code must also use a
compatible license.

You can purchase a commercial PyQt license here.

1.2???PyQt Components

PyQt comprises a number of different components. First of all there are a
number of Python extension modules. These are all installed in the PyQt4
Python package.

  • The QtCore module. This contains the core non-GUI classes, including
    the event loop and Qt's signal and slot mechanism. It also includes
    platform independent abstractions for Unicode, threads, mapped files,
    shared memory, regular expressions, and user and application settings.
  • The QtGui module. This contains the majority of the GUI classes.
  • The QtHelp module. This contains classes for creating and viewing
    searchable documentation.
  • The QtNetwork module. This module contains classes for writing UDP
    and TCP clients and servers. It includes classes that implement FTP and
    HTTP clients and support DNS lookups.
  • The QtOpenGL module. This module contains classes that enable the
    use of OpenGL in rendering 3D graphics in PyQt applications.
  • The QtScript module. This module contains classes that enable PyQt
    applications to be scripted using Qt's JavaScript interpreter.
  • The QtSql module. This module contains classes that integrate with
    SQL databases. It includes editable data models for database tables that
    can be used with GUI classes. It also includes an implementation of
    SQLite.
  • The QtSvg module. This module contains classes for displaying the
    contents of SVG files.
  • The QtTest module. This module contains functions that enable unit
    testing of PyQt applications. (PyQt does not implement the complete Qt
    unit test framework. Instead it assumes that the standard Python unit
    test framework will be used and implements those functions that simulate
    a user interacting with a GUI.)
  • The QtWebKit module. This module implements a web browser engine
    based on the WebKit open source browser engine.
  • The QtXml module. This module contains classes that implement SAX
    and DOM interfaces to Qt's XML parser.
  • The QtXmlPatterns module. This module contains classes that
    implement XQuery and XPath support for XML and custom data models.
  • The phonon module. This module contains classes that
    implement a cross-platform multimedia framework that enables the use of
    audio and video content in PyQt applications.
  • The QtAssistant module. This module contains classes that allow Qt
    Assistant to be integrated with a PyQt application to provide online
    help.
  • The QtDesigner module. This module contains classes that allow Qt
    Designer to be extended using PyQt. See Writing Qt Designer Plugins
    for a full description of how to do this.
  • The QAxContainer module. This module contains classes that allow
    access to ActiveX controls and COM objects. It is only available in the
    commercial version of PyQt for Windows.
  • The Qt module. This module consolidates the classes contained in all
    of the modules described above into a single module. This has the
    advantage that you don't have to worry about which underlying module
    contains a particular class. It has the disadvantage that it loads the
    whole of the Qt framework, thereby increasing the memory footprint of an
    application. Whether you use this consolidated module, or the individual
    component modules is down to personal taste.
  • The DBus support
    module is installed as dbus.mainloop.qt. PyQt does not support Qt's
    native DBus classes (which are very C++ orientated). Instead the
    dbus.mainloop.qt module provides support for the Qt event loop in the
    same way that the dbus.mainloop.glib included with the standard
    dbus-python bindings package provides support for the GLib event
    loop. The API is described in The DBus Support Module. It is only
    available for PyQt for X11 and only if the dbus-python v0.80 (or
    later) bindings package is installed.
  • The uic module. This module contains classes for handling the
    .ui files created by Qt Designer that describe the whole or part of a
    graphical user interface. It includes classes that load a .ui file
    and render it directly, and classes that generate Python code from a
    .ui file for later execution. It is covered in detail in The uic
    Module.
  • The pyqtconfig module is an extention of the SIP build system and is
    created when PyQt is configured. It encapsulates all the necessary
    information about your Qt installation and makes it easier to write
    installation scripts for bindings built on top of PyQt. It is covered
    in detail in The PyQt Build System.

PyQt also contains a number of utility programs.

  • pyuic4 corresponds to the Qt uic utility. It converts GUIs
    created using Qt Designer to Python code. It is covered in detail in
    pyuic4.
  • pyrcc4 corresponds to the Qt rcc utility. It embeds arbitrary
    resources (eg. icons, images, translation files) described by a resource
    collection file in a Python module. It is covered in detail in
    pyrcc4. (Note It will only be included if your copy of Qt includes
    the XML module.)
  • pylupdate4 corresponds to the Qt lupdate utility. It extracts
    all of the translatable strings from Python code and creates or updates
    .ts translation files. These are then used by Qt Linguist to manage
    the translation of those strings. It is covered in detail in
    pylupdate4. (Note It will only be included if your copy of Qt
    includes the XML module.)

When PyQt is configured a file called PyQt4.api is generated. This can be
used by the QScintilla editor component (at
http://www.riverbankcomputing.com/software/qscintilla/) to enable the use of
auto-completion and call tips when editing PyQt code. The API file is
installed automatically if QScintilla is already installed.

PyQt includes a large number of examples. These are ports to Python of many
of the C++ examples provided with Qt. They can be found in the examples
directory.

Finally, PyQt contains the .sip files used by SIP to generate PyQt
itself. These can be used by developers of bindings of other Qt based class
libraries - for example PyQwt and PyQwt3D.

2???Installing PyQt

2.1???Downloading SIP

SIP must be installed before building and using PyQt. You can get the latest
release of the SIP source code from
http://www.riverbankcomputing.com/software/sip/download.

The SIP documentation can be found at
http://www.riverbankcomputing.com/static/Docs/sip4/sipref.html.

2.2???Downloading PyQt

You can get the latest release of the GPL version of the PyQt source code from
http://www.riverbankcomputing.com/software/pyqt/download.

If you are using the commercial version of PyQt then you should use the
download instructions which were sent to you when you made your purchase. You
must also download your license file.

2.3???Configuring PyQt

After unpacking the source package (either a .tar.gz or a .zip file
depending on your platform) you should then check for any README files
that relate to your platform.

If you are using the commercial version of PyQt then you must copy your
license file to the sip directory.

You need to make sure your environment variables are set properly for your
development environment. For example, if you are using a binary distribution
of Qt on Windows then make sure you have run the qtvars.bat file. For
other platforms it is normally enough to ensure that Qt's bin directory is
on your PATH.

Next you need to configure SIP by executing the configure.py script. For
example:

python configure.py

This assumes that the Python interpreter is on your path. Something like the
following may be appropriate on Windows:

c:\python25\python configure.py

If you have multiple versions of Python installed then make sure you use the
interpreter for which you wish to build PyQt for.

The full set of command line options is:

--versionDisplay the PyQt version number.
-h, --helpDisplay a help message.
--confirm-license
?Using this confirms that you accept the terms of the PyQt license.
-k, --staticThe PyQt modules will be built as static libraries. This is useful when
building a custom interpreter with the PyQt modules built in to the
interpreter.
-r, --traceThe generated PyQt modules contain additional tracing code that is enabled
using SIP's sip.settracemask() function.
-u, --debugThe PyQt modules will be built with debugging symbols. On Windows this
requires that a debug version of Python is installed.
-w, --verboseCompiler commands and any output issued during configuration is displayed
instead of being suppressed. Use this if configure.py is having
problems to see what exactly is going wrong.
-c, --concatenate
?The C++ source files for a Python module will be concatenated. This
results in significantly reduced compilation times. Most, but not all,
C++ compilers can handle the large files that result. It is recommended
that you use this option if you are using GCC v3.x or MSVC v7.x. See also
the --concatenate-split option.
-j N, --concatenate-split=N
?If the --concatenate option is used to concatenate the C++ source files
then this option determines how many files are created. The default is 1.
-g, --consolidate
?Normally each PyQt module (except for the Qt module) is linked against
the corresponding Qt library. This option creates a module called _qt
which is linked against all the required Qt libraries and the other modules
are stub modules that populate their module dictionaries from this one.
This is useful when linking against static Qt libraries to eliminate the
need to distribute the Qt libraries while minimising the memory footprint
of the PyQt modules.
-e MODULE, --enable=MODULE
?Normally checks for all PyQt4 modules are enabled and are built if the
corresponding Qt library can be found. Using this option only those
modules specifically enabled will be checked for and built. The option may
be specified any number of times.
-t PLUGIN, --plugin=PLUGIN
?If Qt has been built as static libraries then the static plugin PLUGIN
will be linked with the appropriate PyQt module. The option may be
specified any number of times.
-q FILE, --qmake=FILE
?Qt's qmake program is used to determine how your Qt installation is
laid out. Normally qmake is found on your PATH. This option can
be used to specify a particular instance of qmake to use. This option
is not available on Windows.
-s DIR, --dbus=DIR
?The dbus-python.h header file of the dbus-python package can be found
in the directory DIR/dbus.
-b DIR, --bindir=DIR
?The pyuic4, pyrcc4 and pylupdate4 utilities will be installed
in the directory DIR.
-d DIR, --destdir=DIR
?The PyQt Python package will be installed in the directory DIR. The
default is the Python installation's site-packages directory. If you
use this option then the PYTHONPATH environment variable must include
DIR.
-p DIR, --plugin-destdir=DIR
?The Qt Designer plugin that manages plugins implemented in Python will be
installed in the designer subdirectory of the directory DIR.
--no-designer-plugin
?The Qt Designer plugin will not be built.
--no-sip-filesThe .sip files for the PyQt modules will not be installed.
-v DIR, --sipdir=DIR
?The .sip files for the PyQt modules will be installed in the directory
DIR.
-i, --vendoridThe checking of signed Python interpreters using the VendorID package is
enabled. See also the --vendorid-incdir and --vendorid-libdir
options and Deploying Commercial PyQt Applications.
-l DIR, --vendorid-incdir=DIR
?The header file of the VendorID package can be found in the directory
DIR.
-m DIR, --vendorid-libdir=DIR
?The library of the VendorID package can be found in the directory DIR.
-a, --qsci-apiThe PyQt4.api QScintilla API file is installed even if QScintilla does
not appear to be installed. This option is implied if the
--qsci-api-destdir option is specified.
--no-qsci-apiThe PyQt4.api QScintilla API file is not installed even if QScintilla
does appear to be installed.
-n DIR, --qsci-api-destdir=DIR
?The QScintilla API file will be installed in the python subdirectory of
the api` subdirectory of the directory ``DIR.

2.4???Building PyQt

The next step is to build PyQt by running your platform's make command.
For example:

make

The final step is to install PyQt by running the following command:

make install

(Depending on your system you may require root or administrator privileges.)

This will install the various PyQt components.

3???Signal and Slot Support

One of the key features of Qt is its use of signals and slots to communicate
between objects. Their use encourages the development of reusable components.

A signal is emitted when a particular event occurs. A slot is a function (in
PyQt a slot is any Python callable). If a signal is connected to a slot
(using the QtCore.QObject.connect() method) then the slot is called when
the signal is emitted. If a signal isn't connected then nothing happens. The
code (or component) that emits the signal does not know or care if the signal
is being used.

A signal may be connected to many slots.

A signal may also be connected to another signal.

A slot may be connected to many signals.

In PyQt signals are emitted using the QtCore.QObject.emit() method.

Connections may be direct (ie. synchronous) or queued (ie. asynchronous).

Connections may be made across threads.

Signals are disconnected using the QtCore.QObject.disconnect() method.

3.1???PyQt Signals and Qt Signals

Qt signals are statically defined as part of a C++ class. They are referenced
using the QtCore.SIGNAL() function. This method takes a single string
argument that is the name of the signal and its C++ signature. For example:

QtCore.SIGNAL("finished(int)")

The returned value is normally passed to the QtCore.QObject.connect()
method.

PyQt allows new signals to be defined dynamically. The act of emitting a
PyQt signal implicitly defines it. PyQt v4 signals are also referenced using
the QtCore.SIGNAL() function.

3.2???The PyQt_PyObject Signal Argument Type

It is possible to pass any Python object as a signal argument by specifying
PyQt_PyObject as the type of the argument in the signature. For example:

QtCore.SIGNAL("finished(PyQt_PyObject)")

While this would normally be used for passing objects like lists and
dictionaries as signal arguments, it can be used for any Python type. Its
advantage when passing, for example, an integer is that the normal conversions
from a Python object to a C++ integer and back again are not required.

The reference count of the object being passed is maintained automatically.
There is no need for the emitter of a signal to keep a reference to the object
after the call to QtCore.QObject.emit(), even if a connection is queued.

3.3???Short-circuit Signals

There is also a special form of a PyQt v4 signal known as a short-circuit
signal. Short-circut signals implicitly declare each argument as being of
type PyQt_PyObject.

Short-circuit signals do not have a list of arguments or the surrounding
parentheses.

Short-circuit signals may only be connected to slots that have been implemented
in Python. They cannot be connected to Qt slots or the Python callables that
wrap Qt slots.

3.4???PyQt Slots and Qt Slots

Qt slots are statically defined as part of a C++ class. They are referenced
using the QtCore.SLOT() function. This method takes a single string
argument that is the name of the slot and its C++ signature. For example:

QtCore.SLOT("done(int)")

The returned value is normally passed to the QtCore.QObject.connect()
method.

PyQt allows any Python callable to be used as a slot, not just Qt slots. This
is done by simply referencing the callable. Because Qt slots are implemented
as class methods they are also available as Python callables. Therefore it is
not usually necessary to use QtCore.SLOT() for Qt slots. However, doing so
is more efficient as it avoids a conversion to Python and back to C++.

Qt allows a signal to be connected to a slot that requires fewer arguments than
the signal passes. The extra arguments are quietly discarded. PyQt slots can
be used in the same way.

Note that when a slot is a Python callable its reference count is not
increased. This means that a class instance can be deleted without having to
explicitly disconnect any signals connected to its methods. However, if a slot
is a lambda function or a partial function then its reference count is
automatically incremented to prevent it from being immediately garbage
collected.

3.5???Connecting Signals and Slots

Connections between signals and slots (and other signals) are made using the
QtCore.QObject.connect() method. For example:

QtCore.QObject.connect(a, QtCore.SIGNAL("QtSig()"), pyFunction) QtCore.QObject.connect(a, QtCore.SIGNAL("QtSig()"), pyClass.pyMethod) QtCore.QObject.connect(a, QtCore.SIGNAL("QtSig()"), b, QtCore.SLOT("QtSlot()")) QtCore.QObject.connect(a, QtCore.SIGNAL("PySig()"), b, QtCore.SLOT("QtSlot()")) QtCore.QObject.connect(a, QtCore.SIGNAL("PySig"), pyFunction)

Disconnecting signals works in exactly the same way using the
QtCore.QObject.disconnect() method. However, not all the variations of
that method are supported by PyQt. Signals must be disconnected one at a
time.

3.6???Emitting Signals

Any instance of a class that is derived from the QtCore.QObject class can
emit a signal using its emit() method. This takes a minimum of one
argument which is the signal. Any other arguments are passed to the connected
slots as the signal arguments. For example:

a.emit(QtCore.SIGNAL("clicked()")) a.emit(QtCore.SIGNAL("pySig"), "Hello", "World")

3.7???The QtCore.pyqtSignature() Decorator

Many of Qt's features make use of its meta-object system. In order to make
use of these features from Python it is sometimes necessary to make certain
Python objects (i.e. QObject sub-classes, properties and methods) appear
as C++ objects. In particular it is sometimes necessary to define a C++
function signature that a Python method emulates. PyQt provides the
QtCore.pyqtSignature() function decorator to do this.

The decorator takes a signature argument and an optional result
argument. Both are strings.

The signature is a comma separated list of C++ types representing each of
the arguments. The list may be enclosed in (). The list may also be
preceeded by a function name. If the name is given then the () must also
be given. If the name is omitted then the name of the Python method being
decorated is used instead.

The result argument is simply the C++ type of the result. If it is omitted
then it is assumed that no result is returned.

For example:

@QtCore.pyqtSignature("") def foo(self):""" C++: void foo() """@QtCore.pyqtSignature("int, char *") def foo(self, arg1, arg2):""" C++: void foo(int, char *) """@QtCore.pyqtSignature("bar(int)") def foo(self, arg1):""" C++: void bar(int) """@QtCore.pyqtSignature("int", result="int") def foo(self, arg1):""" C++: int foo(int) """

Any method of a class that is a sub-class of QObject that is decorated is
defined to Qt's meta-object system as a slot.

The following sections describe the situations that the decorator might be
used.

3.7.1???Integrating Python and JavaScript in QtWebKit

QtWebKit uses slots to expose class methods implemented in C++ as JavaScript
methods that can be called from scripts embedded in HTML. Python class
methods that have been decorated behave in exactly the same way.

In the same way, properties created using QtCore.pyqtProperty() are also
automatically exposed as JavaScript properties.

3.7.2???Using Python Widgets in Qt Designer

Using the decorator is one part of enabling a GUI widget implemented in Python
to be used in Qt Designer in the same way as a widget implemented in C++. See
Writing Qt Designer Plugins for the details.

3.7.3???Connecting Slots By Name

PyQt supports the QtCore.QMetaObject.connectSlotsByName() function that
is most commonly used by pyuic4 generated Python code to automatically
connect signals to slots that conform to a simple naming convention. However,
where a class has overloaded Qt signals (ie. with the same name but with
different arguments) PyQt needs additional information in order to
automatically connect the correct signal.

For example the QtGui.QSpinBox class has the following signals:

void valueChanged(int i); void valueChanged(const QString &text);

When the value of the spin box changes both of these signals will be emitted.
If you have implemented a slot called on_spinbox_valueChanged (which
assumes that you have given the QSpinBox instance the name spinbox)
then it will be connected to both variations of the signal. Therefore, when
the user changes the value, your slot will be called twice - once with an
integer argument, and once with a QString argument.

This also happens with signals that take optional arguments. Qt implements
this using multiple signals. For example, QtGui.QAbstractButton has the
following signal:

void clicked(bool checked = false);

Qt implements this as the following:

void clicked(); void clicked(bool checked);

The decorator can be used to specify which of the signals should be connected
to the slot.

For example, if you were only interested in the integer variant of the signal
then your slot definition would look like the following:

@QtCore.pyqtSignature("int") def on_spinbox_valueChanged(self, i):# i will be an integer.pass

If you wanted to handle both variants of the signal, but with different Python
methods, then your slot definitions might look like the following:

@QtCore.pyqtSignature("on_spinbox_valueChanged(int)") def spinbox_int_value(self, i):# i will be an integer.pass@QtCore.pyqtSignature("on_spinbox_valueChanged(const QString &)") def spinbox_qstring_value(self, qs):# qs will be a QString.pass

The following shows an example using a button when you are not interested in
the optional argument:

@QtCore.pyqtSignature("") def on_button_clicked(self):pass

4???Python Objects and QVariant

Qt uses the QVariant class as a wrapper for any C++ data type. PyQt allows
any Python object to be wrapped as a QVariant and passed around Qt's
meta-object system like any other type.

PyQt will try to convert the Python object to a C++ equivalent if it can so
that the QVariant can be passed to other C++ code that doesn't know what a
Python object is.

PyQt provides the toPyObject() method of QVariant which will convert
the QVariant back to a Python object of the correct type. It will raise a
Python exception if it cannot do so.

5???Support for Pickling

The following PyQt classes may be pickled.

  • QByteArray
  • QChar
  • QColor
  • QDate
  • QDateTime
  • QKeySequence
  • QLatin1Char
  • QLatin1String
  • QLine
  • QLineF
  • QMatrix
  • QPoint
  • QPointF
  • QPolygon
  • QRect
  • QRectF
  • QSize
  • QSizeF
  • QString
  • QTime

Also all named enums (QtCore.Qt.Key for example) may be pickled.

6???Support for Python's Buffer Interface

If SIP v4.7.5 or later is used then any Python object that supports the buffer
interface can be used whenever a char or char * is expected. If the
buffer has multiple segments then all but the first will be ignored.

7???Using PyQt from the Python Shell

PyQt installs an input hook (using PyOS_InputHook) that processes events
when an interactive interpreter is waiting for user input. This means that
you can, for example, create widgets from the Python shell prompt, interact
with them, and still being able to enter other Python commands.

For example, if you enter the following in the Python shell:

>>> from PyQt4 import QtGui >>> a = QtGui.QApplication([]) >>> w = QtGui.QWidget() >>> w.show() >>> w.hide() >>>

The widget would be displayed when w.show() was entered amd hidden as soon
as w.hide() was entered.

The installation of an input hook can cause problems for certain applications
(particularly those that implement a similar feature using different means).
The QtCore module contains the pyqtRemoveInputHook() and
pyqtRestoreInputHook() functions that remove and restore the input hook
respectively.

8???Using Qt Designer

Qt Designer is the Qt tool for designing and building graphical user
interfaces. It allows you to design widgets, dialogs or complete main windows
using on-screen forms and a simple drag-and-drop interface. It has the ability
to preview your designs to ensure they work as you intended, and to allow you
to prototype them with your users, before you have to write any code.

Qt Designer uses XML .ui files to store designs and does not generate any
code itself. Qt includes the uic utility that generates the C++ code that
creates the user interface. Qt also includes the QUiLoader class that
allows an application to load a .ui file and to create the corresponding
user interface dynamically.

PyQt does not wrap the QUiLoader class but instead includes the uic
Python module. Like QUiLoader this module can load .ui files to create
a user interface dynamically. Like the uic utility it can also generate
the Python code that will create the user interface. PyQt's pyuic4
utility is a command line interface to the uic module. Both are described
in detail in the following sections.

8.1???Using the Generated Code

The code that is generated has an identical structure to that generated by Qt's
uic and can be used in the same way.

The code is structured as a single class that is derived from the Python
object type. The name of the class is the name of the toplevel object set
in Designer with Ui_ prepended. (In the C++ version the class is defined
in the Ui namespace.) We refer to this class as the form class.

The class contains a method called setupUi(). This takes a single argument
which is the widget in which the user interface is created. The type of this
argument (typically QDialog, QWidget or QMainWindow) is set in
Designer. We refer to this type as the Qt base class.

In the following examples we assume that a .ui file has been created
containing a dialog and the name of the QDialog object is ImageDialog.
We also assume that the name of the file containing the generated Python code
is ui_imagedialog.py. The generated code can then be used in a number of
ways.

The first example shows the direct approach where we simply create a simple
application to create the dialog:

import sys from PyQt4 import QtGui from ui_imagedialog import Ui_ImageDialogapp = QtGui.QApplication(sys.argv) window = QtGui.QDialog() ui = Ui_ImageDialog() ui.setupUi(window)window.show() sys.exit(app.exec_())

The second example shows the single inheritance approach where we sub-class
QDialog and set up the user interface in the __init__() method:

from PyQt4 import QtCore, QtGui from ui_imagedialog import Ui_ImageDialogclass ImageDialog(QtGui.QDialog):def __init__(self):QtGui.QDialog.__init__(self)# Set up the user interface from Designer.self.ui = Ui_ImageDialog()self.ui.setupUi(self)# Make some local modifications.self.ui.colorDepthCombo.addItem("2 colors (1 bit per pixel)")# Connect up the buttons.self.connect(self.ui.okButton, QtCore.SIGNAL("clicked()"),self, QtCore.SLOT("accept()"))self.connect(self.ui.cancelButton, QtCore.SIGNAL("clicked()"),self, QtCore.SLOT("reject()"))

The third example shows the multiple inheritance approach:

from PyQt4 import QtCore, QtGui from ui_imagedialog import Ui_ImageDialogclass ImageDialog(QtGui.QDialog, Ui_ImageDialog):def __init__(self):QtGui.QDialog.__init__(self)# Set up the user interface from Designer.self.setupUi(self)# Make some local modifications.self.colorDepthCombo.addItem("2 colors (1 bit per pixel)")# Connect up the buttons.self.connect(self.okButton, QtCore.SIGNAL("clicked()"),self, QtCore.SLOT("accept()"))self.connect(self.cancelButton, QtCore.SIGNAL("clicked()"),self, QtCore.SLOT("reject()"))

It is also possible to use the same approach used in PyQt v3. This is shown in
the final example:

from PyQt4 import QtCore, QtGui from ui_imagedialog import ImageDialogclass MyImageDialog(ImageDialog):def __init__(self):ImageDialog.__init__(self)# Make some local modifications.self.colorDepthCombo.addItem("2 colors (1 bit per pixel)")# Connect up the buttons.self.connect(self.okButton, QtCore.SIGNAL("clicked()"),self, QtCore.SLOT("accept()"))self.connect(self.cancelButton, QtCore.SIGNAL("clicked()"),self, QtCore.SLOT("reject()"))

For a full description see the Qt Designer Manual in the Qt Documentation.

8.2???The uic Module

The uic module contains the following functions.

compileUi(uifile, pyfile, execute=False, indent=4, pyqt3_wrapper=False)

This function generates the Python code that will create a user interface
from a Qt Designer .ui file.

uifile is a file name or file-like object containing the .ui file.

pyfile is the file-like object to which the generated Python code will
be written to.

execute is optionally set if a small amount of additional code is to be
generated that will display the user interface if the code is run as a
standalone application.

indent is the optional number of spaces used for indentation in the
generated code. If it is zero then a tab character is used instead.

pyqt3_wrapper is optionally set if a small wrapper is to be generated
that allows the generated code to be used as it is by PyQt v3 applications.

loadUiType(uifile)

This function loads a Qt Designer .ui file and returns a tuple of the
generated form class and the Qt base class. These can then be used to
create any number of instances of the user interface without having to
parse the .ui file more than once.

uifile is a file name or file-like object containing the .ui file.

loadUi(uifile, baseinstance=None)

This function loads a Qt Designer .ui file and returns an instance of
the user interface.

uifile is a file name or file-like object containing the .ui file.

baseinstance is an optional instance of the Qt base class. If
specified then the user interface is created in it. Otherwise a new
instance of the base class is automatically created.

8.3???pyuic4

The pyuic4 utility is a command line interface to the uic module. The
command has the following syntax:

pyuic4 [options] .ui-file

The full set of command line options is:

-h, --helpA help message is written to stdout.
--versionThe version number is written to stdout.
-i N, --indent=N
?The Python code is generated using an indentation of N
spaces. If N is 0 then a tab is used. The default is
4.
-o FILE, --output=FILE
?The Python code generated is written to the file FILE.
-p, --previewThe GUI is created dynamically and displayed. No
Python code is generated.
-w, --pyqt3-wrapper
?The generated Python code includes a small wrapper that
allows the GUI to be used in the same way as it is used
in PyQt v3.
-x, --executeThe generated Python code includes a small amount of
additional code that creates and displays the GUI when
it is executes as a standalone application.

8.4???Writing Qt Designer Plugins

Qt Designer can be extended by writing plugins. Normally this is done using
C++ but PyQt also allows you to write plugins in Python. Most of the time a
plugin is used to expose a custom widget to Designer so that it appears in
Designer's widget box just like any other widget. It is possibe to change the
widget's properties and to connect its signals and slots.

It is also possible to add new functionality to Designer. See the Qt
documentation for the full details. Here we will concentrate on describing
how to write custom widgets in Python.

The process of integrating Python custom widgets with Designer is very similar
to that used with widget written using C++. However, there are particular
issues that have to be addressed.

  • Designer needs to have a C++ plugin that conforms to the interface
    defined by the QDesignerCustomWidgetInterface class. (If the plugin
    exposes more than one custom widget then it must conform to the
    interface defined by the QDesignerCustomWidgetCollectionInterface
    class.) In addition the plugin class must sub-class QObject as well
    as the interface class. PyQt does not allow Python classes to be
    sub-classed from more than one Qt class.
  • Designer can only connect Qt signals and slots. It has no understanding
    of Python signals or callables.
  • Designer can only edit Qt properties that represent C++ types. It has no
    understanding of Python attributes or Python types.

PyQt provides the following components and features to resolve these issues as
simply as possible.

  • PyQt's QtDesigner module includes additional classes (all of which have a
    QPy prefix) that are already sub-classed from the necessary Qt
    classes. This avoids the need to sub-class from more than one Qt class
    in Python. For example, where a C++ custom widget plugin would sub-class
    from QObject and QDesignerCustomWidgetInterface, a Python custom
    widget plugin would instead sub-class from
    QPyDesignerCustomWidgetPlugin.

  • PyQt installs a C++ plugin in Designer's plugin directory. It conforms
    to the interface defined by the
    QDesignerCustomWidgetCollectionInterface class. It searches a
    configurable set of directories looking for Python plugins that
    implement a class sub-classed from QPyDesignerCustomWidgetPlugin.
    Each class that is found is instantiated and the instance created is
    added to the custom widget collection.

    The PYQTDESIGNERPATH environment variable specifies the set of
    directories to search for plugins. Directory names are separated by a
    path separator (a semi-colon on Windows and a colon on other platforms).
    If a directory name is empty (ie. there are consecutive path separators
    or a leading or trailing path separator) then a set of default
    directories is automatically inserted at that point. The default
    directories are the python subdirectory of each directory that
    Designer searches for its own plugins. If the environment variable is
    not set then only the default directories are searched. If a file's
    basename does not end with plugin then it is ignored.

  • A Python custom widget may define new Qt signals using the
    __pyqtSignals__ class attribute. This should define a sequence of
    strings each of which is the C++ signature (but excluding the return
    type) of the signal. For example:

    __pyqtSignals__ = ("nameChanged(const QString &)", "failed()")
  • A Python class method may be defined as a new Qt slot by using the
    QtCore.pyqtSignature decorator. For example:

    # Define a Qt slot that takes a C++ integer argument. @QtCore.pyqtSignature("addToTotal(int)") def add_int_to_total(self, value):pass# Define a similar slot that takes its name from the method. @QtCore.pyqtSignature("int") def addToTotal(self, value):pass
  • A new Qt property may be defined using the QtCore.pyqtProperty()
    function. It is used in the same way as the standard Python
    property() function. In fact, Qt properties defined in this way
    also behave as Python properties. The full signature of the function is
    as follows:

    pyqtProperty(type, fget=None, fset=None, freset=None, fdel=None, doc=None, designable=True, scriptable=True, stored=True, user=False)

    type is a string that defines the C++ type of the property.
    freset is a function used to reset the value of the property to its
    default value.
    designable sets the Qt DESIGNABLE flag.
    scriptable sets the Qt SCRIPTABLE flag.
    stored sets the Qt STORED flag.
    user sets the Qt USER flag.

    The remaining arguments are the same as those used by the standard
    property() function.

    Qt makes no use of the fdel function and Python makes no use of the
    freset function, or the designable, scriptable, stored
    and user flags.

Note that the ability to define new Qt signals, slots and properties from
Python is potentially useful to plugins conforming to any plugin interface and
not just that used by Designer.

For a simple but complete and fully documented example of a custom widget that
defines new Qt signals, slots and properties, and its plugin, look in the
examples/designer/plugins directory of the PyQt source package. The
widgets subdirectory contains the pydemo.py custom widget and the
python subdirectory contains its pydemoplugin.py plugin.

9???The PyQt Resource System

PyQt supports Qt's resource system. This is a facility for embedding
resources such as icons and translation files in an application. This makes
the packaging and distribution of those resources much easier.

A .qrc resource collection file is an XML file used to specify which
resource files are to be embedded. The application then refers to the resource
files by their original names but preceded by a colon.

For a full description, including the format of the .qrc files, see the Qt
Resource System in the Qt documentation.

9.1???pyrcc4

pyrcc4 is PyQt's equivalent to Qt's rcc utility and is used in exactly
the same way. pyrcc4 reads the .qrc file, and the resource files, and
generates a Python module that only needs to be import ed by the
application in order for those resources to be made available just as if they
were the original files.

pyrcc4 will only be included if your copy of Qt includes the XML module.

10???Internationalisation of PyQt Applications

PyQt and Qt include a comprehensive set of tools for translating applications
into local languages. For a full description, see the Qt Linguist Manual in
the Qt documentation.

The process of internationalising an application comprises the following
steps.

  • The programmer uses pylupdate4 to create or update a .ts
    translation file for each language that the application is to be
    translated into. A .ts file is an XML file that contains the strings
    to be translated and the corresponding translations that have already
    been made. pylupdate4 can be run any number of times during
    development to update the .ts files with the latest strings for
    translation.
  • The translator uses Qt Linguist to update the .ts files with
    translations of the strings.
  • The release manager then uses Qt's lrelease utility to convert the
    .ts files to .qm files which are compact binary equivalents used
    by the application. If an application cannot find an appropriate .qm
    file, or a particular string hasn't been translated, then the strings
    used in the original source code are used instead.
  • The release manage may optionally use pyrcc4 to embed the .qm
    files, along with other application resources such as icons, in a Python
    module. This may make packaging and distribution of the application
    easier.

10.1???pylupdate4

pylupdate4 is PyQt's equivalent to Qt's lupdate utility and is used in
exactly the same way. A Qt .pro project file is read that specifies the
Python source files and Qt Designer interface files from which the text that
needs to be translated is extracted. The .pro file also specifies the
.ts translation files that pylupdate4 updates (or creates if necessary)
and are subsequently used by Qt Linguist.

pylupdate4 will only be included if your copy of Qt includes the XML module.

10.2???Differences Between PyQt and Qt

Qt implements internationalisation support through the QTranslator class,
and the QCoreApplication::translate(), QObject::tr() and
QObject::trUtf8() methods. Usually the tr() method is used to obtain
the correct translation of a message. The translation process uses a message
context to allow the same message to be translated differently. tr() is
actually generated by moc and uses the hardcoded class name as the context.
On the other hand, QApplication::translate() allows the context to be
explicitly stated.

Unfortunately, because of the way Qt implements tr() (and trUtf8()) it
is not possible for PyQt to exactly reproduce its behaviour. The PyQt
implementation of tr() (and trUtf8()) uses the class name of the
instance as the context. The key difference, and the source of potential
problems, is that the context is determined dynamically in PyQt, but is
hardcoded in Qt. In other words, the context of a translation may change
depending on an instance's class hierarchy. For example:

class A(QtCore.QObject):def hello(self):return self.tr("Hello")class B(A):passa = A() a.hello()b = B() b.hello()

In the above the message is translated by a.hello() using a context of
A, and by b.hello() using a context of B. In the equivalent C++
version the context would be A in both cases.

The PyQt behaviour is unsatisfactory and may be changed in the future. It is
recommended that QCoreApplication.translate() be used in preference to
tr() (and trUtf8()). This is guaranteed to work with current and
future versions of PyQt and makes it much easier to share message files
between Python and C++ code. Below is the alternative implementation of A
that uses QCoreApplication.translate():

class A(QtCore.QObject):def hello(self):return QtCore.QCoreApplication.translate("A", "Hello")

11???The DBus Support Module

The DBus support module is installed as dbus.mainloop.qt and provides
support for the Qt event loop to the standard dbus-python language
bindings package. The module's API is almost identical to that of the
dbus.mainloop.glib modules that provides support for the GLib event loop.

The dbus.mainloop.qt module contains the following function.

DBusQtMainLoop(set_as_default=False)

This function returns a dbus.mainloop.NativeMainLoop object that
uses the the Qt event loop.

set_as_default is set to make the main loop instance the default for
all new Connection and Bus instances. It may only be specified as a
keyword argument, and not as a positional argument.

The following code fragment is all that is normally needed to set up the
standard dbus-python language bindings package to be used with PyQt:

import dbus.mainloop.qtdbus.mainloop.qt.DBusQtMainLoop(set_as_default=True)

12???Things to be Aware Of

12.1???Python Strings, Qt Strings and Unicode

Unicode support was added to Qt in v2.0 and to Python in v1.6. In Qt, Unicode
support is implemented using the QString class. It is important to
understand that QString instances, Python string objects and Python Unicode
objects are all different but conversions between them are automatic in almost
all cases and easy to achieve manually when needed.

Whenever PyQt expects a QString as a function argument, a Python string
object or a Python Unicode object can be provided instead, and PyQt will do
the necessary conversion automatically.

You may also manually convert Python string and Unicode objects to QString
instances by using the QString constructor as demonstrated in the following
code fragment:

qs1 = QtCore.QString("Converted Python string object") qs2 = QtCore.QString(u"Converted Python Unicode object")

In order to convert a QString to a Python string object use the Python
str() builtin. Applying str() to a null QString and an empty
QString both result in an empty Python string object.

In order to convert a QString to a Python Unicode object use the Python
unicode() builtin. Applying unicode() to a null QString and an
empty QString both result in an empty Python Unicode object.

QString also implements Python's buffer protocol which means that a
QString can be used in many places where a Python string or Unicode object
is expected without being explicitly converted.

12.2???Garbage Collection

C++ does not garbage collect unreferenced class instances, whereas Python does.
In the following C++ fragment both colours exist even though the first can no
longer be referenced from within the program:

col = new QColor(); col = new QColor();

In the corresponding Python fragment, the first colour is destroyed when the
second is assigned to col:

col = QtGui.QColor() col = QtGui.QColor()

In Python, each colour must be assigned to different names. Typically this is
done within class definitions, so the code fragment would be something like:

self.col1 = QtGui.QColor() self.col2 = QtGui.QColor()

Sometimes a Qt class instance will maintain a pointer to another instance and
will eventually call the destructor of that second instance. The most common
example is that a QObject (and any of its sub-classes) keeps pointers to
its children and will automatically call their destructors. In these cases,
the corresponding Python object will also keep a reference to the corresponding
child objects.

So, in the following Python fragment, the first QLabel is not destroyed
when the second is assigned to lab because the parent QWidget still has
a reference to it:

parent = QtGui.QWidget() lab = QtGui.QLabel("First label", parent) lab = QtGui.QLabel("Second label", parent)

12.3???Multiple Inheritance

It is not possible to define a new Python class that sub-classes from more than
one Qt class.

12.4???Access to Protected Member Functions

When an instance of a C++ class is not created from Python it is not possible
to access the protected member functions, or emit any signals, of that
instance. Attempts to do so will raise a Python exception. Also, any Python
methods corresponding to the instance's virtual member functions will never be
called.

12.5???None and NULL

Throughout PyQt, the None value can be specified wherever NULL is
acceptable to the underlying C++ code.

Equally, NULL is converted to None whenever it is returned by the
underlying C++ code.

12.6???Support for void *

PyQt (actually SIP) represents void * values as objects of type
sip.voidptr. Such values are often used to pass the addresses of external
objects between different Python modules. To make this easier, a Python
integer (or anything that Python can convert to an integer) can be used
whenever a sip.voidptr is expected.

A sip.voidptr may be converted to a Python integer by using the int()
builtin function.

A sip.voidptr may be converted to a Python string by using its
asstring() method. The asstring() method takes an optional integer
argument which is the length of the data in bytes.

A sip.voidptr may also be given a size (ie. the size of the block of
memory that is pointed to) by calling its setsize() method. If it has a
size then it is also able to support Python's buffer protocol. This means
that it can be wrapped using Python's buffer() builtin to create an object
that treats the block of memory as a mutable list of bytes. It also means
that the Python struct module can be used to unpack and pack binary data
structures in memory, memory mapped files or shared memory.

12.7???super and PyQt Classes

Internally PyQt implements a lazy technique for attribute lookup where
attributes are only placed in type and instance dictionaries when they are
first referenced. This technique is needed to reduce the time taken to import
large modules such as PyQt.

In most circumstances this technique is transparent to an application. The
exception is when super is used with a PyQt class. The way that super
is currently implemented means that the lazy lookup is bypassed resulting in
AttributeError exceptions unless the attribute has been previously
referenced.

Note that this restriction applies to any class wrapped by SIP and not just
PyQt.

13???Deploying Commercial PyQt Applications

When deploying commercial PyQt applications it is necessary to discourage
users from accessing the underlying PyQt modules for themselves. A user that
used the modules shipped with your application to develop new applications
would themselves be considered a developer and would need their own commercial
Qt and PyQt licenses.

One solution to this problem is the VendorID package. This allows
you to build Python extension modules that can only be imported by a digitally
signed custom interpreter. The package enables you to create such an
interpreter with your application embedded within it. The result is an
interpreter that can only run your application, and PyQt modules that can only
be imported by that interpreter. You can use the package to similarly restrict
access to any extension module.

In order to build PyQt with support for the VendorID package, pass the -i
command line flag to configure.py.

14???The PyQt Build System

The PyQt build system is an extension of the SIP build system and is
implemented by the pyqtconfig module, part of the PyQt4 package. It
can be used by configuration scripts of other bindings that build on top of
PyQt and takes care of the details of the Qt installation.

The module contains a number of classes.

14.1???pyqtconfig Classes

Configuration(sipconfig.Configuration)

This class encapsulates configuration values that can be accessed as
instance objects.

The following configuration values are provided in addition to those
provided by the super-class:

pyqt_bin_dir
The name of the directory where the PyQt utilities are installed.
pyqt_config_args
The command line passed to configure.py when PyQt was
configured.
pyqt_mod_dir
The name of the directory where the PyQt4 Python package is
installed.
pyqt_modules
A space separated string of installed PyQt modules. The Qt
module is not included.
pyqt_sip_dir
The name of the base directory where PyQt's .sip files are
installed. Each module's .sip files are installed in a
sub-directory with the same name as the module.
pyqt_sip_flags
A space separated string of the sip command line arguments used
to build the PyQt modules. These should also be used when
building bindings that %Import any PyQt modules.
pyqt_version
The PyQt version as a 3 part hexadecimal number (e.g. v4.0.1 is
represented as 0x040001).
pyqt_version_str
The PyQt version as a string. For development snapshots it will
start with snapshot-.
qt_data_dir
The value of QLibraryInfo::location(DataPath) for the Qt
installation.
qt_dir
The root directory of the Qt installation (normally the directory
that contains the bin directory).
qt_edition
The Qt edition.
qt_framework
Set if Qt is built as a MacOS/X framework.
qt_inc_dir
The value of QLibraryInfo::location(HeadersPath) for the Qt
installation.
qt_lib_dir
The value of QLibraryInfo::location(LibrariesPath) for the Qt
installation.
qt_threaded
Set if Qt is built with thread support (always set for PyQt).
qt_version
The Qt version as a 3 part hexadecimal number (e.g. v4.1.2 is
represented as 0x040102).
qt_winconfig
Additional Windows specific configuration.
__init__(self, sub_cfg=None)

Initialise the instance.

sub_cfg is an optional list of sub-class configurations. It should
only be used by the __init__() method of a sub-class to append its
own dictionary of configuration values before passing the list to its
super-class.

QtAssistantModuleMakefile(QtNetworkModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtAssistant module.
QAxContainerModuleMakefile(QtGuiModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QAxContainer module.
QtCoreModuleMakefile(sipconfig.SIPModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtCore module.
QtHelpModuleMakefile(QtGuiModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtHelp module.
QtGuiModuleMakefile(QtCoreModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtGui module.
QtNetworkModuleMakefile(QtCoreModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtNetwork module.
QtOpenGLModuleMakefile(QtGuiModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtOpenGL module.
QtScriptModuleMakefile(QtCoreModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtScript module.
QtSqlModuleMakefile(QtGuiModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtSql module.
QtSvgModuleMakefile(QtGuiModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtSvg module.
QtTestModuleMakefile(QtCoreModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtTest module.
QtWebKitModuleMakefile(QtNetworkModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtWebKit module.
QtXmlModuleMakefile(QtCoreModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtXml module.
QtXmlPatternsModuleMakefile(QtCoreModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt QtXmlPatterns module.
phononModuleMakefile(QtGuiModuleMakefile)
This class encapsulates a Makefile to build a SIP generated Python
extension module that is built on the PyQt phonon module.

總結

以上是生活随笔為你收集整理的PyQt v4 - Python Bindings for Qt v4 | Документация的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

麻豆国产97在线 | 欧洲 | 欧美精品无码一区二区三区 | 亚无码乱人伦一区二区 | 日本护士xxxxhd少妇 | 久久精品国产亚洲精品 | 精品一区二区不卡无码av | 欧美阿v高清资源不卡在线播放 | 中文字幕无码日韩欧毛 | 最近免费中文字幕中文高清百度 | 在线看片无码永久免费视频 | 永久免费观看美女裸体的网站 | 伊人久久大香线蕉av一区二区 | 久久久久免费看成人影片 | 夜先锋av资源网站 | 国产97人人超碰caoprom | 日韩精品无码一区二区中文字幕 | 性开放的女人aaa片 | 亚洲码国产精品高潮在线 | 欧美人与物videos另类 | 国产超碰人人爽人人做人人添 | 亚洲精品国偷拍自产在线麻豆 | 超碰97人人射妻 | √天堂资源地址中文在线 | 亚洲国产精品久久人人爱 | 精品国产一区二区三区四区在线看 | 国产内射老熟女aaaa | 国产精品对白交换视频 | 香港三级日本三级妇三级 | 成人一在线视频日韩国产 | 无码毛片视频一区二区本码 | 中文字幕精品av一区二区五区 | 国产精品免费大片 | 国产乱子伦视频在线播放 | 又色又爽又黄的美女裸体网站 | 波多野结衣高清一区二区三区 | 国产成人一区二区三区别 | 久久午夜夜伦鲁鲁片无码免费 | 日日噜噜噜噜夜夜爽亚洲精品 | 国产午夜亚洲精品不卡 | 少妇高潮喷潮久久久影院 | 天天综合网天天综合色 | 99久久久无码国产aaa精品 | 乌克兰少妇xxxx做受 | 四虎4hu永久免费 | 国产免费久久精品国产传媒 | 久久久久久亚洲精品a片成人 | 国产偷国产偷精品高清尤物 | 精品久久久无码人妻字幂 | 亚洲日本va中文字幕 | 精品国产乱码久久久久乱码 | 性做久久久久久久久 | 天堂一区人妻无码 | 亚洲色偷偷男人的天堂 | 国产 浪潮av性色四虎 | 成人免费视频一区二区 | 国产乱人伦偷精品视频 | 久久精品成人欧美大片 | 欧美性黑人极品hd | www一区二区www免费 | 一个人看的视频www在线 | 日韩精品乱码av一区二区 | 精品国产国产综合精品 | 自拍偷自拍亚洲精品被多人伦好爽 | 久久亚洲精品成人无码 | 中文字幕日产无线码一区 | 久久精品99久久香蕉国产色戒 | 在教室伦流澡到高潮hnp视频 | 色综合久久88色综合天天 | 亚洲啪av永久无码精品放毛片 | 老熟女重囗味hdxx69 | 国产深夜福利视频在线 | 一本久久a久久精品亚洲 | 中文字幕无码乱人伦 | 天天摸天天碰天天添 | 成人av无码一区二区三区 | 欧美老熟妇乱xxxxx | 兔费看少妇性l交大片免费 | 四虎国产精品免费久久 | 国产精品怡红院永久免费 | 免费乱码人妻系列无码专区 | 成人精品视频一区二区 | 国产成人综合美国十次 | 丰满人妻精品国产99aⅴ | 欧美日韩一区二区综合 | 又大又硬又黄的免费视频 | 欧美丰满熟妇xxxx性ppx人交 | 乱人伦中文视频在线观看 | 国产人妻精品一区二区三区 | 久久精品女人天堂av免费观看 | 久久久久成人精品免费播放动漫 | 国产人妻精品午夜福利免费 | 少妇性俱乐部纵欲狂欢电影 | 国产精品久久久久影院嫩草 | 日韩人妻无码中文字幕视频 | 国模大胆一区二区三区 | 蜜桃视频韩日免费播放 | 中文字幕av伊人av无码av | 一本久道高清无码视频 | 国产香蕉97碰碰久久人人 | 女人和拘做爰正片视频 | 无码国内精品人妻少妇 | 男人的天堂av网站 | 玩弄中年熟妇正在播放 | 99久久99久久免费精品蜜桃 | 亚洲成av人影院在线观看 | 国产av无码专区亚洲a∨毛片 | 久久亚洲国产成人精品性色 | 在线播放无码字幕亚洲 | 国产精品免费大片 | 无码人妻少妇伦在线电影 | 丝袜美腿亚洲一区二区 | 欧美日本免费一区二区三区 | 丰满护士巨好爽好大乳 | 人人妻人人澡人人爽人人精品浪潮 | 天天做天天爱天天爽综合网 | a片免费视频在线观看 | 国产精品无码mv在线观看 | 国产精品国产三级国产专播 | 无遮无挡爽爽免费视频 | 一本大道久久东京热无码av | 国内综合精品午夜久久资源 | 国产两女互慰高潮视频在线观看 | 国产成人综合美国十次 | 欧美性猛交xxxx富婆 | 欧洲熟妇色 欧美 | 色欲久久久天天天综合网精品 | 国产激情无码一区二区app | 免费播放一区二区三区 | 久久这里只有精品视频9 | 成人欧美一区二区三区黑人免费 | 精品国产一区二区三区四区 | 国产suv精品一区二区五 | 国产女主播喷水视频在线观看 | 亚洲精品中文字幕 | 亚洲欧美综合区丁香五月小说 | 精品无码国产一区二区三区av | 无码人妻精品一区二区三区不卡 | 欧美人与禽zoz0性伦交 | 中文字幕人成乱码熟女app | 奇米影视7777久久精品人人爽 | 免费国产黄网站在线观看 | 一个人看的www免费视频在线观看 | 亚洲精品一区二区三区大桥未久 | 高潮毛片无遮挡高清免费 | 国产色视频一区二区三区 | 亚洲人成网站在线播放942 | 2020最新国产自产精品 | 无码av最新清无码专区吞精 | 国产成人精品三级麻豆 | 香港三级日本三级妇三级 | 极品尤物被啪到呻吟喷水 | 国产精品亚洲а∨无码播放麻豆 | 亚洲呦女专区 | 欧美日韩久久久精品a片 | 青青青手机频在线观看 | 国产激情无码一区二区 | 亚洲一区二区三区香蕉 | 青青草原综合久久大伊人精品 | 天堂无码人妻精品一区二区三区 | 人妻与老人中文字幕 | 亚洲自偷精品视频自拍 | 男女猛烈xx00免费视频试看 | 国产精华av午夜在线观看 | 国产精品对白交换视频 | 又粗又大又硬毛片免费看 | 男女爱爱好爽视频免费看 | 亚洲色大成网站www国产 | 成在人线av无码免观看麻豆 | 亚洲码国产精品高潮在线 | 少妇性l交大片欧洲热妇乱xxx | 欧美日韩亚洲国产精品 | 99视频精品全部免费免费观看 | 综合激情五月综合激情五月激情1 | 在线精品国产一区二区三区 | 国产艳妇av在线观看果冻传媒 | 国产熟妇高潮叫床视频播放 | 国产艳妇av在线观看果冻传媒 | 骚片av蜜桃精品一区 | 任你躁国产自任一区二区三区 | 国产精品久久久久久久9999 | 国产超碰人人爽人人做人人添 | 国产艳妇av在线观看果冻传媒 | 欧美激情一区二区三区成人 | 丰满人妻被黑人猛烈进入 | 无码福利日韩神码福利片 | 午夜精品一区二区三区在线观看 | 狠狠色色综合网站 | 亚洲人成人无码网www国产 | 亚洲日韩中文字幕在线播放 | 欧美一区二区三区视频在线观看 | √天堂资源地址中文在线 | 天天做天天爱天天爽综合网 | 成年美女黄网站色大免费全看 | 亚洲国产精品久久久天堂 | 国产极品视觉盛宴 | 99视频精品全部免费免费观看 | 国内丰满熟女出轨videos | 亚洲欧美精品aaaaaa片 | 精品国偷自产在线视频 | 国产精品毛多多水多 | 99麻豆久久久国产精品免费 | 嫩b人妻精品一区二区三区 | 日本免费一区二区三区最新 | v一区无码内射国产 | 久久综合网欧美色妞网 | 又紧又大又爽精品一区二区 | 丝袜人妻一区二区三区 | 蜜桃av抽搐高潮一区二区 | av香港经典三级级 在线 | 久久精品女人的天堂av | 伊人久久婷婷五月综合97色 | 中文字幕乱妇无码av在线 | a片免费视频在线观看 | 无码毛片视频一区二区本码 | 亚洲国产精品一区二区第一页 | 免费播放一区二区三区 | 国产激情艳情在线看视频 | 久久精品人妻少妇一区二区三区 | 免费中文字幕日韩欧美 | 在线观看国产午夜福利片 | 国产成人无码av一区二区 | 国产精品嫩草久久久久 | 国产香蕉97碰碰久久人人 | 国产乱人伦av在线无码 | 日韩av无码一区二区三区 | 亚洲国产精品无码久久久久高潮 | 久久久久亚洲精品中文字幕 | 成人影院yy111111在线观看 | 国产亲子乱弄免费视频 | 六十路熟妇乱子伦 | 国产在线aaa片一区二区99 | 性生交片免费无码看人 | 国产亚洲视频中文字幕97精品 | 18精品久久久无码午夜福利 | www国产亚洲精品久久久日本 | 久久99精品国产.久久久久 | 永久免费精品精品永久-夜色 | 亚拍精品一区二区三区探花 | 国产亚洲日韩欧美另类第八页 | 国产精品亚洲综合色区韩国 | 九一九色国产 | 成 人影片 免费观看 | 久久人人爽人人爽人人片av高清 | 日本熟妇浓毛 | 欧美激情综合亚洲一二区 | 国产亚av手机在线观看 | 亚洲成av人综合在线观看 | 亚洲综合无码一区二区三区 | 亚洲a无码综合a国产av中文 | 亚洲成a人片在线观看无码 | 高潮毛片无遮挡高清免费 | 久久久国产精品无码免费专区 | 黑人巨大精品欧美黑寡妇 | 中文字幕av伊人av无码av | 亚洲精品中文字幕乱码 | 无码成人精品区在线观看 | 成人免费视频视频在线观看 免费 | 对白脏话肉麻粗话av | 免费观看又污又黄的网站 | 中文字幕无码av波多野吉衣 | 无人区乱码一区二区三区 | 无码成人精品区在线观看 | 成人无码精品一区二区三区 | 国产人妖乱国产精品人妖 | 日日夜夜撸啊撸 | 丰满少妇人妻久久久久久 | 天堂一区人妻无码 | 国产精品久久国产三级国 | 日韩精品a片一区二区三区妖精 | 免费网站看v片在线18禁无码 | 国产精品亚洲lv粉色 | 中文字幕无码av激情不卡 | 日韩人妻无码中文字幕视频 | 日本高清一区免费中文视频 | 欧美日本精品一区二区三区 | 成人片黄网站色大片免费观看 | 免费观看激色视频网站 | 亚洲精品一区二区三区大桥未久 | 中国女人内谢69xxxxxa片 | 色五月丁香五月综合五月 | 欧美日韩综合一区二区三区 | 国内精品人妻无码久久久影院蜜桃 | 成在人线av无码免观看麻豆 | 激情内射日本一区二区三区 | 国产做国产爱免费视频 | 亚洲天堂2017无码中文 | 在教室伦流澡到高潮hnp视频 | 国产亚洲精品精品国产亚洲综合 | 男人扒开女人内裤强吻桶进去 | 亚洲一区二区观看播放 | 波多野结衣av一区二区全免费观看 | 国语精品一区二区三区 | 狠狠色噜噜狠狠狠狠7777米奇 | 久久午夜无码鲁丝片午夜精品 | 国产热a欧美热a在线视频 | 一本加勒比波多野结衣 | 无码吃奶揉捏奶头高潮视频 | 秋霞特色aa大片 | 国产日产欧产精品精品app | 人人妻人人澡人人爽欧美精品 | 国产日产欧产精品精品app | 久久99精品国产麻豆蜜芽 | 亚洲小说春色综合另类 | 国产人妻人伦精品 | 久久人妻内射无码一区三区 | 无遮挡啪啪摇乳动态图 | 2019午夜福利不卡片在线 | 亚洲爆乳无码专区 | a在线亚洲男人的天堂 | 人人超人人超碰超国产 | 欧美老人巨大xxxx做受 | 无码人妻黑人中文字幕 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 亚洲 欧美 激情 小说 另类 | 久久婷婷五月综合色国产香蕉 | 青青青手机频在线观看 | 欧美阿v高清资源不卡在线播放 | 少妇的肉体aa片免费 | 色狠狠av一区二区三区 | 奇米影视888欧美在线观看 | 亚洲精品综合一区二区三区在线 | 樱花草在线社区www | 日欧一片内射va在线影院 | 亚洲国产精品无码久久久久高潮 | 国产人妻人伦精品 | 夜夜躁日日躁狠狠久久av | 久久久无码中文字幕久... | 国产乱人无码伦av在线a | 少女韩国电视剧在线观看完整 | 欧美亚洲日韩国产人成在线播放 | 天天拍夜夜添久久精品 | 伊人久久大香线焦av综合影院 | 亚洲精品综合一区二区三区在线 | 亚洲s色大片在线观看 | 亚洲色欲色欲欲www在线 | 精品国精品国产自在久国产87 | av无码电影一区二区三区 | 少妇邻居内射在线 | 成人精品视频一区二区三区尤物 | 日产精品99久久久久久 | 午夜丰满少妇性开放视频 | 国产精品内射视频免费 | 国产午夜福利100集发布 | 少妇性俱乐部纵欲狂欢电影 | 亚洲成色在线综合网站 | 成人欧美一区二区三区黑人 | 性欧美熟妇videofreesex | 无码国产乱人伦偷精品视频 | 亚洲精品无码国产 | 亚洲国产欧美国产综合一区 | 奇米影视7777久久精品 | 麻豆md0077饥渴少妇 | 日韩人妻少妇一区二区三区 | 人人妻在人人 | 亚洲 欧美 激情 小说 另类 | 久久久久国色av免费观看性色 | 国产精品香蕉在线观看 | 久久午夜无码鲁丝片 | 精品一区二区三区波多野结衣 | 婷婷色婷婷开心五月四房播播 | 国产成人无码a区在线观看视频app | 日产精品高潮呻吟av久久 | 四十如虎的丰满熟妇啪啪 | 久热国产vs视频在线观看 | 亚洲中文字幕在线观看 | 牲交欧美兽交欧美 | 精品无码国产自产拍在线观看蜜 | 无遮挡啪啪摇乳动态图 | 在线 国产 欧美 亚洲 天堂 | 日本护士xxxxhd少妇 | 亚洲中文无码av永久不收费 | 中文字幕色婷婷在线视频 | 久久久久久国产精品无码下载 | 久久国语露脸国产精品电影 | 99久久人妻精品免费二区 | 亚洲の无码国产の无码影院 | 无码av岛国片在线播放 | 人妻天天爽夜夜爽一区二区 | 日日天日日夜日日摸 | 爽爽影院免费观看 | 亚洲精品午夜无码电影网 | 亚洲中文字幕无码中字 | 日产精品高潮呻吟av久久 | 国产精品无码成人午夜电影 | 少女韩国电视剧在线观看完整 | 99久久婷婷国产综合精品青草免费 | 亚洲欧美中文字幕5发布 | 青青久在线视频免费观看 | 国产欧美精品一区二区三区 | 成人性做爰aaa片免费看不忠 | 精品一区二区三区波多野结衣 | 理论片87福利理论电影 | 久久精品国产亚洲精品 | 婷婷五月综合激情中文字幕 | 99久久人妻精品免费二区 | 亚洲日本在线电影 | 亚洲码国产精品高潮在线 | 久久久精品成人免费观看 | 久久综合激激的五月天 | 嫩b人妻精品一区二区三区 | 国产另类ts人妖一区二区 | 色综合久久88色综合天天 | 成人免费视频视频在线观看 免费 | 国产成人综合色在线观看网站 | 亚洲国产精品一区二区美利坚 | 国产尤物精品视频 | 亚洲小说春色综合另类 | 无码国产色欲xxxxx视频 | 亚洲成av人片在线观看无码不卡 | 一二三四在线观看免费视频 | 小泽玛莉亚一区二区视频在线 | 夜夜影院未满十八勿进 | 领导边摸边吃奶边做爽在线观看 | 牛和人交xxxx欧美 | 日韩成人一区二区三区在线观看 | 无码乱肉视频免费大全合集 | 99国产欧美久久久精品 | 老子影院午夜伦不卡 | 狂野欧美性猛交免费视频 | 精品国产一区二区三区四区在线看 | 丰满少妇人妻久久久久久 | 免费看少妇作爱视频 | 荡女精品导航 | 亚洲一区二区三区 | 亚洲精品久久久久久久久久久 | 欧美自拍另类欧美综合图片区 | 精品无人国产偷自产在线 | 国产精品无码一区二区桃花视频 | 中文字幕无码免费久久9一区9 | 无码任你躁久久久久久久 | 成人性做爰aaa片免费看不忠 | 久久久久亚洲精品中文字幕 | 草草网站影院白丝内射 | 国产乡下妇女做爰 | 久久精品人人做人人综合 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 国产热a欧美热a在线视频 | 欧美黑人乱大交 | 日日天日日夜日日摸 | 精品久久8x国产免费观看 | 欧美自拍另类欧美综合图片区 | 亚洲精品国产精品乱码不卡 | 久久无码中文字幕免费影院蜜桃 | 日日天干夜夜狠狠爱 | 国产无套粉嫩白浆在线 | 狠狠综合久久久久综合网 | 麻豆国产人妻欲求不满 | 女人被男人躁得好爽免费视频 | 极品嫩模高潮叫床 | 色婷婷av一区二区三区之红樱桃 | 久久精品国产亚洲精品 | 免费无码的av片在线观看 | 成人精品一区二区三区中文字幕 | 亚洲精品综合五月久久小说 | 久久精品女人天堂av免费观看 | 国产情侣作爱视频免费观看 | 人妻aⅴ无码一区二区三区 | 色婷婷av一区二区三区之红樱桃 | 小鲜肉自慰网站xnxx | 天天摸天天透天天添 | 精品久久久无码人妻字幂 | 亚洲无人区午夜福利码高清完整版 | 欧美丰满熟妇xxxx性ppx人交 | 日日碰狠狠丁香久燥 | 精品国产av色一区二区深夜久久 | 久久午夜无码鲁丝片午夜精品 | 乱人伦人妻中文字幕无码久久网 | 激情内射日本一区二区三区 | 久久久久久久人妻无码中文字幕爆 | 小泽玛莉亚一区二区视频在线 | 99久久久国产精品无码免费 | 国产高清av在线播放 | 国产黄在线观看免费观看不卡 | 水蜜桃色314在线观看 | 中文精品久久久久人妻不卡 | 男人的天堂av网站 | 亚洲精品美女久久久久久久 | 国产偷国产偷精品高清尤物 | 欧美丰满老熟妇xxxxx性 | 极品尤物被啪到呻吟喷水 | 成人女人看片免费视频放人 | 国产三级久久久精品麻豆三级 | 中文字幕无码av波多野吉衣 | 色婷婷av一区二区三区之红樱桃 | 国产亚洲人成在线播放 | 日本肉体xxxx裸交 | 未满成年国产在线观看 | 波多野42部无码喷潮在线 | 亚洲一区二区三区播放 | 久久五月精品中文字幕 | 亚洲色欲色欲欲www在线 | 国产福利视频一区二区 | 国产又爽又猛又粗的视频a片 | 精品夜夜澡人妻无码av蜜桃 | 国产性生交xxxxx无码 | 99久久人妻精品免费一区 | 强奷人妻日本中文字幕 | 97se亚洲精品一区 | 无码av最新清无码专区吞精 | 国产精品丝袜黑色高跟鞋 | 国产乱人伦av在线无码 | 老子影院午夜精品无码 | www成人国产高清内射 | 亚洲精品国产第一综合99久久 | 成人精品一区二区三区中文字幕 | ass日本丰满熟妇pics | 国产精品igao视频网 | 亚洲综合伊人久久大杳蕉 | 亲嘴扒胸摸屁股激烈网站 | 亚洲娇小与黑人巨大交 | 我要看www免费看插插视频 | 在线精品亚洲一区二区 | 国产亚洲欧美日韩亚洲中文色 | 娇妻被黑人粗大高潮白浆 | 日本一卡2卡3卡四卡精品网站 | 十八禁真人啪啪免费网站 | 国产午夜精品一区二区三区嫩草 | 人妻无码αv中文字幕久久琪琪布 | 久久精品无码一区二区三区 | 蜜桃臀无码内射一区二区三区 | 强奷人妻日本中文字幕 | 天天做天天爱天天爽综合网 | 久久综合给合久久狠狠狠97色 | 波多野结衣av在线观看 | 久久久久久国产精品无码下载 | 国产精品久久久久久亚洲毛片 | 国产av一区二区精品久久凹凸 | 牲欲强的熟妇农村老妇女 | 九月婷婷人人澡人人添人人爽 | 丰满人妻精品国产99aⅴ | 内射爽无广熟女亚洲 | 成人欧美一区二区三区黑人 | 国产手机在线αⅴ片无码观看 | 午夜熟女插插xx免费视频 | 色偷偷人人澡人人爽人人模 | 天天拍夜夜添久久精品大 | 特级做a爰片毛片免费69 | 人人妻人人澡人人爽人人精品 | 亚洲精品无码国产 | 国产va免费精品观看 | 国产激情无码一区二区app | 亚洲精品一区二区三区婷婷月 | 国产精品第一国产精品 | 欧洲精品码一区二区三区免费看 | 亚洲中文字幕成人无码 | 亚洲中文字幕无码中字 | 国产无套粉嫩白浆在线 | 中文字幕中文有码在线 | 色噜噜亚洲男人的天堂 | 麻豆国产人妻欲求不满谁演的 | 大地资源网第二页免费观看 | 久久精品女人天堂av免费观看 | 亚洲日本在线电影 | 亚洲男人av天堂午夜在 | 中国女人内谢69xxxxxa片 | 奇米影视7777久久精品人人爽 | 极品尤物被啪到呻吟喷水 | 熟妇人妻无乱码中文字幕 | 300部国产真实乱 | 亚洲熟熟妇xxxx | 好男人www社区 | 国产人妻精品午夜福利免费 | 67194成是人免费无码 | 欧美老妇交乱视频在线观看 | 狠狠噜狠狠狠狠丁香五月 | 国内揄拍国内精品人妻 | 国产成人无码一二三区视频 | 久久午夜无码鲁丝片午夜精品 | 亚洲一区二区三区四区 | 99精品国产综合久久久久五月天 | 成人性做爰aaa片免费看不忠 | 亚洲色www成人永久网址 | 精品一区二区三区无码免费视频 | 国产精品18久久久久久麻辣 | 久在线观看福利视频 | 九九综合va免费看 | 18黄暴禁片在线观看 | 亚洲人亚洲人成电影网站色 | 国产精品亚洲а∨无码播放麻豆 | 中文字幕乱码中文乱码51精品 | 东京热一精品无码av | 99久久久国产精品无码免费 | 日本高清一区免费中文视频 | 狠狠亚洲超碰狼人久久 | 久久精品国产一区二区三区肥胖 | 日本一卡2卡3卡四卡精品网站 | 国产一区二区三区四区五区加勒比 | 国产真实乱对白精彩久久 | 亚洲 另类 在线 欧美 制服 | 99久久99久久免费精品蜜桃 | 亚洲人成影院在线观看 | 高潮毛片无遮挡高清免费 | 水蜜桃亚洲一二三四在线 | 午夜精品一区二区三区的区别 | 在线播放无码字幕亚洲 | 欧美日韩亚洲国产精品 | 荡女精品导航 | 亚洲成在人网站无码天堂 | 亚洲一区二区三区在线观看网站 | 亚洲狠狠婷婷综合久久 | 99久久久无码国产精品免费 | 又大又紧又粉嫩18p少妇 | 欧美成人家庭影院 | 亚洲国产一区二区三区在线观看 | 中国女人内谢69xxxx | 无套内谢的新婚少妇国语播放 | 国产亚洲精品久久久闺蜜 | 久久zyz资源站无码中文动漫 | 熟女俱乐部五十路六十路av | 免费无码午夜福利片69 | 久久久久人妻一区精品色欧美 | 一本色道婷婷久久欧美 | 久久这里只有精品视频9 | 樱花草在线播放免费中文 | 国产精品办公室沙发 | 欧美亚洲国产一区二区三区 | 熟妇激情内射com | 国产精品丝袜黑色高跟鞋 | 扒开双腿疯狂进出爽爽爽视频 | 国产成人无码a区在线观看视频app | 中文字幕 人妻熟女 | 精品国产青草久久久久福利 | 亚洲精品午夜无码电影网 | 国精品人妻无码一区二区三区蜜柚 | 久久久久久久久888 | 内射巨臀欧美在线视频 | 久久精品人人做人人综合试看 | 人人超人人超碰超国产 | 97色伦图片97综合影院 | 亚洲爆乳大丰满无码专区 | 中文字幕乱妇无码av在线 | 国产舌乚八伦偷品w中 | 强开小婷嫩苞又嫩又紧视频 | 夜夜影院未满十八勿进 | 在线观看国产一区二区三区 | 无码精品人妻一区二区三区av | 亚洲a无码综合a国产av中文 | 日日摸天天摸爽爽狠狠97 | 亚洲欧美综合区丁香五月小说 | 中文精品久久久久人妻不卡 | 色一情一乱一伦一视频免费看 | 日本丰满护士爆乳xxxx | 精品aⅴ一区二区三区 | 国产做国产爱免费视频 | 一本久道高清无码视频 | 国产免费无码一区二区视频 | 日本一卡2卡3卡四卡精品网站 | v一区无码内射国产 | 国产乡下妇女做爰 | 久久国产精品萌白酱免费 | 美女黄网站人色视频免费国产 | 丝袜美腿亚洲一区二区 | 亚洲成a人片在线观看日本 | 波多野结衣av在线观看 | 国产精品久久久久影院嫩草 | 亚洲精品综合五月久久小说 | 全黄性性激高免费视频 | 中文字幕乱码人妻无码久久 | 成人片黄网站色大片免费观看 | 国产成人精品视频ⅴa片软件竹菊 | 99国产精品白浆在线观看免费 | 欧洲精品码一区二区三区免费看 | 久久天天躁狠狠躁夜夜免费观看 | 自拍偷自拍亚洲精品被多人伦好爽 | 亚洲一区二区三区在线观看网站 | 欧美日本免费一区二区三区 | 综合网日日天干夜夜久久 | 美女极度色诱视频国产 | 日日夜夜撸啊撸 | 亚洲中文字幕av在天堂 | 精品国产精品久久一区免费式 | 午夜不卡av免费 一本久久a久久精品vr综合 | 少妇性俱乐部纵欲狂欢电影 | a在线观看免费网站大全 | 在线天堂新版最新版在线8 | av在线亚洲欧洲日产一区二区 | 日本一区二区三区免费播放 | 性欧美videos高清精品 | 国产乱人无码伦av在线a | 欧美性猛交xxxx富婆 | 图片区 小说区 区 亚洲五月 | 色诱久久久久综合网ywww | 伊人久久大香线蕉亚洲 | 大地资源中文第3页 | 无码人妻黑人中文字幕 | 最新国产麻豆aⅴ精品无码 | 一本久久伊人热热精品中文字幕 | 国内综合精品午夜久久资源 | 丰满少妇女裸体bbw | 日本护士xxxxhd少妇 | 两性色午夜视频免费播放 | 免费男性肉肉影院 | 天天躁夜夜躁狠狠是什么心态 | 亚洲午夜福利在线观看 | 丰腴饱满的极品熟妇 | 日本va欧美va欧美va精品 | 99re在线播放 | 免费无码午夜福利片69 | 麻豆蜜桃av蜜臀av色欲av | 精品国产精品久久一区免费式 | 国产精品久久久久影院嫩草 | 亚洲日本va午夜在线电影 | 少妇无码吹潮 | 欧美高清在线精品一区 | 十八禁真人啪啪免费网站 | 亚洲欧美精品aaaaaa片 | 亚洲 a v无 码免 费 成 人 a v | 国产美女精品一区二区三区 | 男女爱爱好爽视频免费看 | 国产熟女一区二区三区四区五区 | 成人免费视频一区二区 | 动漫av网站免费观看 | 久久精品国产一区二区三区肥胖 | 日本一区二区更新不卡 | 久激情内射婷内射蜜桃人妖 | 在线天堂新版最新版在线8 | 亚洲爆乳精品无码一区二区三区 | 久久无码中文字幕免费影院蜜桃 | 清纯唯美经典一区二区 | 亚洲а∨天堂久久精品2021 | 亚洲欧美色中文字幕在线 | 亚洲区欧美区综合区自拍区 | 国产又爽又猛又粗的视频a片 | 亚洲爆乳精品无码一区二区三区 | 精品一区二区三区波多野结衣 | 黄网在线观看免费网站 | 亚洲爆乳精品无码一区二区三区 | 中文字幕无码免费久久9一区9 | 国产高清av在线播放 | 2020最新国产自产精品 | а√资源新版在线天堂 | 麻豆成人精品国产免费 | 亚洲国产精品久久久天堂 | 成年女人永久免费看片 | 动漫av一区二区在线观看 | 在线观看欧美一区二区三区 | 在线精品亚洲一区二区 | aⅴ亚洲 日韩 色 图网站 播放 | 精品亚洲成av人在线观看 | 国产婷婷色一区二区三区在线 | 无遮挡国产高潮视频免费观看 | 樱花草在线播放免费中文 | 欧美高清在线精品一区 | 学生妹亚洲一区二区 | 中文无码精品a∨在线观看不卡 | 日本护士xxxxhd少妇 | 精品久久久久香蕉网 | 亚洲中文无码av永久不收费 | 国产精品第一区揄拍无码 | 久久99精品久久久久婷婷 | 日日摸日日碰夜夜爽av | 图片小说视频一区二区 | 免费人成在线视频无码 | 麻豆蜜桃av蜜臀av色欲av | 久久五月精品中文字幕 | 人人爽人人澡人人高潮 | 国产肉丝袜在线观看 | 99精品国产综合久久久久五月天 | 久久精品女人天堂av免费观看 | 亚洲中文字幕va福利 | 国产精品高潮呻吟av久久4虎 | 偷窥村妇洗澡毛毛多 | 亚洲成av人片在线观看无码不卡 | 亚洲欧美日韩综合久久久 | 亚洲色无码一区二区三区 | 无码中文字幕色专区 | 色婷婷欧美在线播放内射 | 欧美35页视频在线观看 | 日日噜噜噜噜夜夜爽亚洲精品 | 99视频精品全部免费免费观看 | 麻豆国产人妻欲求不满 | 西西人体www44rt大胆高清 | 国产一区二区三区日韩精品 | 亚洲欧美色中文字幕在线 | 97久久国产亚洲精品超碰热 | 国产在线精品一区二区高清不卡 | 日韩人妻系列无码专区 | 久9re热视频这里只有精品 | 国产精品igao视频网 | 亚洲一区二区三区在线观看网站 | 樱花草在线社区www | 久久人妻内射无码一区三区 | 亚洲国产成人a精品不卡在线 | 性生交大片免费看女人按摩摩 | 亚洲一区二区三区播放 | 久久99精品久久久久久动态图 | 欧美乱妇无乱码大黄a片 | 国产精品国产自线拍免费软件 | 精品厕所偷拍各类美女tp嘘嘘 | 国产成人精品视频ⅴa片软件竹菊 | 国产成人精品三级麻豆 | 国产色xx群视频射精 | 欧美午夜特黄aaaaaa片 | 午夜福利电影 | ass日本丰满熟妇pics | 国产偷抇久久精品a片69 | 99久久婷婷国产综合精品青草免费 | 中文字幕乱码人妻二区三区 | 精品少妇爆乳无码av无码专区 | 熟妇人妻无码xxx视频 | 激情爆乳一区二区三区 | 麻豆精产国品 | 亚洲精品久久久久久一区二区 | 麻豆精品国产精华精华液好用吗 | 乱码av麻豆丝袜熟女系列 | 中文字幕无线码 | 漂亮人妻洗澡被公强 日日躁 | 亚洲爆乳精品无码一区二区三区 | 亚洲精品无码国产 | 人人澡人摸人人添 | 午夜福利不卡在线视频 | 久久99精品久久久久婷婷 | 一二三四社区在线中文视频 | 国产绳艺sm调教室论坛 | 97夜夜澡人人爽人人喊中国片 | 免费人成在线视频无码 | 亚洲欧美日韩成人高清在线一区 | 国产人妖乱国产精品人妖 | 中文字幕亚洲情99在线 | 久久综合九色综合97网 | 少妇久久久久久人妻无码 | 久久精品人妻少妇一区二区三区 | 1000部啪啪未满十八勿入下载 | 久久综合久久自在自线精品自 | 国产精品人人妻人人爽 | 国产乱人无码伦av在线a | 狠狠色噜噜狠狠狠7777奇米 | 天天躁日日躁狠狠躁免费麻豆 | 国产精品无码永久免费888 | 国产莉萝无码av在线播放 | 免费人成在线视频无码 | 国产av人人夜夜澡人人爽麻豆 | 在线а√天堂中文官网 | 国产精品永久免费视频 | 日本熟妇浓毛 | 成人精品视频一区二区 | 牲交欧美兽交欧美 | 中文精品无码中文字幕无码专区 | 狠狠色噜噜狠狠狠7777奇米 | 18无码粉嫩小泬无套在线观看 | 波多野结衣乳巨码无在线观看 | 无码人妻久久一区二区三区不卡 | 无码毛片视频一区二区本码 | 秋霞特色aa大片 | 牲欲强的熟妇农村老妇女视频 | 偷窥村妇洗澡毛毛多 | 蜜臀aⅴ国产精品久久久国产老师 | av小次郎收藏 | 5858s亚洲色大成网站www | 国产成人无码av在线影院 | 无套内射视频囯产 | 青青青爽视频在线观看 | 国产麻豆精品精东影业av网站 | 欧美人与牲动交xxxx | 精品欧洲av无码一区二区三区 | 久久伊人色av天堂九九小黄鸭 | 偷窥日本少妇撒尿chinese | 无码中文字幕色专区 | 亚洲va中文字幕无码久久不卡 | 色婷婷香蕉在线一区二区 | 熟妇女人妻丰满少妇中文字幕 | 天堂亚洲免费视频 | 欧美大屁股xxxxhd黑色 | 国产欧美精品一区二区三区 | 粉嫩少妇内射浓精videos | 国产亚洲精品久久久久久大师 | 亚洲色欲色欲欲www在线 | 午夜精品久久久内射近拍高清 | 中文精品久久久久人妻不卡 | 国产午夜亚洲精品不卡下载 | 女人被男人躁得好爽免费视频 | 国产午夜无码视频在线观看 | 老子影院午夜精品无码 | 高清不卡一区二区三区 | 牛和人交xxxx欧美 | 国产办公室秘书无码精品99 | 精品国产一区二区三区四区在线看 | 人人妻人人澡人人爽人人精品浪潮 | 捆绑白丝粉色jk震动捧喷白浆 | 成年美女黄网站色大免费视频 | 99久久久无码国产aaa精品 | 亚洲aⅴ无码成人网站国产app | 丰满人妻一区二区三区免费视频 | 澳门永久av免费网站 | 国产精品国产三级国产专播 | 妺妺窝人体色www婷婷 | 国语精品一区二区三区 | 欧美喷潮久久久xxxxx | 日日摸夜夜摸狠狠摸婷婷 | 日本乱偷人妻中文字幕 | 精品无人国产偷自产在线 | 永久免费观看美女裸体的网站 | 无码人妻出轨黑人中文字幕 | 国产激情无码一区二区 | 日韩av无码中文无码电影 | 久久zyz资源站无码中文动漫 | 国产无套内射久久久国产 | 午夜不卡av免费 一本久久a久久精品vr综合 | 国产精品久久福利网站 | 美女张开腿让人桶 | 性色欲情网站iwww九文堂 | 狠狠色丁香久久婷婷综合五月 | 国产人妻精品一区二区三区不卡 | 色综合久久久久综合一本到桃花网 | 97资源共享在线视频 | 少妇无码av无码专区在线观看 | 亚洲一区二区三区 | 国产办公室秘书无码精品99 | 无码中文字幕色专区 | 性开放的女人aaa片 | 国产小呦泬泬99精品 | 久久精品人人做人人综合 | 性做久久久久久久免费看 | 福利一区二区三区视频在线观看 | 成人性做爰aaa片免费看不忠 | 97资源共享在线视频 | 国产又爽又黄又刺激的视频 | 97资源共享在线视频 | 亚洲中文字幕无码中字 | 亚拍精品一区二区三区探花 | 国产精品久久久久影院嫩草 | 国产真实乱对白精彩久久 | 国产美女精品一区二区三区 | 日日鲁鲁鲁夜夜爽爽狠狠 | 国産精品久久久久久久 | 领导边摸边吃奶边做爽在线观看 | 国产精品久久国产精品99 | 精品国产一区av天美传媒 | 亚洲一区av无码专区在线观看 | 亚洲の无码国产の无码影院 | 小泽玛莉亚一区二区视频在线 | 男女超爽视频免费播放 | 18精品久久久无码午夜福利 | 狠狠躁日日躁夜夜躁2020 | 欧美三级a做爰在线观看 | 曰韩少妇内射免费播放 | 久久aⅴ免费观看 | 亚洲精品午夜国产va久久成人 | 国产精品美女久久久久av爽李琼 | 午夜成人1000部免费视频 | 人人澡人人透人人爽 | 欧美老妇交乱视频在线观看 | 97人妻精品一区二区三区 | 5858s亚洲色大成网站www | 国产成人无码区免费内射一片色欲 | 国产农村乱对白刺激视频 | 亚洲日本在线电影 | 国产超碰人人爽人人做人人添 | 日本xxxx色视频在线观看免费 | 奇米影视7777久久精品 | 人人爽人人澡人人人妻 | 97精品人妻一区二区三区香蕉 | 又大又硬又黄的免费视频 | 内射后入在线观看一区 | 亚洲gv猛男gv无码男同 | 中文字幕+乱码+中文字幕一区 | 在线精品国产一区二区三区 | 88国产精品欧美一区二区三区 | 日日摸天天摸爽爽狠狠97 | 岛国片人妻三上悠亚 | 日日摸日日碰夜夜爽av | 久久99精品国产.久久久久 | 国精产品一品二品国精品69xx | 国产成人无码av片在线观看不卡 | 国产美女极度色诱视频www | 国产在线精品一区二区高清不卡 | 久久精品国产日本波多野结衣 | 成人免费无码大片a毛片 | 狠狠色色综合网站 | 精品成在人线av无码免费看 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 久久无码中文字幕免费影院蜜桃 | 国产精品久久久久久久9999 | 亚洲中文字幕无码中文字在线 | 国产真人无遮挡作爱免费视频 | 99在线 | 亚洲 | 成人免费视频在线观看 | 99久久精品无码一区二区毛片 | 国产精品香蕉在线观看 | 国产精品久久久久久亚洲影视内衣 | 两性色午夜视频免费播放 | 成人精品天堂一区二区三区 | 99久久精品午夜一区二区 | 亚洲精品中文字幕 | 欧美第一黄网免费网站 | 亚洲欧美综合区丁香五月小说 | 欧美xxxx黑人又粗又长 | 国产精品久久久久无码av色戒 | 亚洲一区二区三区 | 波多野结衣高清一区二区三区 | 一本加勒比波多野结衣 | 亚洲成a人片在线观看无码3d | 黑森林福利视频导航 | 成 人 网 站国产免费观看 | 亚洲日韩一区二区三区 | 久久久久亚洲精品男人的天堂 | 精品久久久久香蕉网 | 蜜桃视频韩日免费播放 | 久久精品视频在线看15 | 天天拍夜夜添久久精品大 | 秋霞特色aa大片 | 亚洲人成影院在线观看 | 人妻体内射精一区二区三四 | 99久久无码一区人妻 | 久久国产精品萌白酱免费 | 图片区 小说区 区 亚洲五月 | 激情内射亚州一区二区三区爱妻 | 熟女体下毛毛黑森林 | 亚洲色大成网站www国产 | 中文字幕色婷婷在线视频 | 国产成人综合在线女婷五月99播放 | 特大黑人娇小亚洲女 | 人人妻人人澡人人爽人人精品 | 日本肉体xxxx裸交 | 99国产欧美久久久精品 | 欧美亚洲国产一区二区三区 | 午夜福利一区二区三区在线观看 | 久久久久成人片免费观看蜜芽 | 亚洲の无码国产の无码步美 | 国产精品人人妻人人爽 | 国产人妻精品午夜福利免费 | 欧美激情一区二区三区成人 | 国产精品怡红院永久免费 | 国产精品美女久久久 | 中文字幕乱码亚洲无线三区 | 亚洲精品一区二区三区婷婷月 | 亚洲人成人无码网www国产 | 免费无码av一区二区 | 鲁一鲁av2019在线 | 日欧一片内射va在线影院 | 国内精品久久毛片一区二区 | 东京无码熟妇人妻av在线网址 | 精品人人妻人人澡人人爽人人 | 国产suv精品一区二区五 | 国内综合精品午夜久久资源 | 亚洲精品国产第一综合99久久 | 国产真实夫妇视频 | 少妇久久久久久人妻无码 | 正在播放东北夫妻内射 | 欧美人与善在线com | 骚片av蜜桃精品一区 | 色狠狠av一区二区三区 | 国产成人精品一区二区在线小狼 | 纯爱无遮挡h肉动漫在线播放 | 少妇被粗大的猛进出69影院 | 欧美人与牲动交xxxx | 久久精品成人欧美大片 | 国产人妻精品午夜福利免费 | 无码国产色欲xxxxx视频 | 国产精品va在线播放 | 女人被男人爽到呻吟的视频 | 99re在线播放 | 激情亚洲一区国产精品 | 少妇无套内谢久久久久 | 少妇人妻av毛片在线看 | 宝宝好涨水快流出来免费视频 | 乱码av麻豆丝袜熟女系列 | 国产乱人偷精品人妻a片 | 无码精品国产va在线观看dvd | 夫妻免费无码v看片 | 大地资源网第二页免费观看 | 国产又爽又黄又刺激的视频 | 日韩精品成人一区二区三区 | 一本大道伊人av久久综合 | 亚洲 欧美 激情 小说 另类 | 大肉大捧一进一出好爽视频 | 久久 国产 尿 小便 嘘嘘 | 久久国产自偷自偷免费一区调 | 一本久久伊人热热精品中文字幕 | 少妇无套内谢久久久久 | 97人妻精品一区二区三区 | 久久久精品456亚洲影院 | 狠狠色欧美亚洲狠狠色www | 999久久久国产精品消防器材 | 亚洲一区二区三区播放 | 亚洲一区二区三区香蕉 | 野狼第一精品社区 | 天堂а√在线地址中文在线 | 精品久久综合1区2区3区激情 | 国产精华av午夜在线观看 | 国产熟妇高潮叫床视频播放 | 六月丁香婷婷色狠狠久久 | 中文字幕av伊人av无码av | 国产精品18久久久久久麻辣 | 亚洲国产精品成人久久蜜臀 | 国内精品人妻无码久久久影院 | 日韩成人一区二区三区在线观看 | www一区二区www免费 | 亚洲国产欧美国产综合一区 | 久久久久se色偷偷亚洲精品av | 亚洲日韩av一区二区三区中文 | 无码人中文字幕 | 女高中生第一次破苞av | 国内精品人妻无码久久久影院蜜桃 | 久久99精品久久久久婷婷 | 日韩精品无码一本二本三本色 | 激情人妻另类人妻伦 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 欧美老熟妇乱xxxxx | 中文字幕av日韩精品一区二区 | 少妇被黑人到高潮喷出白浆 | 久久午夜无码鲁丝片午夜精品 | 少妇厨房愉情理9仑片视频 | 日韩少妇白浆无码系列 | 国产真实乱对白精彩久久 | 夜夜躁日日躁狠狠久久av | 少妇性l交大片 | 国产农村乱对白刺激视频 | 国产精品久久精品三级 | 亚洲国产高清在线观看视频 | 色情久久久av熟女人妻网站 | 久久久久久久女国产乱让韩 | 久久97精品久久久久久久不卡 | 久久精品国产99久久6动漫 | 丰满少妇人妻久久久久久 | 亚洲国产精品一区二区美利坚 | 国产精品第一区揄拍无码 | 蜜臀av无码人妻精品 | 精品国产aⅴ无码一区二区 | 久久久久久国产精品无码下载 | 久久精品99久久香蕉国产色戒 | 亚洲成av人片在线观看无码不卡 | 欧美熟妇另类久久久久久多毛 | 日本饥渴人妻欲求不满 | 亚洲日本va中文字幕 | 人妻中文无码久热丝袜 | 精品国产青草久久久久福利 | 男人和女人高潮免费网站 | 国精品人妻无码一区二区三区蜜柚 | 亚洲成av人片天堂网无码】 | 色综合久久久无码中文字幕 | 国产亚av手机在线观看 | 精品aⅴ一区二区三区 | 国产乱人伦偷精品视频 | 国产明星裸体无码xxxx视频 | 免费无码肉片在线观看 | 激情亚洲一区国产精品 | 亚洲s色大片在线观看 | 又紧又大又爽精品一区二区 | 麻豆精品国产精华精华液好用吗 | 内射欧美老妇wbb | 亚洲欧美综合区丁香五月小说 | 久久精品中文字幕一区 | 午夜精品一区二区三区的区别 | 精品国产一区二区三区四区在线看 | 日韩欧美中文字幕公布 | 55夜色66夜色国产精品视频 | 欧美肥老太牲交大战 | 久久久久99精品国产片 | 日本xxxx色视频在线观看免费 | 55夜色66夜色国产精品视频 | 亚洲日韩一区二区三区 | 国产在线精品一区二区高清不卡 | 国产精品办公室沙发 | 无码成人精品区在线观看 | 丰满妇女强制高潮18xxxx | 3d动漫精品啪啪一区二区中 | 中文无码成人免费视频在线观看 | 极品尤物被啪到呻吟喷水 | 亚洲熟女一区二区三区 | 天天av天天av天天透 | 小泽玛莉亚一区二区视频在线 | 国产超碰人人爽人人做人人添 | 免费乱码人妻系列无码专区 | 国模大胆一区二区三区 | 亚洲 激情 小说 另类 欧美 | 国产亚洲精品久久久闺蜜 | 亚洲国产日韩a在线播放 | 久久五月精品中文字幕 | 国产超碰人人爽人人做人人添 | 亚洲欧洲中文日韩av乱码 | 波多野42部无码喷潮在线 | 国产三级久久久精品麻豆三级 | 一本无码人妻在中文字幕免费 | 给我免费的视频在线观看 | 精品亚洲成av人在线观看 | 久久精品人人做人人综合试看 | 六月丁香婷婷色狠狠久久 | 久久久久久亚洲精品a片成人 | 麻花豆传媒剧国产免费mv在线 | 樱花草在线播放免费中文 | 粗大的内捧猛烈进出视频 | 亚洲性无码av中文字幕 | 国产精品久久久久无码av色戒 | 夜夜躁日日躁狠狠久久av | 国产精品国产自线拍免费软件 | 色婷婷综合激情综在线播放 | 少妇厨房愉情理9仑片视频 | 亚洲精品国产a久久久久久 | 鲁大师影院在线观看 | 国产av久久久久精东av | 熟女少妇人妻中文字幕 | 国精产品一区二区三区 | 国产精品-区区久久久狼 | 精品无码一区二区三区的天堂 | 亚洲国产精品无码一区二区三区 | 玩弄人妻少妇500系列视频 | 国产精品无码mv在线观看 | 内射白嫩少妇超碰 | 国产成人综合美国十次 | 少妇高潮一区二区三区99 | 久久久久久九九精品久 | 1000部啪啪未满十八勿入下载 | 免费网站看v片在线18禁无码 | 又大又硬又爽免费视频 | 欧美野外疯狂做受xxxx高潮 | 国产精品无码久久av | 免费无码的av片在线观看 | 成年美女黄网站色大免费全看 | 中文字幕无线码免费人妻 | 少妇性l交大片欧洲热妇乱xxx | 亚洲精品国偷拍自产在线观看蜜桃 | 国産精品久久久久久久 | 少妇厨房愉情理9仑片视频 | 伊人久久婷婷五月综合97色 | 纯爱无遮挡h肉动漫在线播放 | 久久亚洲中文字幕无码 | 无码人妻av免费一区二区三区 | 亚洲一区二区三区含羞草 | 一二三四社区在线中文视频 | 伊人久久大香线蕉午夜 | 亚洲s色大片在线观看 | 国产成人精品一区二区在线小狼 | 99国产精品白浆在线观看免费 | 国内揄拍国内精品少妇国语 | 四虎影视成人永久免费观看视频 | 国产免费无码一区二区视频 | 无码福利日韩神码福利片 | 人人妻人人藻人人爽欧美一区 | 久在线观看福利视频 | 又大又黄又粗又爽的免费视频 | 国产免费久久久久久无码 | 亚洲色无码一区二区三区 | 无码国内精品人妻少妇 | 亚洲成av人片在线观看无码不卡 | a片在线免费观看 | 十八禁真人啪啪免费网站 | 免费无码肉片在线观看 | 亚欧洲精品在线视频免费观看 | 国产 浪潮av性色四虎 | 欧美日韩一区二区三区自拍 | 亚洲人交乣女bbw | 无码中文字幕色专区 | 欧美35页视频在线观看 | 成年女人永久免费看片 | 久久国产自偷自偷免费一区调 | 国产性生大片免费观看性 | 欧美freesex黑人又粗又大 | 色婷婷av一区二区三区之红樱桃 | 日韩精品无码一本二本三本色 | 日日碰狠狠丁香久燥 | 人人爽人人澡人人人妻 | 日本va欧美va欧美va精品 | 亚洲第一无码av无码专区 | 色婷婷香蕉在线一区二区 | 国产亚洲tv在线观看 | 国产区女主播在线观看 | 国产成人精品久久亚洲高清不卡 | 国产莉萝无码av在线播放 | 亚洲区欧美区综合区自拍区 | 人人爽人人澡人人人妻 | 一本久道久久综合婷婷五月 | 亚洲狠狠婷婷综合久久 | 色窝窝无码一区二区三区色欲 | 欧美丰满老熟妇xxxxx性 | 一本久道久久综合婷婷五月 | 中文字幕无码人妻少妇免费 | 久久久久99精品成人片 | 免费人成在线观看网站 | 久久久www成人免费毛片 | 国产精品人人爽人人做我的可爱 | 国产69精品久久久久app下载 | 久久久久久av无码免费看大片 | 伊人色综合久久天天小片 | 国产精品无码成人午夜电影 | 强辱丰满人妻hd中文字幕 | 7777奇米四色成人眼影 | 人妻体内射精一区二区三四 | 国产麻豆精品一区二区三区v视界 | 中文字幕乱码人妻无码久久 | 日韩人妻少妇一区二区三区 | 亚洲国产精品毛片av不卡在线 | 国产成人无码午夜视频在线观看 | 日本熟妇大屁股人妻 | 国产亚洲美女精品久久久2020 | 欧美日韩亚洲国产精品 | 国产成人无码专区 | 无码av最新清无码专区吞精 | 性生交大片免费看女人按摩摩 | 成人av无码一区二区三区 | 粉嫩少妇内射浓精videos | 国产av一区二区精品久久凹凸 | 国产热a欧美热a在线视频 | 西西人体www44rt大胆高清 | 亚洲无人区一区二区三区 | 2019午夜福利不卡片在线 | 精品无码一区二区三区爱欲 | 狠狠亚洲超碰狼人久久 | 欧美xxxxx精品 | 99麻豆久久久国产精品免费 | 久久精品成人欧美大片 | 精品人妻人人做人人爽夜夜爽 | 亚洲国产一区二区三区在线观看 | 暴力强奷在线播放无码 | 中文字幕无线码免费人妻 | 亚洲国产精品无码一区二区三区 | 国产在线无码精品电影网 | 少妇性l交大片欧洲热妇乱xxx | 奇米影视7777久久精品 | 男女性色大片免费网站 | 无码乱肉视频免费大全合集 | 亚洲爆乳精品无码一区二区三区 | 漂亮人妻洗澡被公强 日日躁 | 欧美日本精品一区二区三区 | 国产精品久久久久无码av色戒 | 日本护士毛茸茸高潮 | 无码福利日韩神码福利片 | 日本又色又爽又黄的a片18禁 | 中文字幕无码av激情不卡 | 2020最新国产自产精品 | 国产人妻精品一区二区三区 | 国产精品久久久午夜夜伦鲁鲁 | 国产人妻精品一区二区三区不卡 | 福利一区二区三区视频在线观看 | 国产av一区二区三区最新精品 | 亚洲欧美日韩综合久久久 | 中文精品无码中文字幕无码专区 | 久久无码中文字幕免费影院蜜桃 | 欧美阿v高清资源不卡在线播放 | 亚洲综合色区中文字幕 | 两性色午夜视频免费播放 | √天堂资源地址中文在线 | 性欧美牲交在线视频 | 又湿又紧又大又爽a视频国产 | 国产精品久久久久久久9999 | 国产乱人伦偷精品视频 | 久久精品人妻少妇一区二区三区 | 人妻插b视频一区二区三区 | 午夜精品久久久内射近拍高清 | 成人动漫在线观看 | 人妻有码中文字幕在线 | 丰满少妇女裸体bbw | 国产色xx群视频射精 | 亚洲 另类 在线 欧美 制服 | 激情内射日本一区二区三区 | 久久久久人妻一区精品色欧美 | 伊人久久大香线蕉av一区二区 | 日韩欧美群交p片內射中文 | 最新版天堂资源中文官网 | 丰满肥臀大屁股熟妇激情视频 | 久久久久久久久蜜桃 | 亚洲区欧美区综合区自拍区 | 欧美亚洲国产一区二区三区 | 超碰97人人射妻 | 亚洲日韩av一区二区三区四区 | 久久精品国产99精品亚洲 | 国产另类ts人妖一区二区 | 黄网在线观看免费网站 | аⅴ资源天堂资源库在线 | 国产精品a成v人在线播放 | 玩弄人妻少妇500系列视频 | 亚洲中文字幕在线无码一区二区 | 久久99精品国产.久久久久 | 国产精品人人爽人人做我的可爱 | 露脸叫床粗话东北少妇 | 精品人妻中文字幕有码在线 | 国产亚洲精品久久久久久久 | 色一情一乱一伦一视频免费看 | 色窝窝无码一区二区三区色欲 | 日本护士xxxxhd少妇 | 中文字幕无码av波多野吉衣 | 国内老熟妇对白xxxxhd | 奇米影视7777久久精品人人爽 | 奇米影视7777久久精品人人爽 | 人妻天天爽夜夜爽一区二区 | 色综合视频一区二区三区 | 亚洲va中文字幕无码久久不卡 | 国产乱人伦偷精品视频 | 亚洲色大成网站www国产 | 在线视频网站www色 | 国产精品18久久久久久麻辣 | 亚洲中文字幕av在天堂 | 中文字幕亚洲情99在线 | 国产av一区二区精品久久凹凸 | 97精品人妻一区二区三区香蕉 | 久久精品国产精品国产精品污 | 国内老熟妇对白xxxxhd | 九九久久精品国产免费看小说 | 久久久国产一区二区三区 | 秋霞成人午夜鲁丝一区二区三区 | 国产精品丝袜黑色高跟鞋 | 国产成人综合色在线观看网站 | 日本欧美一区二区三区乱码 | 任你躁国产自任一区二区三区 | 亚洲国产一区二区三区在线观看 | 亚洲国产欧美日韩精品一区二区三区 | 中文字幕+乱码+中文字幕一区 | 亚洲国产欧美国产综合一区 | 色狠狠av一区二区三区 | 亚洲日韩av一区二区三区中文 | 欧美日本精品一区二区三区 | 特黄特色大片免费播放器图片 | 国产精品视频免费播放 | 奇米影视7777久久精品人人爽 | 1000部夫妻午夜免费 | 亚洲 a v无 码免 费 成 人 a v | 色综合久久久久综合一本到桃花网 | 丰满岳乱妇在线观看中字无码 | 欧美日韩色另类综合 | 无码一区二区三区在线 | 好屌草这里只有精品 | 久久久久人妻一区精品色欧美 | 欧美性生交xxxxx久久久 | 熟女少妇在线视频播放 | 国产精品久久久久7777 | 欧美人与物videos另类 | 中文字幕日产无线码一区 | 国产人妻精品一区二区三区不卡 | 亚洲 高清 成人 动漫 | 波多野结衣高清一区二区三区 | 免费视频欧美无人区码 | 青春草在线视频免费观看 | 亚洲国产欧美国产综合一区 | 久久精品国产亚洲精品 | 久久国产精品精品国产色婷婷 | 夜先锋av资源网站 | 日韩欧美中文字幕在线三区 | 澳门永久av免费网站 | 国产日产欧产精品精品app | 日本va欧美va欧美va精品 | 国产成人人人97超碰超爽8 | 高清不卡一区二区三区 | 精品无码一区二区三区的天堂 | 国产美女极度色诱视频www | 久久精品国产一区二区三区肥胖 | 最新国产乱人伦偷精品免费网站 | 丁香花在线影院观看在线播放 | 天天做天天爱天天爽综合网 | 国产精品无码永久免费888 | 久久天天躁狠狠躁夜夜免费观看 | 激情综合激情五月俺也去 | 无码吃奶揉捏奶头高潮视频 | 精品人妻av区 | 国产麻豆精品精东影业av网站 | 无码精品国产va在线观看dvd | 嫩b人妻精品一区二区三区 | 美女张开腿让人桶 | 国产又爽又猛又粗的视频a片 | 国产精品嫩草久久久久 | 任你躁在线精品免费 | 日韩人妻无码一区二区三区久久99 | 麻豆md0077饥渴少妇 | 综合激情五月综合激情五月激情1 | 亚洲の无码国产の无码影院 | 国产成人精品一区二区在线小狼 | 午夜精品久久久内射近拍高清 | 国产成人无码专区 | 国内丰满熟女出轨videos | 97久久超碰中文字幕 | 午夜精品久久久内射近拍高清 | 亚洲中文字幕av在天堂 | 正在播放老肥熟妇露脸 | 国产人成高清在线视频99最全资源 | 久久久久人妻一区精品色欧美 | 亚洲爆乳大丰满无码专区 | 亚洲乱亚洲乱妇50p | 伊人久久大香线蕉av一区二区 | 丰腴饱满的极品熟妇 | 久久精品国产99久久6动漫 | 一本精品99久久精品77 | 亚洲色偷偷男人的天堂 | 亚洲 激情 小说 另类 欧美 | 极品嫩模高潮叫床 | 欧美xxxx黑人又粗又长 | 欧美亚洲国产一区二区三区 | 夜先锋av资源网站 | 中文字幕精品av一区二区五区 | 又粗又大又硬毛片免费看 | 久久久久成人精品免费播放动漫 | 欧美日韩精品 | 激情五月综合色婷婷一区二区 | 亚洲人交乣女bbw | 丰满人妻一区二区三区免费视频 | 亚洲国产欧美日韩精品一区二区三区 | 欧美亚洲国产一区二区三区 | 婷婷五月综合激情中文字幕 | 99久久精品午夜一区二区 | 久久无码中文字幕免费影院蜜桃 | 亚洲中文字幕乱码av波多ji | 又大又紧又粉嫩18p少妇 | 亚洲欧美国产精品久久 | 欧美精品无码一区二区三区 | 国产人妻久久精品二区三区老狼 | 国产成人av免费观看 | 牲欲强的熟妇农村老妇女视频 | 国产亚洲精品久久久久久久久动漫 | 亚洲日韩av一区二区三区四区 | 亚洲精品国产品国语在线观看 | 国产熟妇另类久久久久 | 日日天干夜夜狠狠爱 | 亚洲国产精品一区二区第一页 | 亚洲狠狠婷婷综合久久 | 日本精品高清一区二区 | 无遮挡啪啪摇乳动态图 | 精品一区二区不卡无码av | 免费人成在线观看网站 | 18精品久久久无码午夜福利 | 男女超爽视频免费播放 | 亚洲综合另类小说色区 | 女人被男人爽到呻吟的视频 | 国产一区二区三区日韩精品 | 国产精品无套呻吟在线 | 免费看男女做好爽好硬视频 | 久久国语露脸国产精品电影 | 国产偷国产偷精品高清尤物 | 高中生自慰www网站 | 一本大道伊人av久久综合 | 5858s亚洲色大成网站www | 亚洲精品一区三区三区在线观看 | 黑人粗大猛烈进出高潮视频 | 精品久久久无码中文字幕 | 性啪啪chinese东北女人 | 国产精品无码久久av | 性色欲情网站iwww九文堂 | 日本熟妇大屁股人妻 | 未满小14洗澡无码视频网站 | 蜜桃无码一区二区三区 | 天堂一区人妻无码 | 国产精品爱久久久久久久 | 无码任你躁久久久久久久 | 无码人妻丰满熟妇区五十路百度 | 国内精品人妻无码久久久影院 | 领导边摸边吃奶边做爽在线观看 | 日日鲁鲁鲁夜夜爽爽狠狠 | 亚洲日韩av一区二区三区四区 | 日韩av无码一区二区三区不卡 | 日本大香伊一区二区三区 | 四虎国产精品一区二区 | 国产精品久免费的黄网站 | 色窝窝无码一区二区三区色欲 | 国产成人无码一二三区视频 | 精品久久久久久人妻无码中文字幕 | 国产偷抇久久精品a片69 | 任你躁国产自任一区二区三区 | 精品久久久久久人妻无码中文字幕 | 日本精品人妻无码免费大全 | 欧美性猛交内射兽交老熟妇 | 丰满妇女强制高潮18xxxx | 老子影院午夜伦不卡 | 日韩精品无码免费一区二区三区 | 天堂а√在线地址中文在线 | 天堂久久天堂av色综合 | 欧美老熟妇乱xxxxx | 精品偷自拍另类在线观看 | 亚洲一区av无码专区在线观看 | 亚洲精品中文字幕乱码 | 亚洲 另类 在线 欧美 制服 | 小sao货水好多真紧h无码视频 | 日本大香伊一区二区三区 | 丰满少妇人妻久久久久久 | 伊人久久大香线蕉午夜 | 亚洲成熟女人毛毛耸耸多 | 亚洲精品综合一区二区三区在线 | 国产激情综合五月久久 | 国产美女极度色诱视频www | 无码任你躁久久久久久久 | 国产成人精品久久亚洲高清不卡 | 欧美丰满熟妇xxxx | 国产成人无码区免费内射一片色欲 | 国产免费久久久久久无码 | 日韩成人一区二区三区在线观看 | 疯狂三人交性欧美 | 国产精品高潮呻吟av久久4虎 | 国产精品亚洲综合色区韩国 | 午夜精品一区二区三区的区别 | 国产精品18久久久久久麻辣 | 亚洲熟妇色xxxxx亚洲 | 欧美精品免费观看二区 | 在线精品亚洲一区二区 | 国产69精品久久久久app下载 | 熟女体下毛毛黑森林 | 国产av人人夜夜澡人人爽麻豆 | 日韩精品无码一区二区中文字幕 | 麻豆国产丝袜白领秘书在线观看 | 一本精品99久久精品77 | 免费视频欧美无人区码 | 97精品人妻一区二区三区香蕉 | 自拍偷自拍亚洲精品10p | 国产性生大片免费观看性 | 午夜精品久久久久久久 | 欧美国产日产一区二区 | 曰韩少妇内射免费播放 | 亚洲精品午夜无码电影网 | 377p欧洲日本亚洲大胆 | 在线欧美精品一区二区三区 | 国产精品a成v人在线播放 | 日韩人妻无码中文字幕视频 | 未满小14洗澡无码视频网站 | 骚片av蜜桃精品一区 | 日韩人妻无码一区二区三区久久99 | 无码午夜成人1000部免费视频 | 久久久久人妻一区精品色欧美 | 99久久精品日本一区二区免费 | 国产人妻精品午夜福利免费 | 性做久久久久久久久 | 国产无套内射久久久国产 | 天天综合网天天综合色 | 99在线 | 亚洲 | 国产手机在线αⅴ片无码观看 | 久在线观看福利视频 | 久久99国产综合精品 | 无码成人精品区在线观看 | 欧美亚洲日韩国产人成在线播放 | 国产做国产爱免费视频 | 久久亚洲精品中文字幕无男同 | aⅴ在线视频男人的天堂 | 国产成人精品无码播放 | 装睡被陌生人摸出水好爽 | 在线播放亚洲第一字幕 | 蜜臀av在线播放 久久综合激激的五月天 | 亚洲精品国偷拍自产在线麻豆 | 久久精品无码一区二区三区 | 国产极品美女高潮无套在线观看 | 一区二区三区高清视频一 | 亚洲欧美日韩成人高清在线一区 | 纯爱无遮挡h肉动漫在线播放 | 色综合久久久无码网中文 | 婷婷五月综合激情中文字幕 | 亚洲欧美中文字幕5发布 | 国产电影无码午夜在线播放 | 亚洲熟妇色xxxxx欧美老妇 | 国产精品理论片在线观看 | 亚洲a无码综合a国产av中文 | 久久久久免费看成人影片 | 无码任你躁久久久久久久 | 国产精品.xx视频.xxtv | 精品人妻av区 | 亚洲日韩乱码中文无码蜜桃臀网站 | 又色又爽又黄的美女裸体网站 | 在线 国产 欧美 亚洲 天堂 | 久久久精品欧美一区二区免费 | 色综合久久久无码网中文 | 男女爱爱好爽视频免费看 | 国产精品美女久久久久av爽李琼 | 鲁大师影院在线观看 | 狠狠色色综合网站 | 亚洲 高清 成人 动漫 | 久久精品丝袜高跟鞋 | 久久精品人人做人人综合试看 | 巨爆乳无码视频在线观看 | 国产精品va在线播放 | 欧美野外疯狂做受xxxx高潮 | 国产办公室秘书无码精品99 | 老熟女乱子伦 | 波多野结衣 黑人 | 国产情侣作爱视频免费观看 | 亚洲第一无码av无码专区 | 国产麻豆精品一区二区三区v视界 | 天堂а√在线地址中文在线 | 亚洲 a v无 码免 费 成 人 a v | 超碰97人人做人人爱少妇 | 国产色xx群视频射精 | 日本www一道久久久免费榴莲 | 国产97在线 | 亚洲 | 在线а√天堂中文官网 | 天下第一社区视频www日本 | 无码av免费一区二区三区试看 | 国产激情无码一区二区 | 人妻少妇精品无码专区动漫 | 婷婷丁香五月天综合东京热 | 熟妇人妻无乱码中文字幕 | 亚洲日韩一区二区 | 国产综合久久久久鬼色 | 精品无码一区二区三区爱欲 | 亚洲人成人无码网www国产 | 国产极品美女高潮无套在线观看 |