diff options
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | CMakeLists.txt | 65 | ||||
-rw-r--r-- | COPYING | 501 | ||||
-rw-r--r-- | PySide/CMakeLists.txt | 15 | ||||
-rw-r--r-- | PySide/QtCore/CMakeLists.txt | 35 | ||||
-rw-r--r-- | PySide/QtCore/qtcore_conversions.h | 13 | ||||
-rw-r--r-- | PySide/QtCore/typesystem_core.xml | 838 | ||||
-rw-r--r-- | PySide/global.h | 1163 | ||||
-rw-r--r-- | PySide/licensecomment.txt | 23 | ||||
-rw-r--r-- | cmake_uninstall.cmake | 21 |
10 files changed, 2679 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f5fee14 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +build +*.kdev4 +.kdev4 +*~ +*.log diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..b4f3b62 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,65 @@ +project(pyside) + +cmake_minimum_required(VERSION 2.6) + +set(CMAKE_CXX_FLAGS_RELEASE "-Wall -DNDEBUG -Os -Wl,-O1 -Wl,--hash-style=gnu") +set(CMAKE_CXX_FLAGS_DEBUG "-g -fno-common -Wall") + +find_package(PythonLibs REQUIRED) +find_package(PythonInterp REQUIRED) +find_package(Shiboken REQUIRED) +find_package(Qt4 4.5.0 REQUIRED) + +set(BINDING_NAME PySide) +set(BINDING_API_MAJOR_VERSION "0") +set(BINDING_API_MINOR_VERSION "1") +set(BINDING_API_VERSION "${BINDING_API_MAJOR_VERSION}.${BINDING_API_MINOR_VERSION}") + +set(LIB_SUFFIX "" CACHE STRING "Define suffix of directory name (32/64)" ) +set(LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}" CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is /lib${LIB_SUFFIX})" FORCE) + +if (NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE Release) +endif (NOT CMAKE_BUILD_TYPE) + +include(${QT_USE_FILE}) +if (${QTVERSION} VERSION_LESS 4.5.0) + message(FATAL_ERROR "You need Qt4.5, found ${QTVERSION}.") +endif (${QTVERSION} VERSION_LESS 4.5.0) + +set(BINDING_VERSION ${BINDING_API_VERSION}.${QT_VERSION_MAJOR}.${QT_VERSION_MINOR}) +find_program(GENERATOR generatorrunner REQUIRED) + +if (NOT GENERATOR) + message(FATAL_ERROR "You need to specify GENERATOR variable (-DGENERATOR=value)") +endif (NOT GENERATOR) + +# uninstall target +configure_file("${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake" + "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" + IMMEDIATE @ONLY) +add_custom_target(uninstall "${CMAKE_COMMAND}" + -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake") + + +set(ARCHIVE_NAME ${CMAKE_PROJECT_NAME}-${BINDING_API_VERSION}) +add_custom_target(dist + COMMAND git archive --prefix=${ARCHIVE_NAME}/ HEAD + | bzip2 > ${CMAKE_BINARY_DIR}/${ARCHIVE_NAME}.tar.bz2 + WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}) + +execute_process( + COMMAND ${PYTHON_EXECUTABLE} -c "from distutils import sysconfig; \\ + print sysconfig.get_python_lib(1,0,prefix='${CMAKE_INSTALL_PREFIX}')" + OUTPUT_VARIABLE SITE_PACKAGE + OUTPUT_STRIP_TRAILING_WHITESPACE) +if (NOT SITE_PACKAGE) + message(FATAL_ERROR "Could not detect Python module installation directory.") +endif (NOT SITE_PACKAGE) + +set(GENERATOR_EXTRA_FLAGS --generatorSet=shiboken) + +enable_testing() + +# project directories +add_subdirectory(${BINDING_NAME}) @@ -0,0 +1,501 @@ +GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + <one line to give the library's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + <signature of Ty Coon>, 1 April 1990 + Ty Coon, President of Vice + diff --git a/PySide/CMakeLists.txt b/PySide/CMakeLists.txt new file mode 100644 index 0000000..aa4b114 --- /dev/null +++ b/PySide/CMakeLists.txt @@ -0,0 +1,15 @@ +macro(execute_generator module sources) +add_custom_command(OUTPUT ${${sources}} +COMMAND ${GENERATOR} ${GENERATOR_EXTRA_FLAGS} + ${CMAKE_CURRENT_SOURCE_DIR}/../global.h + --include-paths=${QT_INCLUDE_DIR} + --typesystem-paths=${typesystem_SOURCE_DIR} + --output-directory=${CMAKE_CURRENT_BINARY_DIR} + --license-file=${CMAKE_CURRENT_SOURCE_DIR}/../licensecomment.txt + ${CMAKE_CURRENT_SOURCE_DIR}/typesystem_${module}.xml +WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} +COMMENT "Running generator for ${module}..." +) +endmacro(execute_generator) + +add_subdirectory(QtCore) diff --git a/PySide/QtCore/CMakeLists.txt b/PySide/QtCore/CMakeLists.txt new file mode 100644 index 0000000..e777374 --- /dev/null +++ b/PySide/QtCore/CMakeLists.txt @@ -0,0 +1,35 @@ +project(QtCore) + +set(QtCore_SRC +${CMAKE_CURRENT_BINARY_DIR}/PySide/QtCore/qregexp_wrapper.cpp +${CMAKE_CURRENT_BINARY_DIR}/PySide/QtCore/qchar_wrapper.cpp +${CMAKE_CURRENT_BINARY_DIR}/PySide/QtCore/qstring_wrapper.cpp +${CMAKE_CURRENT_BINARY_DIR}/PySide/QtCore/qstring_wrapper.cpp +${CMAKE_CURRENT_BINARY_DIR}/PySide/QtCore/qpoint_wrapper.cpp +${CMAKE_CURRENT_BINARY_DIR}/PySide/QtCore/qpointf_wrapper.cpp +${CMAKE_CURRENT_BINARY_DIR}/PySide/QtCore/qrect_wrapper.cpp +${CMAKE_CURRENT_BINARY_DIR}/PySide/QtCore/qrectf_wrapper.cpp +${CMAKE_CURRENT_BINARY_DIR}/PySide/QtCore/qsize_wrapper.cpp +${CMAKE_CURRENT_BINARY_DIR}/PySide/QtCore/qsizef_wrapper.cpp +${CMAKE_CURRENT_BINARY_DIR}/PySide/QtCore/qtcore_module_wrapper.cpp +) + +execute_generator(core QtCore_SRC) + +include_directories(${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_CURRENT_BINARY_DIR}/${BINDING_NAME}/QtCore/ + ${QT_INCLUDE_DIR} + ${SHIBOKEN_INCLUDE_DIR} + ${PYTHON_INCLUDE_PATH} + ) +add_library(QtCore MODULE ${QtCore_SRC}) +set_property(TARGET QtCore PROPERTY PREFIX "") +target_link_libraries(QtCore + ${PYTHON_LIBRARIES} + ${SHIBOKEN_LIBRARY} + ${QT_QTCORE_LIBRARY} + ) + +# install +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/QtCore.so + DESTINATION ${SITE_PACKAGE}/${BINDING_NAME}) diff --git a/PySide/QtCore/qtcore_conversions.h b/PySide/QtCore/qtcore_conversions.h new file mode 100644 index 0000000..076eb62 --- /dev/null +++ b/PySide/QtCore/qtcore_conversions.h @@ -0,0 +1,13 @@ + +template <> +struct Converter<QBool> +{ + static PyObject* toPython(ValueHolder<QBool> holder) + { + return PyBool_FromLong((bool)holder.value); + } + static QBool toCpp(PyObject* pyobj) + { + return QBool(pyobj == Py_True); + } +}; diff --git a/PySide/QtCore/typesystem_core.xml b/PySide/QtCore/typesystem_core.xml new file mode 100644 index 0000000..c5ec512 --- /dev/null +++ b/PySide/QtCore/typesystem_core.xml @@ -0,0 +1,838 @@ +<?xml version="1.0"?> +<typesystem package="PySide.QtCore"> + <!-- Rejections due to shiboken bugs --> + <rejection class="QString" function-name="replace"/> <!-- A bug in overload method decisor --> + + <!-- A bug when we have global functions with just one parameter --> + <rejection class="" function-name="bin" /> + <rejection class="" function-name="bom" /> + <rejection class="" function-name="center" /> + <rejection class="" function-name="dec" /> + <rejection class="" function-name="endl" /> + <rejection class="" function-name="fixed" /> + <rejection class="" function-name="flush" /> + <rejection class="" function-name="forcepoint" /> + <rejection class="" function-name="forcesign" /> + <rejection class="" function-name="hex" /> + <rejection class="" function-name="left" /> + <rejection class="" function-name="lowercasebase" /> + <rejection class="" function-name="lowercasedigits" /> + <rejection class="" function-name="noforcepoint" /> + <rejection class="" function-name="noforcesign" /> + <rejection class="" function-name="noshowbase" /> + <rejection class="" function-name="oct" /> + <rejection class="" function-name="qAddPostRoutine" /> + <rejection class="" function-name="qCompress" /> + <rejection class="" function-name="qInf" /> + <rejection class="" function-name="qUncompress" /> + <rejection class="" function-name="qRemovePostRoutine" /> + <rejection class="" function-name="qSetRealNumberPrecision" /> + <rejection class="" function-name="reset" /> + <rejection class="" function-name="right" /> + <rejection class="" function-name="scientific" /> + <rejection class="" function-name="showbase" /> + <rejection class="" function-name="uppercasebase" /> + <rejection class="" function-name="uppercasedigits" /> + <rejection class="" function-name="ws" /> + <rejection class="" function-name="" /> + <rejection class="" function-name="" /> + <rejection class="" function-name="" /> + <!-- End of rejections due to shiboken bugs --> + + + <rejection class="QFutureSynchronizer"/> + <rejection class="QByteArray" function-name="contains"/> + <rejection class="QRunnable"/> + <rejection class="QSharedPointer"/> + <rejection class="QWeakPointer"/> + <rejection class="*" function-name="tr" /> + <rejection class="*" function-name="trUtf8" /> + <rejection class="*" function-name="qt_metacast" /> + <rejection class="*" function-name="qt_metacall" /> + <rejection class="" function-name="qSharedPointerDynamicCast"/> + <rejection class="" function-name="qSharedPointerConstCast"/> + <rejection class="" function-name="qSharedPointerCast"/> + <rejection class="" function-name="qWeakPointerCast"/> + <rejection class="" function-name="qDebug"/> + <rejection class="" function-name="qFatal"/> + <rejection class="" function-name="qCritical"/> + <rejection class="" function-name="qAbs"/> + <rejection class="" function-name="qErrnoWarning"/> + <rejection class="" function-name="qstrcpy"/> + <rejection class="" function-name="qstrcmp"/> + <rejection class="" function-name="qstrdup"/> + <rejection class="" function-name="qstrncpy"/> + <rejection class="" function-name="qAbs"/> + <rejection class="" function-name="qAccessibleEditableTextCastHelper"/> + <rejection class="" function-name="qAccessibleTableCastHelper"/> + <rejection class="" function-name="qAccessibleTextCastHelper"/> + <rejection class="" function-name="qAccessibleValueCastHelper"/> + <rejection class="" function-name="qAppName"/> + <rejection class="" function-name="qAtomicAssign"/> + <rejection class="" function-name="q_atomic_decrement"/> + <rejection class="" function-name="qAtomicDetach"/> + <rejection class="" function-name="q_atomic_fetch_and_add_int"/> + <rejection class="" function-name="q_atomic_fetch_and_add_ptr"/> + <rejection class="" function-name="q_atomic_increment"/> + <rejection class="" function-name="q_atomic_set_int"/> + <rejection class="" function-name="q_atomic_set_ptr"/> + <rejection class="" function-name="q_atomic_test_and_set_int"/> + <rejection class="" function-name="q_atomic_test_and_set_ptr"/> + <rejection class="" function-name="qBinaryFind"/> + <rejection class="" function-name="qBound"/> + <rejection class="" function-name="qbswap"/> + <rejection class="" function-name="qbswap_helper"/> + <rejection class="" function-name="qbswap<qint16>"/> + <rejection class="" function-name="qbswap<qint32>"/> + <rejection class="" function-name="qbswap<qint64>"/> + <rejection class="" function-name="qbswap<quint16>"/> + <rejection class="" function-name="qbswap<quint32>"/> + <rejection class="" function-name="qbswap<quint64>"/> + <rejection class="" function-name="qCeil"/> + <rejection class="" function-name="qCopy"/> + <rejection class="" function-name="qCopyBackward"/> + <rejection class="" function-name="qCos"/> + <rejection class="" function-name="qCount"/> + <rejection class="" function-name="qDeleteAll"/> + <rejection class="" function-name="qDrawPlainRect"/> + <rejection class="" function-name="qDrawShadeLine"/> + <rejection class="" function-name="qDrawShadePanel"/> + <rejection class="" function-name="qDrawShadeRect"/> + <rejection class="" function-name="qDrawWinButton"/> + <rejection class="" function-name="qDrawWinPanel"/> + <rejection class="" function-name="qEqual"/> + <rejection class="" function-name="qFatal"/> + <rejection class="" function-name="qFill"/> + <rejection class="" function-name="qFind"/> + <rejection class="" function-name="qFindChild"/> + <rejection class="" function-name="qFindChildren"/> + <rejection class="" function-name="qFindString"/> + <rejection class="" function-name="qFindStringBoyerMoore"/> + <rejection class="" function-name="qFloor"/> + <rejection class="" function-name="qForeachContainer"/> + <rejection class="" function-name="qForeachContainerNew"/> + <rejection class="" function-name="qForeachPointer"/> + <rejection class="" function-name="qFree"/> + <rejection class="" function-name="qFromBigEndian"/> + <rejection class="" function-name="qFromBigEndian<qint16>"/> + <rejection class="" function-name="qFromBigEndian<qint32>"/> + <rejection class="" function-name="qFromBigEndian<qint64>"/> + <rejection class="" function-name="qFromBigEndian<quint16>"/> + <rejection class="" function-name="qFromBigEndian<quint32>"/> + <rejection class="" function-name="qFromBigEndian<quint64>"/> + <rejection class="" function-name="qFromLittleEndian"/> + <rejection class="" function-name="qFromLittleEndian<qint16>"/> + <rejection class="" function-name="qFromLittleEndian<qint32>"/> + <rejection class="" function-name="qFromLittleEndian<qint64>"/> + <rejection class="" function-name="qFromLittleEndian<quint16>"/> + <rejection class="" function-name="qFromLittleEndian<quint32>"/> + <rejection class="" function-name="qFromLittleEndian<quint64>"/> + <rejection class="" function-name="qgetenv"/> + <rejection class="" function-name="qgraphicsitem_cast"/> + <rejection class="" function-name="qGreater"/> + <rejection class="" function-name="qHash"/> + <rejection class="" function-name="qInstallMsgHandler"/> + <rejection class="" function-name="qIntCast"/> + <rejection class="" function-name="qIsDetached"/> + <rejection class="" function-name="qIsDetached<QBitArray>"/> + <rejection class="" function-name="qIsDetached<QBitmap>"/> + <rejection class="" function-name="qIsDetached<QBrush>"/> + <rejection class="" function-name="qIsDetached<QByteArray>"/> + <rejection class="" function-name="qIsDetached<QIcon>"/> + <rejection class="" function-name="qIsDetached<QImage>"/> + <rejection class="" function-name="qIsDetached<QKeySequence>"/> + <rejection class="" function-name="qIsDetached<QPen>"/> + <rejection class="" function-name="qIsDetached<QPicture>"/> + <rejection class="" function-name="qIsDetached<QPixmap>"/> + <rejection class="" function-name="qIsDetached<QString>"/> + <rejection class="" function-name="qIsDetached<QUrl>"/> + <rejection class="" function-name="qIsDetached<QVariant>"/> + <rejection class="" function-name="qLess"/> + <rejection class="" function-name="qLn"/> + <rejection class="" function-name="qLowerBound"/> + <rejection class="" function-name="qMakePair"/> + <rejection class="" function-name="qMalloc"/> + <rejection class="" function-name="qMapLessThanKey"/> + <rejection class="" function-name="qMax"/> + <rejection class="" function-name="qMemCopy"/> + <rejection class="" function-name="qMemSet"/> + <rejection class="" function-name="qMetaTypeConstructHelper"/> + <rejection class="" function-name="qMetaTypeDeleteHelper"/> + <rejection class="" function-name="qMetaTypeId"/> + <rejection class="" function-name="qMetaTypeLoadHelper"/> + <rejection class="" function-name="qMetaTypeSaveHelper"/> + <rejection class="" function-name="qMin"/> + <rejection class="" function-name="qobject_cast"/> + <rejection class="" function-name="qobject_cast<const QWidget*>"/> + <rejection class="" function-name="qobject_cast<QAccessibleBridgeFactoryInterface*>"/> + <rejection class="" function-name="qobject_cast<QAccessibleBridgeFactoryInterface*>"/> + <rejection class="" function-name="qobject_cast<QAccessibleFactoryInterface*>"/> + <rejection class="" function-name="qobject_cast<QAccessibleInterface*>"/> + <rejection class="" function-name="qobject_cast<QFactoryInterface*>"/> + <rejection class="" function-name="qobject_cast<QFactoryInterface*>"/> + <rejection class="" function-name="qobject_cast<QIconEngineFactoryInterface*>"/> + <rejection class="" function-name="qobject_cast<QIconEngineFactoryInterface*>"/> + <rejection class="" function-name="qobject_cast<QIconEngineFactoryInterfaceV2*>"/> + <rejection class="" function-name="qobject_cast<QIconEngineFactoryInterfaceV2*>"/> + <rejection class="" function-name="qobject_cast<QImageIOHandlerFactoryInterface*>"/> + <rejection class="" function-name="qobject_cast<QInputContextFactoryInterface*>"/> + <rejection class="" function-name="qobject_cast<QPictureFormatInterface*>"/> + <rejection class="" function-name="qobject_cast<QPictureFormatInterface*>"/> + <rejection class="" function-name="qobject_cast<QStyleFactoryInterface*>"/> + <rejection class="" function-name="qobject_cast<QTextCodecFactoryInterface*>"/> + <rejection class="" function-name="qobject_cast<QTextObjectInterface*>"/> + <rejection class="" function-name="qobject_cast<QWidget*>"/> + <rejection class="" function-name="qPow"/> + <rejection class="" function-name="qputenv"/> + <rejection class="" function-name="qRealloc"/> + <rejection class="" function-name="qRegisterMetaType"/> + <rejection class="" function-name="qRegisterMetaTypeStreamOperators"/> + <rejection class="" function-name="qRegisterStaticPluginInstanceFunction"/> + <rejection class="" function-name="qRound64"/> + <rejection class="" function-name="qSetFieldWidth"/> + <rejection class="" function-name="qSetPadChar"/> + <rejection class="" function-name="qSin"/> + <rejection class="" function-name="qsnprintf"/> + <rejection class="" function-name="qSort"/> + <rejection class="" function-name="qSqrt"/> + <rejection class="" function-name="qStableSort"/> + <rejection class="" function-name="qStringComparisonHelper"/> + <rejection class="" function-name="qstyleoption_cast"/> + <rejection class="" function-name="qSwap"/> + <rejection class="" function-name="qSwap<QBitArray>"/> + <rejection class="" function-name="qSwap<QBitmap>"/> + <rejection class="" function-name="qSwap<QBrush>"/> + <rejection class="" function-name="qSwap<QByteArray>"/> + <rejection class="" function-name="qSwap<QIcon>"/> + <rejection class="" function-name="qSwap<QImage>"/> + <rejection class="" function-name="qSwap<QKeySequence>"/> + <rejection class="" function-name="qSwap<QPen>"/> + <rejection class="" function-name="qSwap<QPicture>"/> + <rejection class="" function-name="qSwap<QPixmap>"/> + <rejection class="" function-name="qSwap<QString>"/> + <rejection class="" function-name="qSwap<QUrl>"/> + <rejection class="" function-name="qSwap<QVariant>"/> + <rejection class="" function-name="qt_assert"/> + <rejection class="" function-name="qt_assert_x"/> + <rejection class="" function-name="qt_check_pointer"/> + <rejection class="" function-name="qt_error_string"/> + <rejection class="" function-name="qThreadStorage_localData"/> + <rejection class="" function-name="qThreadStorage_localData_const"/> + <rejection class="" function-name="qThreadStorage_setLocalData"/> + <rejection class="" function-name="qt_message_output"/> + <rejection class="" function-name="qt_noop"/> + <rejection class="" function-name="qToBigEndian"/> + <rejection class="" function-name="qToLittleEndian"/> + <rejection class="" function-name="qToUnaligned"/> + <rejection class="" function-name="qToVoidFuture"/> + <rejection class="" function-name="qt_qFindChild_helper"/> + <rejection class="" function-name="qt_qFindChildren_helper"/> + <rejection class="" function-name="qt_set_sequence_auto_mnemonic"/> + <rejection class="" function-name="qUpperBound"/> + <rejection class="" function-name="qVariantCanConvert"/> + <rejection class="" function-name="qvariant_cast"/> + <rejection class="" function-name="qvariant_cast_helper"/> + <rejection class="" function-name="qVariantFromValue"/> + <rejection class="" function-name="qVariantSetValue"/> + <rejection class="" function-name="qVariantValue"/> + <rejection class="" function-name="qvsnprintf"/> + <rejection class="" function-name="qWarning"/> + <rejection class="QThreadPool"/> + <enum-type name="QXmlStreamReader::Error"/> + <enum-type name="QXmlStreamReader::TokenType"/> + <enum-type name="QString::NormalizationForm" /> + <enum-type name="QString::SectionFlag" /> + <enum-type name="QString::SplitBehavior"/> + <enum-type name="QChar::Decomposition" /> + <enum-type name="QChar::Direction" /> + <enum-type name="QChar::Joining" /> + <enum-type name="QChar::SpecialCharacter" /> + <enum-type name="QChar::UnicodeVersion" /> + <enum-type name="QChar::CombiningClass" /> + <enum-type name="QLineF::IntersectType" /> + <enum-type name="QVariant::Type" /> + <primitive-type name="bool"/> + <primitive-type name="double"/> + <primitive-type name="qreal"/> + <primitive-type name="float"/> + <primitive-type name="qint64"/> + <primitive-type name="__int64"/> + <primitive-type name="unsigned __int64"/> + <primitive-type name="unsigned long long"/> + <primitive-type name="long long"/> + <primitive-type name="qlonglong" target-lang-api-name="PyLong" /> + <primitive-type name="qulonglong" target-lang-api-name="PyLong" /> + <primitive-type name="short"/> + <primitive-type name="signed short"/> + <primitive-type name="ushort" target-lang-api-name="PyInt" /> + <primitive-type name="unsigned short"/> + <primitive-type name="char"/> + <primitive-type name="signed char"/> + <primitive-type name="uchar"/> + <primitive-type name="unsigned char"/> + <primitive-type name="int"/> + <primitive-type name="signed int"/> + <primitive-type name="uint"/> + <primitive-type name="ulong"/> + <primitive-type name="unsigned int"/> + <primitive-type name="signed long"/> + <primitive-type name="long"/> + <primitive-type name="unsigned long"/> + <primitive-type name="WId"/> + <primitive-type name="Qt::HANDLE"/> + <primitive-type name="QByteRef"/> + <primitive-type name="QBitRef"/> + <primitive-type name="QBool" target-lang-api-name="PyBool"> + <conversion-rule file="qtcore_conversions.h"/> + </primitive-type> + <primitive-type name="std::string"/> + <primitive-type name="std::wstring"/> + <primitive-type name="QStdWString"/> + + <container-type name="QList" type="list"/> + <rejection class="QList" function-name="back"/> + <rejection class="QList" function-name="begin"/> + <rejection class="QList" function-name="constBegin"/> + <rejection class="QList" function-name="constData"/> + <rejection class="QList" function-name="constEnd"/> + <rejection class="QList" function-name="data"/> + <rejection class="QList" function-name="end"/> + <rejection class="QList" function-name="erase"/> + <rejection class="QList" function-name="erase"/> + <rejection class="QList" function-name="free"/> + <rejection class="QList" function-name="fromList"/> + <rejection class="QList" function-name="fromSet"/> + <rejection class="QList" function-name="fromSet"/> + <rejection class="QList" function-name="fromStdList" /> + <rejection class="QList" function-name="front" /> + <rejection class="QList" function-name="first" /> + <rejection class="QList" function-name="insert"/> + <rejection class="QList" function-name="last"/> + <rejection class="QList" function-name="malloc"/> + <rejection class="QList" function-name="node_construct"/> + <rejection class="QList" function-name="node_copy"/> + <rejection class="QList" function-name="node_destruct"/> + <rejection class="QList" function-name="operator[]"/> + <rejection class="QList" function-name="operator="/> + <rejection class="QList" function-name="toSet"/> + <rejection class="QList" function-name="toStdList" /> + + <container-type name="QVector" type="vector"/> + <rejection class="QVector" function-name="back"/> + <rejection class="QVector" function-name="begin"/> + <rejection class="QVector" function-name="constBegin"/> + <rejection class="QVector" function-name="constData"/> + <rejection class="QVector" function-name="constEnd"/> + <rejection class="QVector" function-name="data"/> + <rejection class="QVector" function-name="end"/> + <rejection class="QVector" function-name="erase"/> + <rejection class="QVector" function-name="first"/> + <rejection class="QVector" function-name="free"/> + <rejection class="QVector" function-name="front"/> + <rejection class="QVector" function-name="insert"/> + <rejection class="QVector" function-name="last"/> + <rejection class="QVector" function-name="malloc"/> + <rejection class="QVector" function-name="alloc"/> + <rejection class="QVector" function-name="operator+="/> + <rejection class="QVector" function-name="operator[]"/> + <rejection class="QVector" function-name="operator="/> + <rejection class="QVector" function-name="toStdVector"/> + <rejection class="QVector" function-name="fromStdVector"/> + + <container-type name="QQueue" type="queue"/> + <rejection class="QQueue" function-name="head"/> + + <container-type name="QHash" type="hash"/> + <container-type name="QLinkedList" type="linked-list"/> + <container-type name="QMap" type="map"/> + <container-type name="QMultiMap" type="multi-map"/> + <container-type name="QPair" type="pair"/> + <container-type name="QSet" type="set"/> + <container-type name="QStack" type="stack"/> + + <rejection class="*" function-name="d_func"/> + <rejection class="*" function-name="data_ptr"/> + <rejection class="*" function-name="detach"/> + <rejection class="*" function-name="isDetached"/> + <rejection class="*" field-name="d_ptr"/> + <rejection class="*" field-name="d"/> + <rejection class="*" field-name="staticMetaObject"/> + <!-- not support array in property --> + <rejection class="QTextCodec::ConverterState" field-name="state_data"/> + <rejection class="QString" field-name="null"/> + <rejection class="QVariant" field-name="handler"/> + <rejection class="QUuid" field-name="data1"/> + <rejection class="QUuid" field-name="data2"/> + <rejection class="QUuid" field-name="data3"/> + <rejection class="QUuid" field-name="data4"/> + <rejection class="" enum-name="QtValidLicenseForTestModule"/> + <rejection class="" enum-name="QtValidLicenseForDBusModule"/> + <rejection class="" enum-name="QtValidLicenseForSqlModule"/> + <rejection class="" enum-name="QtValidLicenseForOpenGLModule"/> + <rejection class="" enum-name="QtValidLicenseForScriptToolsModule"/> + <rejection class="" enum-name="__codecvt_result"/> + <rejection class="" enum-name="enum_1"/> + <rejection class="" enum-name="enum_2"/> + <rejection class="" enum-name="QtValidLicenseForXmlModule"/> + <rejection class="" enum-name="QtValidLicenseForXmlPatternsModule"/> + <rejection class="" enum-name="QtValidLicenseForActiveQtModule"/> + <rejection class="" enum-name="QtValidLicenseForCoreModule"/> + <rejection class="" enum-name="QtValidLicenseForQt3SupportLightModule"/> + <rejection class="" enum-name="QtValidLicenseForQt3SupportModule"/> + <rejection class="" enum-name="QtValidLicenseForNetworkModule"/> + <rejection class="" enum-name="QtValidLicenseForSvgModule"/> + <rejection class="" enum-name="QtValidLicenseForGuiModule"/> + <rejection class="" enum-name="QtValidLicenseForScriptModule"/> + <rejection class="" enum-name="QtValidLicenseForHelpModule"/> + <rejection class="QtConcurrent" enum-name="enum_1"/> + <rejection class="QFuture::const_iterator"/> + <rejection class="QFutureInterface"/> + <rejection class="QFutureInterfaceBase"/> + <rejection class="QtConcurrent::BlockSizeManager"/> + <rejection class="QtConcurrent::ConstMemberFunctionWrapper"/> + <rejection class="QtConcurrent::Exception"/> + <rejection class="QtConcurrent::FilterKernel"/> + <rejection class="QtConcurrent::FilteredEachKernel"/> + <rejection class="QtConcurrent::FilteredReducedKernel"/> + <rejection class="QtConcurrent::FunctionWrapper0"/> + <rejection class="QtConcurrent::FunctionWrapper1"/> + <rejection class="QtConcurrent::FunctionWrapper2"/> + <rejection class="QtConcurrent::IntermediateResults"/> + <rejection class="QtConcurrent::IterateKernel"/> + <rejection class="QtConcurrent::MapKernel"/> + <rejection class="QtConcurrent::MappedEachKernel"/> + <rejection class="QtConcurrent::MappedReducedKernel"/> + <rejection class="QtConcurrent::Median"/> + <rejection class="QtConcurrent::MemberFunctionWrapper"/> + <rejection class="QtConcurrent::MemberFunctionWrapper1"/> + <rejection class="QtConcurrent::ReduceKernel"/> + <rejection class="QtConcurrent::ResultItem"/> + <rejection class="QtConcurrent::ResultIterator"/> + <rejection class="QtConcurrent::ResultIteratorBase"/> + <rejection class="QtConcurrent::ResultReporter"/> + <rejection class="QtConcurrent::ResultStore"/> + <rejection class="QtConcurrent::ResultStoreBase"/> + <rejection class="QtConcurrent::RunFunctionTask"/> + <rejection class="QtConcurrent::RunFunctionTaskBase"/> + <rejection class="QtConcurrent::SelectSpecialization"/> + <rejection class="QtConcurrent::SelectStoredConstMemberFunctionCall0"/> + <rejection class="QtConcurrent::SelectStoredConstMemberFunctionCall1"/> + <rejection class="QtConcurrent::SelectStoredConstMemberFunctionCall2"/> + <rejection class="QtConcurrent::SelectStoredConstMemberFunctionCall3"/> + <rejection class="QtConcurrent::SelectStoredConstMemberFunctionCall4"/> + <rejection class="QtConcurrent::SelectStoredConstMemberFunctionCall5"/> + <rejection class="QtConcurrent::SelectStoredConstMemberFunctionPointerCall0"/> + <rejection class="QtConcurrent::SelectStoredConstMemberFunctionPointerCall1"/> + <rejection class="QtConcurrent::SelectStoredConstMemberFunctionPointerCall2"/> + <rejection class="QtConcurrent::SelectStoredConstMemberFunctionPointerCall3"/> + <rejection class="QtConcurrent::SelectStoredConstMemberFunctionPointerCall4"/> + <rejection class="QtConcurrent::SelectStoredConstMemberFunctionPointerCall5"/> + <rejection class="QtConcurrent::SelectStoredFunctorCall0"/> + <rejection class="QtConcurrent::SelectStoredFunctorCall1"/> + <rejection class="QtConcurrent::SelectStoredFunctorCall2"/> + <rejection class="QtConcurrent::SelectStoredFunctorCall3"/> + <rejection class="QtConcurrent::SelectStoredFunctorCall4"/> + <rejection class="QtConcurrent::SelectStoredFunctorCall5"/> + <rejection class="QtConcurrent::SelectStoredFunctorPointerCall0"/> + <rejection class="QtConcurrent::SelectStoredFunctorPointerCall1"/> + <rejection class="QtConcurrent::SelectStoredFunctorPointerCall2"/> + <rejection class="QtConcurrent::SelectStoredFunctorPointerCall3"/> + <rejection class="QtConcurrent::SelectStoredFunctorPointerCall4"/> + <rejection class="QtConcurrent::SelectStoredFunctorPointerCall5"/> + <rejection class="QtConcurrent::SelectStoredMemberFunctionCall0"/> + <rejection class="QtConcurrent::SelectStoredMemberFunctionCall1"/> + <rejection class="QtConcurrent::SelectStoredMemberFunctionCall2"/> + <rejection class="QtConcurrent::SelectStoredMemberFunctionCall3"/> + <rejection class="QtConcurrent::SelectStoredMemberFunctionCall4"/> + <rejection class="QtConcurrent::SelectStoredMemberFunctionCall5"/> + <rejection class="QtConcurrent::SelectStoredMemberFunctionPointerCall0"/> + <rejection class="QtConcurrent::SelectStoredMemberFunctionPointerCall1"/> + <rejection class="QtConcurrent::SelectStoredMemberFunctionPointerCall2"/> + <rejection class="QtConcurrent::SelectStoredMemberFunctionPointerCall3"/> + <rejection class="QtConcurrent::SelectStoredMemberFunctionPointerCall4"/> + <rejection class="QtConcurrent::SelectStoredMemberFunctionPointerCall5"/> + <rejection class="QtConcurrent::SequenceHolder1"/> + <rejection class="QtConcurrent::SequenceHolder2"/> + <rejection class="QtConcurrent::StoredConstMemberFunctionCall0"/> + <rejection class="QtConcurrent::StoredConstMemberFunctionCall1"/> + <rejection class="QtConcurrent::StoredConstMemberFunctionCall2"/> + <rejection class="QtConcurrent::StoredConstMemberFunctionCall3"/> + <rejection class="QtConcurrent::StoredConstMemberFunctionCall4"/> + <rejection class="QtConcurrent::StoredConstMemberFunctionCall5"/> + <rejection class="QtConcurrent::StoredConstMemberFunctionPointerCall0"/> + <rejection class="QtConcurrent::StoredConstMemberFunctionPointerCall1"/> + <rejection class="QtConcurrent::StoredConstMemberFunctionPointerCall2"/> + <rejection class="QtConcurrent::StoredConstMemberFunctionPointerCall3"/> + <rejection class="QtConcurrent::StoredConstMemberFunctionPointerCall4"/> + <rejection class="QtConcurrent::StoredConstMemberFunctionPointerCall5"/> + <rejection class="QtConcurrent::StoredFunctorCall0"/> + <rejection class="QtConcurrent::StoredFunctorCall1"/> + <rejection class="QtConcurrent::StoredFunctorCall2"/> + <rejection class="QtConcurrent::StoredFunctorCall3"/> + <rejection class="QtConcurrent::StoredFunctorCall4"/> + <rejection class="QtConcurrent::StoredFunctorCall5"/> + <rejection class="QtConcurrent::StoredFunctorPointerCall0"/> + <rejection class="QtConcurrent::StoredFunctorPointerCall1"/> + <rejection class="QtConcurrent::StoredFunctorPointerCall2"/> + <rejection class="QtConcurrent::StoredFunctorPointerCall3"/> + <rejection class="QtConcurrent::StoredFunctorPointerCall4"/> + <rejection class="QtConcurrent::StoredFunctorPointerCall5"/> + <rejection class="QtConcurrent::StoredMemberFunctionCall0"/> + <rejection class="QtConcurrent::StoredMemberFunctionCall1"/> + <rejection class="QtConcurrent::StoredMemberFunctionCall2"/> + <rejection class="QtConcurrent::StoredMemberFunctionCall3"/> + <rejection class="QtConcurrent::StoredMemberFunctionCall4"/> + <rejection class="QtConcurrent::StoredMemberFunctionCall5"/> + <rejection class="QtConcurrent::StoredMemberFunctionPointerCall0"/> + <rejection class="QtConcurrent::StoredMemberFunctionPointerCall1"/> + <rejection class="QtConcurrent::StoredMemberFunctionPointerCall2"/> + <rejection class="QtConcurrent::StoredMemberFunctionPointerCall3"/> + <rejection class="QtConcurrent::StoredMemberFunctionPointerCall4"/> + <rejection class="QtConcurrent::StoredMemberFunctionPointerCall5"/> + <rejection class="QtConcurrent::ThreadEngine"/> + <rejection class="QtConcurrent::ThreadEngineBase"/> + <rejection class="QtConcurrent::ThreadEngineSemaphore"/> + <rejection class="QtConcurrent::ThreadEngineStarter"/> + <rejection class="QtConcurrent::ThreadEngineStarterBase"/> + <rejection class="QtConcurrent::UnhandledException"/> + <rejection class="QtConcurrent::VoidStoredConstMemberFunctionCall0"/> + <rejection class="QtConcurrent::VoidStoredConstMemberFunctionCall1"/> + <rejection class="QtConcurrent::VoidStoredConstMemberFunctionCall2"/> + <rejection class="QtConcurrent::VoidStoredConstMemberFunctionCall3"/> + <rejection class="QtConcurrent::VoidStoredConstMemberFunctionCall4"/> + <rejection class="QtConcurrent::VoidStoredConstMemberFunctionCall5"/> + <rejection class="QtConcurrent::VoidStoredConstMemberFunctionPointerCall0"/> + <rejection class="QtConcurrent::VoidStoredConstMemberFunctionPointerCall1"/> + <rejection class="QtConcurrent::VoidStoredConstMemberFunctionPointerCall2"/> + <rejection class="QtConcurrent::VoidStoredConstMemberFunctionPointerCall3"/> + <rejection class="QtConcurrent::VoidStoredConstMemberFunctionPointerCall4"/> + <rejection class="QtConcurrent::VoidStoredConstMemberFunctionPointerCall5"/> + <rejection class="QtConcurrent::VoidStoredFunctorCall0"/> + <rejection class="QtConcurrent::VoidStoredFunctorCall1"/> + <rejection class="QtConcurrent::VoidStoredFunctorCall2"/> + <rejection class="QtConcurrent::VoidStoredFunctorCall3"/> + <rejection class="QtConcurrent::VoidStoredFunctorCall4"/> + <rejection class="QtConcurrent::VoidStoredFunctorCall5"/> + <rejection class="QtConcurrent::VoidStoredFunctorPointerCall0"/> + <rejection class="QtConcurrent::VoidStoredFunctorPointerCall1"/> + <rejection class="QtConcurrent::VoidStoredFunctorPointerCall2"/> + <rejection class="QtConcurrent::VoidStoredFunctorPointerCall3"/> + <rejection class="QtConcurrent::VoidStoredFunctorPointerCall4"/> + <rejection class="QtConcurrent::VoidStoredFunctorPointerCall5"/> + <rejection class="QtConcurrent::VoidStoredMemberFunctionCall0"/> + <rejection class="QtConcurrent::VoidStoredMemberFunctionCall1"/> + <rejection class="QtConcurrent::VoidStoredMemberFunctionCall2"/> + <rejection class="QtConcurrent::VoidStoredMemberFunctionCall3"/> + <rejection class="QtConcurrent::VoidStoredMemberFunctionCall4"/> + <rejection class="QtConcurrent::VoidStoredMemberFunctionCall5"/> + <rejection class="QtConcurrent::VoidStoredMemberFunctionPointerCall0"/> + <rejection class="QtConcurrent::VoidStoredMemberFunctionPointerCall1"/> + <rejection class="QtConcurrent::VoidStoredMemberFunctionPointerCall2"/> + <rejection class="QtConcurrent::VoidStoredMemberFunctionPointerCall3"/> + <rejection class="QtConcurrent::VoidStoredMemberFunctionPointerCall4"/> + <rejection class="QtConcurrent::VoidStoredMemberFunctionPointerCall5"/> + <rejection class="QMdi"/> + <rejection class="stdext"/> + <rejection class="QAlgorithmsPrivate"/> + <rejection class="QAtomic"/> + <rejection class="QAtomicPointer"/> + <rejection class="QAtomicInt"/> + <rejection class="QBasicAtomicInt"/> + <rejection class="QBasicAtomic"/> + <rejection class="QBasicAtomicPointer"/> + <rejection class="QBitRef"/> + <rejection class="QCache"/> + <rejection class="QCharRef"/> + <rejection class="QDebug"/> + <rejection class="QExplicitlySharedDataPointer"/> + <rejection class="QFlag"/> + <rejection class="QFlags"/> + <rejection class="QForeachContainer"/> + <rejection class="QForeachContainerBase"/> + <rejection class="QGlobalStatic"/> + <rejection class="QHash"/> + <rejection class="QHashData"/> + <rejection class="QHashDummyNode"/> + <rejection class="QHashDummyNode"/> + <rejection class="QHashDummyNode"/> + <rejection class="QHashDummyNode"/> + <rejection class="QHashDummyNode"/> + <rejection class="QHashDummyValue"/> + <rejection class="QHashIterator"/> + <rejection class="QHashNode"/> + <rejection class="QHashNode"/> + <rejection class="QHashNode"/> + <rejection class="QHashNode"/> + <rejection class="QHashNode"/> + <rejection class="QInternal"/> + <rejection class="QLibrary"/> + <rejection class="QLinkedList"/> + <rejection class="QLinkedListData"/> + <rejection class="QLinkedListIterator"/> + <rejection class="QLinkedListNode"/> + <rejection class="QListData"/> + <rejection class="QListIterator"/> + <rejection class="QMap"/> + <rejection class="QMapData"/> + <rejection class="QMapIterator"/> + <rejection class="QMetaType"/> + <rejection class="QMetaTypeId"/> + <rejection class="QMultiHash"/> + <rejection class="QMultiMap"/> + <rejection class="QMutableHashIterator"/> + <rejection class="QMutableLinkedListIterator"/> + <rejection class="QMutableListIterator"/> + <rejection class="QMutableMapIterator"/> + <rejection class="QMutableVectorIterator"/> + <rejection class="QNoImplicitBoolCast"/> + <rejection class="QObjectCleanupHandler"/> + <rejection class="QObjectData"/> + <rejection class="QObjectUserData"/> + <rejection class="QPluginLoader"/> + <rejection class="QPointer"/> + <rejection class="QSet"/> + <rejection class="QSetIterator"/> + <rejection class="QSharedData"/> + <rejection class="QSharedDataPointer"/> + <rejection class="QStack"/> + <rejection class="QSysInfo"/> + <rejection class="QThreadStorage"/> + <rejection class="QThreadStorageData"/> + <rejection class="QTypeInfo"/> + <rejection class="QTypeInfo"/> + <rejection class="QVFbKeyData"/> + <rejection class="QVariantComparisonHelper"/> + <rejection class="QVectorData"/> + <rejection class="QVectorIterator"/> + <rejection class="QVectorTypedData"/> + <rejection class="QtPrivate"/> + <rejection class="qGreater"/> + <rejection class="qLess"/> + <rejection class="std"/> + <rejection class="QAbstractFileEngine::ExtensionOption"/> + <rejection class="QAbstractFileEngine::ExtensionReturn"/> + <rejection class="QByteArray::Data"/> + <rejection class="QIntForType"/> + <rejection class="QList::Node"/> + <rejection class="QList::const_iterator"/> + <rejection class="QList::iterator"/> + <rejection class="QMetaTypeId2"/> + <rejection class="QMutableSetIterator"/> + <rejection class="QSubString"/> + <rejection class="QUintForType"/> + <rejection class="QtConcurrent::internal"/> + <rejection class="QLocale::Data"/> + <rejection class="QGlobalStaticDeleter"/> + <rejection class="QSharedMemory"/> + <!-- Temporarily until we know how to implement it in Java --> + <rejection class="QVarLengthArray"/> + <!-- DBus --> + <rejection class="QDBusAbstractAdaptor"/> + <rejection class="QDBusAbstractInterface"/> + <rejection class="QDBusArgument"/> + <rejection class="QDBusConnection"/> + <rejection class="QDBusConnectionInterface"/> + <rejection class="QDBusContext"/> + <rejection class="QDBusError"/> + <rejection class="QDBusInterface"/> + <rejection class="QDBusMessage"/> + <rejection class="QDBusMetaType"/> + <rejection class="QDBusObjectPath"/> + <rejection class="QDBusReply"/> + <rejection class="QDBusServer"/> + <rejection class="QDBusSignature"/> + <rejection class="QDBusVariant"/> + <rejection class="_Revbidit"/> + <rejection class="_complex"/> + <rejection class="_exception"/> + <rejection class="_iobuf"/> + <rejection class="_stat"/> + <rejection class="_wfinddata_t"/> + <rejection class="exception"/> + <rejection class="istreambuf_iterator"/> + <rejection class="ostreambuf_iterator"/> + <rejection class="reverse_bidirectional_iterator"/> + <rejection class="reverse_iterator"/> + <rejection class="stat"/> + <rejection class="tm"/> + <rejection class="*" function-name="metaObject"/> + <rejection class="QVariant" function-name="canConvert"/> + <rejection class="QVariant" function-name="fromValue"/> + <rejection class="QVariant" function-name="value"/> + <rejection class="QVariant" function-name="setValue"/> + <rejection class="QVariant" function-name="data"/> + <rejection class="QVariant" function-name="constData"/> + <rejection class="QString" function-name="constData"/> + <rejection class="QString" function-name="constBegin"/> + <rejection class="QString" function-name="constEnd"/> + <rejection class="QString" function-name="begin"/> + <rejection class="QString" function-name="end"/> + <rejection class="QString" function-name="data"/> + <rejection class="QString" function-name="unicode"/> + <rejection class="QString" function-name="utf16"/> + <rejection class="QString" function-name="fromLatin1_helper"/> + <rejection class="QString" function-name="fromAscii_helper"/> + <rejection class="QString" function-name="toWCharArray"/> + <rejection class="QString" function-name="vsprintf"/> + <rejection class="QString" function-name="fromStdWString"/> + <rejection class="QStringRef" function-name="constData"/> + <rejection class="QStringRef" function-name="data"/> + <rejection class="QStringRef" function-name="unicode"/> + <rejection class="QStringRef" function-name="string"/> + <rejection class="QAbstractEventDispatcher" function-name="filterEvent"/> + <rejection class="QAbstractEventDispatcher" function-name="setEventFilter"/> + <rejection class="QAbstractFileEngine" function-name="beginEntryList"/> + <rejection class="QAbstractFileEngine" function-name="endEntryList"/> + <rejection class="QAbstractFileEngine" function-name="extension"/> + <rejection class="QAbstractFileEngine" function-name="map"/> + <rejection class="QCoreApplication" function-name="compressEvent"/> + <rejection class="QCoreApplication" function-name="eventFilter"/> + <rejection class="QCoreApplication" function-name="filterEvent"/> + <rejection class="QCoreApplication" function-name="setEventFilter"/> + <rejection class="QFile" function-name="setDecodingFunction"/> + <rejection class="QFile" function-name="setEncodingFunction"/> + <rejection class="QProcess" function-name="pid"/> + <rejection class="QRegion" function-name="cleanUp"/> + <rejection class="QSettings" function-name="registerFormat"/> + <rejection class="QAbstractFileEngineIterator" function-name="entryInfo"/> + <rejection class="QAbstractFileEngineIterator" enum-name="EntryInfoType"/> + <rejection class="QDataStream" enum-name="ByteOrder"/> + + + <value-type name="QPoint"> + <modify-function signature="rx()" remove="all"/> + <modify-function signature="ry()" remove="all"/> + </value-type> + <value-type name="QPointF"> + <modify-function signature="rx()" remove="all"/> + <modify-function signature="ry()" remove="all"/> + </value-type> + <value-type name="QRect"> + <modify-function signature="getCoords(int*,int*,int*,int*)const"> + <remove/> + </modify-function> + <modify-function signature="getRect(int*,int*,int*,int*)const"> + <remove/> + </modify-function> + </value-type> + <value-type name="QRectF"> + <modify-function signature="getCoords(qreal*,qreal*,qreal*,qreal*)const"> + <remove/> + </modify-function> + <modify-function signature="getRect(qreal*,qreal*,qreal*,qreal*)const"> + <remove/> + </modify-function> + </value-type> + <value-type name="QSize"> + <modify-function signature="rheight()" remove="all"/> + <modify-function signature="rwidth()" remove="all"/> + </value-type> + <value-type name="QSizeF"> + <modify-function signature="rheight()" remove="all" /> + <modify-function signature="rwidth()" remove="all" /> + </value-type> + + <value-type name="QChar" hash-function="qHash"> + <modify-function signature="combiningClass(uint)" remove="all"/> + <modify-function signature="combiningClass(ushort)" remove="all"/> + <modify-function signature="decomposition(uint)" remove="all"/> + <modify-function signature="digitValue(uint)" remove="all"/> + <modify-function signature="digitValue(ushort)" remove="all"/> + <modify-function signature="mirroredChar(uint)" remove="all"/> + <modify-function signature="mirroredChar(ushort)" remove="all"/> + <modify-function signature="toCaseFolded(uint)" remove="all"/> + <modify-function signature="toCaseFolded(ushort)" remove="all"/> + <modify-function signature="toUpper(uint)" remove="all"/> + <modify-function signature="toUpper(ushort)" remove="all"/> + <modify-function signature="toLower(uint)" remove="all"/> + <modify-function signature="toLower(ushort)" remove="all"/> + <modify-function signature="toTitleCase(uint)" remove="all"/> + <modify-function signature="toTitleCase(ushort)" remove="all"/> + <modify-function signature="unicode()" remove="all"/> + <modify-function signature="category(uint)" remove="all"/> + <modify-function signature="category(ushort)" remove="all"/> + <modify-function signature="decompositionTag(uint)" remove="all"/> + <modify-function signature="direction(uint)" remove="all"/> + <modify-function signature="direction(ushort)" remove="all"/> + <modify-function signature="joining(uint)" remove="all"/> + <modify-function signature="joining(ushort)" remove="all"/> + <modify-function signature="unicodeVersion(uint)" remove="all"/> + <modify-function signature="unicodeVersion(ushort)" remove="all"/> + </value-type> + <value-type name="QRegExp"> + <extra-includes> + <include file-name="QStringList" location="global"/> + </extra-includes> + </value-type> + <value-type name="QString" hash-function="qHash"> + <extra-includes> + <include file-name="qtextcodec.h" location="global"/> + </extra-includes> + <modify-documentation xpath="/description/section[@id='initializing-a-string']/para[2]" /> + <modify-documentation xpath="/description/section[@id='initializing-a-string']/para[3]" /> + + <modify-function signature="insert(int,const QChar*,int)" remove="all" /> + <modify-function signature="QString(const QChar*, int)" remove="all" /> + <modify-function signature="fromStdString(std::string)" remove="all"/> + <modify-function signature="toStdString()const" remove="all"/> + <modify-function signature="toStdWString()const" remove="all"/> + <modify-function signature="operator!=(const char*)const" remove="all"/> + <modify-function signature="operator+=(const char*)" remove="all"/> + <modify-function signature="operator+=(char)" remove="all"/> + <modify-function signature="operator<(const char*)const" remove="all"/> + <modify-function signature="operator<=(const char*)const" remove="all"/> + <modify-function signature="operator==(const char*)const" remove="all"/> + <modify-function signature="operator>(const char*)const" remove="all"/> + <modify-function signature="operator>=(const char*)const" remove="all"/> + <modify-function signature="toUShort(bool*,int)const" remove="all" /> + <modify-function signature="toDouble(bool*)const" remove="all" /> + <modify-function signature="toFloat(bool*)const" remove="all" /> + <modify-function signature="toInt(bool*,int)const" remove="all" /> + <modify-function signature="toLong(bool*,int)const" remove="all" /> + <modify-function signature="toLongLong(bool*,int)const" remove="all" /> + <modify-function signature="toShort(bool*,int)const" remove="all" /> + <modify-function signature="toUInt(bool*,int)const" remove="all" /> + <modify-function signature="toULong(bool*,int)const" remove="all" /> + <modify-function signature="toULongLong(bool*,int)const" remove="all" /> + <modify-function signature="setUtf16(const ushort*,int)" remove="all" /> + <modify-function signature="fromUtf16(const ushort*,int)" remove="all" /> + <modify-function signature="fromRawData(const QChar*,int)" remove="all" /> + <modify-function signature="setUnicode(const QChar*,int)" remove="all" /> + <modify-function signature="fromUcs4(const uint*,int)" remove="all" /> + <modify-function signature="toUcs4()const" remove="all" /> + + + + <!-- Remove conflict signatures in python --> + <modify-function signature="arg(int, int, int, const QChar&) const" remove="all"/> + <modify-function signature="arg(qlonglong, int, int, const QChar&) const" remove="all"/> + <modify-function signature="arg(qulonglong, int, int, const QChar&) const" remove="all"/> + <modify-function signature="arg(short, int, int, const QChar&) const" remove="all"/> + <modify-function signature="arg(uint, int, int, const QChar&) const" remove="all"/> + <modify-function signature="arg(ulong, int, int, const QChar&) const" remove="all"/> + <modify-function signature="arg(ushort, int, int, const QChar&) const" remove="all"/> + </value-type> + + + + + <suppress-warning text="signature 'contais(QXmlStreamAttribute)' for function modification in 'QXmlStreamAttributes' not found."/> + <suppress-warning text="signature 'findChildren(QRegExp)const' for function modification in 'QObject' not found"/> + <suppress-warning text="signature 'findChildren(QString)const' for function modification in 'QObject' not found."/> + <suppress-warning text="signature 'findChild(QString)const' for function modification in 'QObject' not found."/> + <suppress-warning text="skipping function '*'"/> + <suppress-warning text="visibility of function '*' modified in class '*'"/> + <suppress-warning text="hiding of function '*' in class '*'"/> + <suppress-warning text="namespace '*' does not have a type entry"/> + <suppress-warning text="Shadowing: QObject::parent() const and QAbstractItemModel::parent() const"/> + <suppress-warning text="namespace '*' for enum 'QtMsgType' is not declared"/> + <suppress-warning text="horribly broken type 'imaxdiv_t'"/> + <suppress-warning text="horribly broken type '__off64_t'"/> + <suppress-warning text="horribly broken type 'div_t'"/> + <suppress-warning text="horribly broken type 'fd_set*'"/> + <suppress-warning text="horribly broken type 'ldiv_t'"/> + <suppress-warning text="horribly broken type 'lldiv_t'"/> + <suppress-warning text="signal '*' in class '*' is overloaded."/> + <suppress-warning text="enum 'enum_3' does not have a type entry or is not an enum"/> + <suppress-warning text="Shadowing: QFile::fileName() const and QTemporaryFile::fileName() const"/> +</typesystem> diff --git a/PySide/global.h b/PySide/global.h new file mode 100644 index 0000000..ef546ba --- /dev/null +++ b/PySide/global.h @@ -0,0 +1,1163 @@ +#undef QT_NO_STL +#undef QT_NO_STL_WCHAR + +#include "qobjectdefs_pyside.h" +//#define Q_QDOC +//#define qdoc +//#undef Q_MOC_RUN + +//Export X11 related functions +#define Q_WS_X11 + +// There are symbols in Qt that exist in Debug but +// not in release +#define QT_NO_DEBUG + +#include <QtCore/QtCore> +#include <QtGui/QtGui> +#include <QtGui/QX11Info> +#include <QtXml/QtXml> +#include <QtUiTools/QtUiTools> +#include <QtNetwork/QtNetwork> +#include <QtScript/QtScript> +#include <QtScriptTools/QtScriptTools> + +// QT_GUI_LIB must be defined to QSqlRelationalDelegate become visible +#define QT_GUI_LIB +#undef Q_DECLARE_INTERFACE +#include <QtSql/QtSql> +#include <QtSvg/QtSvg> + +#ifndef QT_NO_XMLPATTERNS +# include <QtXmlPatterns/QtXmlPatterns> +#endif + +#ifndef QT_NO_WEBKIT +# include <QtWebKit/QtWebKit> +#endif + +// Phonon +#include<phonon/abstractaudiooutput.h> +#include<phonon/abstractmediastream.h> +#include<phonon/abstractvideooutput.h> +#include<phonon/addoninterface.h> +#include<phonon/audiooutput.h> +#include<phonon/audiooutputinterface.h> +#include<phonon/backendcapabilities.h> +#include<phonon/backendinterface.h> +#include<phonon/effect.h> +#include<phonon/effectinterface.h> +#include<phonon/effectparameter.h> +#include<phonon/effectwidget.h> +#include<phonon/mediacontroller.h> +#include<phonon/medianode.h> +#include<phonon/mediaobject.h> +#include<phonon/mediaobjectinterface.h> +#include<phonon/mediasource.h> +#include<phonon/objectdescription.h> +#include<phonon/objectdescriptionmodel.h> +#include<phonon/path.h> +#include<phonon/phonon_export.h> +#include<phonon/phonondefs.h> +#include<phonon/phononnamespace.h> +#include<phonon/platformplugin.h> +#include<phonon/seekslider.h> +#include<phonon/streaminterface.h> +#include<phonon/videoplayer.h> +#include<phonon/videowidget.h> +#include<phonon/videowidgetinterface.h> +#include<phonon/volumefadereffect.h> +#include<phonon/volumefaderinterface.h> +#include<phonon/volumeslider.h> + +//QtHelp need be included after QtSql +#include <QtHelp/QtHelp> + +#ifndef QT_NO_OPENGL +#define GL_ACCUM 0x0100 +#define GL_LOAD 0x0101 +#define GL_RETURN 0x0102 +#define GL_MULT 0x0103 +#define GL_ADD 0x0104 + +/* AlphaFunction */ +#define GL_NEVER 0x0200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 + +/* AttribMask */ +#define GL_CURRENT_BIT 0x00000001 +#define GL_POINT_BIT 0x00000002 +#define GL_LINE_BIT 0x00000004 +#define GL_POLYGON_BIT 0x00000008 +#define GL_POLYGON_STIPPLE_BIT 0x00000010 +#define GL_PIXEL_MODE_BIT 0x00000020 +#define GL_LIGHTING_BIT 0x00000040 +#define GL_FOG_BIT 0x00000080 +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_ACCUM_BUFFER_BIT 0x00000200 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_VIEWPORT_BIT 0x00000800 +#define GL_TRANSFORM_BIT 0x00001000 +#define GL_ENABLE_BIT 0x00002000 +#define GL_COLOR_BUFFER_BIT 0x00004000 +#define GL_HINT_BIT 0x00008000 +#define GL_EVAL_BIT 0x00010000 +#define GL_LIST_BIT 0x00020000 +#define GL_TEXTURE_BIT 0x00040000 +#define GL_SCISSOR_BIT 0x00080000 +#define GL_ALL_ATTRIB_BITS 0x000fffff + +/* BeginMode */ +#define GL_POINTS 0x0000 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_LINE_STRIP 0x0003 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 +#define GL_QUADS 0x0007 +#define GL_QUAD_STRIP 0x0008 +#define GL_POLYGON 0x0009 + +/* BlendingFactorDest */ +#define GL_ZERO 0 +#define GL_ONE 1 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 + +/* BlendingFactorSrc */ +/* GL_ZERO */ +/* GL_ONE */ +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 +/* GL_SRC_ALPHA */ +/* GL_ONE_MINUS_SRC_ALPHA */ +/* GL_DST_ALPHA */ +/* GL_ONE_MINUS_DST_ALPHA */ + +/* Boolean */ +#define GL_TRUE 1 +#define GL_FALSE 0 + +/* ClearBufferMask */ +/* GL_COLOR_BUFFER_BIT */ +/* GL_ACCUM_BUFFER_BIT */ +/* GL_STENCIL_BUFFER_BIT */ +/* GL_DEPTH_BUFFER_BIT */ + +/* ClientArrayType */ +/* GL_VERTEX_ARRAY */ +/* GL_NORMAL_ARRAY */ +/* GL_COLOR_ARRAY */ +/* GL_INDEX_ARRAY */ +/* GL_TEXTURE_COORD_ARRAY */ +/* GL_EDGE_FLAG_ARRAY */ + +/* ClipPlaneName */ +#define GL_CLIP_PLANE0 0x3000 +#define GL_CLIP_PLANE1 0x3001 +#define GL_CLIP_PLANE2 0x3002 +#define GL_CLIP_PLANE3 0x3003 +#define GL_CLIP_PLANE4 0x3004 +#define GL_CLIP_PLANE5 0x3005 + +/* ColorMaterialFace */ +/* GL_FRONT */ +/* GL_BACK */ +/* GL_FRONT_AND_BACK */ + +/* ColorMaterialParameter */ +/* GL_AMBIENT */ +/* GL_DIFFUSE */ +/* GL_SPECULAR */ +/* GL_EMISSION */ +/* GL_AMBIENT_AND_DIFFUSE */ + +/* ColorPointerType */ +/* GL_BYTE */ +/* GL_UNSIGNED_BYTE */ +/* GL_SHORT */ +/* GL_UNSIGNED_SHORT */ +/* GL_INT */ +/* GL_UNSIGNED_INT */ +/* GL_FLOAT */ +/* GL_DOUBLE */ + +/* CullFaceMode */ +/* GL_FRONT */ +/* GL_BACK */ +/* GL_FRONT_AND_BACK */ + +/* DataType */ +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_2_BYTES 0x1407 +#define GL_3_BYTES 0x1408 +#define GL_4_BYTES 0x1409 +#define GL_DOUBLE 0x140A + +/* DepthFunction */ +/* GL_NEVER */ +/* GL_LESS */ +/* GL_EQUAL */ +/* GL_LEQUAL */ +/* GL_GREATER */ +/* GL_NOTEQUAL */ +/* GL_GEQUAL */ +/* GL_ALWAYS */ + +/* DrawBufferMode */ +#define GL_NONE 0 +#define GL_FRONT_LEFT 0x0400 +#define GL_FRONT_RIGHT 0x0401 +#define GL_BACK_LEFT 0x0402 +#define GL_BACK_RIGHT 0x0403 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_LEFT 0x0406 +#define GL_RIGHT 0x0407 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_AUX0 0x0409 +#define GL_AUX1 0x040A +#define GL_AUX2 0x040B +#define GL_AUX3 0x040C + +/* Enable */ +/* GL_FOG */ +/* GL_LIGHTING */ +/* GL_TEXTURE_1D */ +/* GL_TEXTURE_2D */ +/* GL_LINE_STIPPLE */ +/* GL_POLYGON_STIPPLE */ +/* GL_CULL_FACE */ +/* GL_ALPHA_TEST */ +/* GL_BLEND */ +/* GL_INDEX_LOGIC_OP */ +/* GL_COLOR_LOGIC_OP */ +/* GL_DITHER */ +/* GL_STENCIL_TEST */ +/* GL_DEPTH_TEST */ +/* GL_CLIP_PLANE0 */ +/* GL_CLIP_PLANE1 */ +/* GL_CLIP_PLANE2 */ +/* GL_CLIP_PLANE3 */ +/* GL_CLIP_PLANE4 */ +/* GL_CLIP_PLANE5 */ +/* GL_LIGHT0 */ +/* GL_LIGHT1 */ +/* GL_LIGHT2 */ +/* GL_LIGHT3 */ +/* GL_LIGHT4 */ +/* GL_LIGHT5 */ +/* GL_LIGHT6 */ +/* GL_LIGHT7 */ +/* GL_TEXTURE_GEN_S */ +/* GL_TEXTURE_GEN_T */ +/* GL_TEXTURE_GEN_R */ +/* GL_TEXTURE_GEN_Q */ +/* GL_MAP1_VERTEX_3 */ +/* GL_MAP1_VERTEX_4 */ +/* GL_MAP1_COLOR_4 */ +/* GL_MAP1_INDEX */ +/* GL_MAP1_NORMAL */ +/* GL_MAP1_TEXTURE_COORD_1 */ +/* GL_MAP1_TEXTURE_COORD_2 */ +/* GL_MAP1_TEXTURE_COORD_3 */ +/* GL_MAP1_TEXTURE_COORD_4 */ +/* GL_MAP2_VERTEX_3 */ +/* GL_MAP2_VERTEX_4 */ +/* GL_MAP2_COLOR_4 */ +/* GL_MAP2_INDEX */ +/* GL_MAP2_NORMAL */ +/* GL_MAP2_TEXTURE_COORD_1 */ +/* GL_MAP2_TEXTURE_COORD_2 */ +/* GL_MAP2_TEXTURE_COORD_3 */ +/* GL_MAP2_TEXTURE_COORD_4 */ +/* GL_POINT_SMOOTH */ +/* GL_LINE_SMOOTH */ +/* GL_POLYGON_SMOOTH */ +/* GL_SCISSOR_TEST */ +/* GL_COLOR_MATERIAL */ +/* GL_NORMALIZE */ +/* GL_AUTO_NORMAL */ +/* GL_VERTEX_ARRAY */ +/* GL_NORMAL_ARRAY */ +/* GL_COLOR_ARRAY */ +/* GL_INDEX_ARRAY */ +/* GL_TEXTURE_COORD_ARRAY */ +/* GL_EDGE_FLAG_ARRAY */ +/* GL_POLYGON_OFFSET_POINT */ +/* GL_POLYGON_OFFSET_LINE */ +/* GL_POLYGON_OFFSET_FILL */ + +/* ErrorCode */ +#define GL_NO_ERROR 0 +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_STACK_OVERFLOW 0x0503 +#define GL_STACK_UNDERFLOW 0x0504 +#define GL_OUT_OF_MEMORY 0x0505 + +/* FeedBackMode */ +#define GL_2D 0x0600 +#define GL_3D 0x0601 +#define GL_3D_COLOR 0x0602 +#define GL_3D_COLOR_TEXTURE 0x0603 +#define GL_4D_COLOR_TEXTURE 0x0604 + +/* FeedBackToken */ +#define GL_PASS_THROUGH_TOKEN 0x0700 +#define GL_POINT_TOKEN 0x0701 +#define GL_LINE_TOKEN 0x0702 +#define GL_POLYGON_TOKEN 0x0703 +#define GL_BITMAP_TOKEN 0x0704 +#define GL_DRAW_PIXEL_TOKEN 0x0705 +#define GL_COPY_PIXEL_TOKEN 0x0706 +#define GL_LINE_RESET_TOKEN 0x0707 + +/* FogMode */ +/* GL_LINEAR */ +#define GL_EXP 0x0800 +#define GL_EXP2 0x0801 + + +/* FogParameter */ +/* GL_FOG_COLOR */ +/* GL_FOG_DENSITY */ +/* GL_FOG_END */ +/* GL_FOG_INDEX */ +/* GL_FOG_MODE */ +/* GL_FOG_START */ + +/* FrontFaceDirection */ +#define GL_CW 0x0900 +#define GL_CCW 0x0901 + +/* GetMapTarget */ +#define GL_COEFF 0x0A00 +#define GL_ORDER 0x0A01 +#define GL_DOMAIN 0x0A02 + +/* GetPixelMap */ +/* GL_PIXEL_MAP_I_TO_I */ +/* GL_PIXEL_MAP_S_TO_S */ +/* GL_PIXEL_MAP_I_TO_R */ +/* GL_PIXEL_MAP_I_TO_G */ +/* GL_PIXEL_MAP_I_TO_B */ +/* GL_PIXEL_MAP_I_TO_A */ +/* GL_PIXEL_MAP_R_TO_R */ +/* GL_PIXEL_MAP_G_TO_G */ +/* GL_PIXEL_MAP_B_TO_B */ +/* GL_PIXEL_MAP_A_TO_A */ + +/* GetPointerTarget */ +/* GL_VERTEX_ARRAY_POINTER */ +/* GL_NORMAL_ARRAY_POINTER */ +/* GL_COLOR_ARRAY_POINTER */ +/* GL_INDEX_ARRAY_POINTER */ +/* GL_TEXTURE_COORD_ARRAY_POINTER */ +/* GL_EDGE_FLAG_ARRAY_POINTER */ + +/* GetTarget */ +#define GL_CURRENT_COLOR 0x0B00 +#define GL_CURRENT_INDEX 0x0B01 +#define GL_CURRENT_NORMAL 0x0B02 +#define GL_CURRENT_TEXTURE_COORDS 0x0B03 +#define GL_CURRENT_RASTER_COLOR 0x0B04 +#define GL_CURRENT_RASTER_INDEX 0x0B05 +#define GL_CURRENT_RASTER_TEXTURE_COORDS 0x0B06 +#define GL_CURRENT_RASTER_POSITION 0x0B07 +#define GL_CURRENT_RASTER_POSITION_VALID 0x0B08 +#define GL_CURRENT_RASTER_DISTANCE 0x0B09 +#define GL_POINT_SMOOTH 0x0B10 +#define GL_POINT_SIZE 0x0B11 +#define GL_POINT_SIZE_RANGE 0x0B12 +#define GL_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_LINE_SMOOTH 0x0B20 +#define GL_LINE_WIDTH 0x0B21 +#define GL_LINE_WIDTH_RANGE 0x0B22 +#define GL_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_LINE_STIPPLE 0x0B24 +#define GL_LINE_STIPPLE_PATTERN 0x0B25 +#define GL_LINE_STIPPLE_REPEAT 0x0B26 +#define GL_LIST_MODE 0x0B30 +#define GL_MAX_LIST_NESTING 0x0B31 +#define GL_LIST_BASE 0x0B32 +#define GL_LIST_INDEX 0x0B33 +#define GL_POLYGON_MODE 0x0B40 +#define GL_POLYGON_SMOOTH 0x0B41 +#define GL_POLYGON_STIPPLE 0x0B42 +#define GL_EDGE_FLAG 0x0B43 +#define GL_CULL_FACE 0x0B44 +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_LIGHTING 0x0B50 +#define GL_LIGHT_MODEL_LOCAL_VIEWER 0x0B51 +#define GL_LIGHT_MODEL_TWO_SIDE 0x0B52 +#define GL_LIGHT_MODEL_AMBIENT 0x0B53 +#define GL_SHADE_MODEL 0x0B54 +#define GL_COLOR_MATERIAL_FACE 0x0B55 +#define GL_COLOR_MATERIAL_PARAMETER 0x0B56 +#define GL_COLOR_MATERIAL 0x0B57 +#define GL_FOG 0x0B60 +#define GL_FOG_INDEX 0x0B61 +#define GL_FOG_DENSITY 0x0B62 +#define GL_FOG_START 0x0B63 +#define GL_FOG_END 0x0B64 +#define GL_FOG_MODE 0x0B65 +#define GL_FOG_COLOR 0x0B66 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_TEST 0x0B71 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_ACCUM_CLEAR_VALUE 0x0B80 +#define GL_STENCIL_TEST 0x0B90 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_MATRIX_MODE 0x0BA0 +#define GL_NORMALIZE 0x0BA1 +#define GL_VIEWPORT 0x0BA2 +#define GL_MODELVIEW_STACK_DEPTH 0x0BA3 +#define GL_PROJECTION_STACK_DEPTH 0x0BA4 +#define GL_TEXTURE_STACK_DEPTH 0x0BA5 +#define GL_MODELVIEW_MATRIX 0x0BA6 +#define GL_PROJECTION_MATRIX 0x0BA7 +#define GL_TEXTURE_MATRIX 0x0BA8 +#define GL_ATTRIB_STACK_DEPTH 0x0BB0 +#define GL_CLIENT_ATTRIB_STACK_DEPTH 0x0BB1 +#define GL_ALPHA_TEST 0x0BC0 +#define GL_ALPHA_TEST_FUNC 0x0BC1 +#define GL_ALPHA_TEST_REF 0x0BC2 +#define GL_DITHER 0x0BD0 +#define GL_BLEND_DST 0x0BE0 +#define GL_BLEND_SRC 0x0BE1 +#define GL_BLEND 0x0BE2 +#define GL_LOGIC_OP_MODE 0x0BF0 +#define GL_INDEX_LOGIC_OP 0x0BF1 +#define GL_COLOR_LOGIC_OP 0x0BF2 +#define GL_AUX_BUFFERS 0x0C00 +#define GL_DRAW_BUFFER 0x0C01 +#define GL_READ_BUFFER 0x0C02 +#define GL_SCISSOR_BOX 0x0C10 +#define GL_SCISSOR_TEST 0x0C11 +#define GL_INDEX_CLEAR_VALUE 0x0C20 +#define GL_INDEX_WRITEMASK 0x0C21 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_INDEX_MODE 0x0C30 +#define GL_RGBA_MODE 0x0C31 +#define GL_DOUBLEBUFFER 0x0C32 +#define GL_STEREO 0x0C33 +#define GL_RENDER_MODE 0x0C40 +#define GL_PERSPECTIVE_CORRECTION_HINT 0x0C50 +#define GL_POINT_SMOOTH_HINT 0x0C51 +#define GL_LINE_SMOOTH_HINT 0x0C52 +#define GL_POLYGON_SMOOTH_HINT 0x0C53 +#define GL_FOG_HINT 0x0C54 +#define GL_TEXTURE_GEN_S 0x0C60 +#define GL_TEXTURE_GEN_T 0x0C61 +#define GL_TEXTURE_GEN_R 0x0C62 +#define GL_TEXTURE_GEN_Q 0x0C63 +#define GL_PIXEL_MAP_I_TO_I 0x0C70 +#define GL_PIXEL_MAP_S_TO_S 0x0C71 +#define GL_PIXEL_MAP_I_TO_R 0x0C72 +#define GL_PIXEL_MAP_I_TO_G 0x0C73 +#define GL_PIXEL_MAP_I_TO_B 0x0C74 +#define GL_PIXEL_MAP_I_TO_A 0x0C75 +#define GL_PIXEL_MAP_R_TO_R 0x0C76 +#define GL_PIXEL_MAP_G_TO_G 0x0C77 +#define GL_PIXEL_MAP_B_TO_B 0x0C78 +#define GL_PIXEL_MAP_A_TO_A 0x0C79 +#define GL_PIXEL_MAP_I_TO_I_SIZE 0x0CB0 +#define GL_PIXEL_MAP_S_TO_S_SIZE 0x0CB1 +#define GL_PIXEL_MAP_I_TO_R_SIZE 0x0CB2 +#define GL_PIXEL_MAP_I_TO_G_SIZE 0x0CB3 +#define GL_PIXEL_MAP_I_TO_B_SIZE 0x0CB4 +#define GL_PIXEL_MAP_I_TO_A_SIZE 0x0CB5 +#define GL_PIXEL_MAP_R_TO_R_SIZE 0x0CB6 +#define GL_PIXEL_MAP_G_TO_G_SIZE 0x0CB7 +#define GL_PIXEL_MAP_B_TO_B_SIZE 0x0CB8 +#define GL_PIXEL_MAP_A_TO_A_SIZE 0x0CB9 +#define GL_UNPACK_SWAP_BYTES 0x0CF0 +#define GL_UNPACK_LSB_FIRST 0x0CF1 +#define GL_UNPACK_ROW_LENGTH 0x0CF2 +#define GL_UNPACK_SKIP_ROWS 0x0CF3 +#define GL_UNPACK_SKIP_PIXELS 0x0CF4 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_PACK_SWAP_BYTES 0x0D00 +#define GL_PACK_LSB_FIRST 0x0D01 +#define GL_PACK_ROW_LENGTH 0x0D02 +#define GL_PACK_SKIP_ROWS 0x0D03 +#define GL_PACK_SKIP_PIXELS 0x0D04 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_MAP_COLOR 0x0D10 +#define GL_MAP_STENCIL 0x0D11 +#define GL_INDEX_SHIFT 0x0D12 +#define GL_INDEX_OFFSET 0x0D13 +#define GL_RED_SCALE 0x0D14 +#define GL_RED_BIAS 0x0D15 +#define GL_ZOOM_X 0x0D16 +#define GL_ZOOM_Y 0x0D17 +#define GL_GREEN_SCALE 0x0D18 +#define GL_GREEN_BIAS 0x0D19 +#define GL_BLUE_SCALE 0x0D1A +#define GL_BLUE_BIAS 0x0D1B +#define GL_ALPHA_SCALE 0x0D1C +#define GL_ALPHA_BIAS 0x0D1D +#define GL_DEPTH_SCALE 0x0D1E +#define GL_DEPTH_BIAS 0x0D1F +#define GL_MAX_EVAL_ORDER 0x0D30 +#define GL_MAX_LIGHTS 0x0D31 +#define GL_MAX_CLIP_PLANES 0x0D32 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_PIXEL_MAP_TABLE 0x0D34 +#define GL_MAX_ATTRIB_STACK_DEPTH 0x0D35 +#define GL_MAX_MODELVIEW_STACK_DEPTH 0x0D36 +#define GL_MAX_NAME_STACK_DEPTH 0x0D37 +#define GL_MAX_PROJECTION_STACK_DEPTH 0x0D38 +#define GL_MAX_TEXTURE_STACK_DEPTH 0x0D39 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_MAX_CLIENT_ATTRIB_STACK_DEPTH 0x0D3B +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_INDEX_BITS 0x0D51 +#define GL_RED_BITS 0x0D52 +#define GL_GREEN_BITS 0x0D53 +#define GL_BLUE_BITS 0x0D54 +#define GL_ALPHA_BITS 0x0D55 +#define GL_DEPTH_BITS 0x0D56 +#define GL_STENCIL_BITS 0x0D57 +#define GL_ACCUM_RED_BITS 0x0D58 +#define GL_ACCUM_GREEN_BITS 0x0D59 +#define GL_ACCUM_BLUE_BITS 0x0D5A +#define GL_ACCUM_ALPHA_BITS 0x0D5B +#define GL_NAME_STACK_DEPTH 0x0D70 +#define GL_AUTO_NORMAL 0x0D80 +#define GL_MAP1_COLOR_4 0x0D90 +#define GL_MAP1_INDEX 0x0D91 +#define GL_MAP1_NORMAL 0x0D92 +#define GL_MAP1_TEXTURE_COORD_1 0x0D93 +#define GL_MAP1_TEXTURE_COORD_2 0x0D94 +#define GL_MAP1_TEXTURE_COORD_3 0x0D95 +#define GL_MAP1_TEXTURE_COORD_4 0x0D96 +#define GL_MAP1_VERTEX_3 0x0D97 +#define GL_MAP1_VERTEX_4 0x0D98 +#define GL_MAP2_COLOR_4 0x0DB0 +#define GL_MAP2_INDEX 0x0DB1 +#define GL_MAP2_NORMAL 0x0DB2 +#define GL_MAP2_TEXTURE_COORD_1 0x0DB3 +#define GL_MAP2_TEXTURE_COORD_2 0x0DB4 +#define GL_MAP2_TEXTURE_COORD_3 0x0DB5 +#define GL_MAP2_TEXTURE_COORD_4 0x0DB6 +#define GL_MAP2_VERTEX_3 0x0DB7 +#define GL_MAP2_VERTEX_4 0x0DB8 +#define GL_MAP1_GRID_DOMAIN 0x0DD0 +#define GL_MAP1_GRID_SEGMENTS 0x0DD1 +#define GL_MAP2_GRID_DOMAIN 0x0DD2 +#define GL_MAP2_GRID_SEGMENTS 0x0DD3 +#define GL_TEXTURE_1D 0x0DE0 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_FEEDBACK_BUFFER_POINTER 0x0DF0 +#define GL_FEEDBACK_BUFFER_SIZE 0x0DF1 +#define GL_FEEDBACK_BUFFER_TYPE 0x0DF2 +#define GL_SELECTION_BUFFER_POINTER 0x0DF3 +#define GL_SELECTION_BUFFER_SIZE 0x0DF4 +/* GL_TEXTURE_BINDING_1D */ +/* GL_TEXTURE_BINDING_2D */ +/* GL_VERTEX_ARRAY */ +/* GL_NORMAL_ARRAY */ +/* GL_COLOR_ARRAY */ +/* GL_INDEX_ARRAY */ +/* GL_TEXTURE_COORD_ARRAY */ +/* GL_EDGE_FLAG_ARRAY */ +/* GL_VERTEX_ARRAY_SIZE */ +/* GL_VERTEX_ARRAY_TYPE */ +/* GL_VERTEX_ARRAY_STRIDE */ +/* GL_NORMAL_ARRAY_TYPE */ +/* GL_NORMAL_ARRAY_STRIDE */ +/* GL_COLOR_ARRAY_SIZE */ +/* GL_COLOR_ARRAY_TYPE */ +/* GL_COLOR_ARRAY_STRIDE */ +/* GL_INDEX_ARRAY_TYPE */ +/* GL_INDEX_ARRAY_STRIDE */ +/* GL_TEXTURE_COORD_ARRAY_SIZE */ +/* GL_TEXTURE_COORD_ARRAY_TYPE */ +/* GL_TEXTURE_COORD_ARRAY_STRIDE */ +/* GL_EDGE_FLAG_ARRAY_STRIDE */ +/* GL_POLYGON_OFFSET_FACTOR */ +/* GL_POLYGON_OFFSET_UNITS */ + +/* GetTextureParameter */ +/* GL_TEXTURE_MAG_FILTER */ +/* GL_TEXTURE_MIN_FILTER */ +/* GL_TEXTURE_WRAP_S */ +/* GL_TEXTURE_WRAP_T */ +#define GL_TEXTURE_WIDTH 0x1000 +#define GL_TEXTURE_HEIGHT 0x1001 +#define GL_TEXTURE_INTERNAL_FORMAT 0x1003 +#define GL_TEXTURE_BORDER_COLOR 0x1004 +#define GL_TEXTURE_BORDER 0x1005 +/* GL_TEXTURE_RED_SIZE */ +/* GL_TEXTURE_GREEN_SIZE */ +/* GL_TEXTURE_BLUE_SIZE */ +/* GL_TEXTURE_ALPHA_SIZE */ +/* GL_TEXTURE_LUMINANCE_SIZE */ +/* GL_TEXTURE_INTENSITY_SIZE */ +/* GL_TEXTURE_PRIORITY */ +/* GL_TEXTURE_RESIDENT */ + +/* HintMode */ +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 + +/* HintTarget */ +/* GL_PERSPECTIVE_CORRECTION_HINT */ +/* GL_POINT_SMOOTH_HINT */ +/* GL_LINE_SMOOTH_HINT */ +/* GL_POLYGON_SMOOTH_HINT */ +/* GL_FOG_HINT */ +/* GL_PHONG_HINT */ + +/* IndexPointerType */ +/* GL_SHORT */ +/* GL_INT */ +/* GL_FLOAT */ +/* GL_DOUBLE */ + +/* LightModelParameter */ +/* GL_LIGHT_MODEL_AMBIENT */ +/* GL_LIGHT_MODEL_LOCAL_VIEWER */ +/* GL_LIGHT_MODEL_TWO_SIDE */ + +/* LightName */ +#define GL_LIGHT0 0x4000 +#define GL_LIGHT1 0x4001 +#define GL_LIGHT2 0x4002 +#define GL_LIGHT3 0x4003 +#define GL_LIGHT4 0x4004 +#define GL_LIGHT5 0x4005 +#define GL_LIGHT6 0x4006 +#define GL_LIGHT7 0x4007 + +/* LightParameter */ +#define GL_AMBIENT 0x1200 +#define GL_DIFFUSE 0x1201 +#define GL_SPECULAR 0x1202 +#define GL_POSITION 0x1203 +#define GL_SPOT_DIRECTION 0x1204 +#define GL_SPOT_EXPONENT 0x1205 +#define GL_SPOT_CUTOFF 0x1206 +#define GL_CONSTANT_ATTENUATION 0x1207 +#define GL_LINEAR_ATTENUATION 0x1208 +#define GL_QUADRATIC_ATTENUATION 0x1209 + +/* InterleavedArrays */ +/* GL_V2F */ +/* GL_V3F */ +/* GL_C4UB_V2F */ +/* GL_C4UB_V3F */ +/* GL_C3F_V3F */ +/* GL_N3F_V3F */ +/* GL_C4F_N3F_V3F */ +/* GL_T2F_V3F */ +/* GL_T4F_V4F */ +/* GL_T2F_C4UB_V3F */ +/* GL_T2F_C3F_V3F */ +/* GL_T2F_N3F_V3F */ +/* GL_T2F_C4F_N3F_V3F */ +/* GL_T4F_C4F_N3F_V4F */ + +/* ListMode */ +#define GL_COMPILE 0x1300 +#define GL_COMPILE_AND_EXECUTE 0x1301 + +/* ListNameType */ +/* GL_BYTE */ +/* GL_UNSIGNED_BYTE */ +/* GL_SHORT */ +/* GL_UNSIGNED_SHORT */ +/* GL_INT */ +/* GL_UNSIGNED_INT */ +/* GL_FLOAT */ +/* GL_2_BYTES */ +/* GL_3_BYTES */ +/* GL_4_BYTES */ + +/* LogicOp */ +#define GL_CLEAR 0x1500 +#define GL_AND 0x1501 +#define GL_AND_REVERSE 0x1502 +#define GL_COPY 0x1503 +#define GL_AND_INVERTED 0x1504 +#define GL_NOOP 0x1505 +#define GL_XOR 0x1506 +#define GL_OR 0x1507 +#define GL_NOR 0x1508 +#define GL_EQUIV 0x1509 +#define GL_INVERT 0x150A +#define GL_OR_REVERSE 0x150B +#define GL_COPY_INVERTED 0x150C +#define GL_OR_INVERTED 0x150D +#define GL_NAND 0x150E +#define GL_SET 0x150F + +/* MapTarget */ +/* GL_MAP1_COLOR_4 */ +/* GL_MAP1_INDEX */ +/* GL_MAP1_NORMAL */ +/* GL_MAP1_TEXTURE_COORD_1 */ +/* GL_MAP1_TEXTURE_COORD_2 */ +/* GL_MAP1_TEXTURE_COORD_3 */ +/* GL_MAP1_TEXTURE_COORD_4 */ +/* GL_MAP1_VERTEX_3 */ +/* GL_MAP1_VERTEX_4 */ +/* GL_MAP2_COLOR_4 */ +/* GL_MAP2_INDEX */ +/* GL_MAP2_NORMAL */ +/* GL_MAP2_TEXTURE_COORD_1 */ +/* GL_MAP2_TEXTURE_COORD_2 */ +/* GL_MAP2_TEXTURE_COORD_3 */ +/* GL_MAP2_TEXTURE_COORD_4 */ +/* GL_MAP2_VERTEX_3 */ +/* GL_MAP2_VERTEX_4 */ + +/* MaterialFace */ +/* GL_FRONT */ +/* GL_BACK */ +/* GL_FRONT_AND_BACK */ + +/* MaterialParameter */ +#define GL_EMISSION 0x1600 +#define GL_SHININESS 0x1601 +#define GL_AMBIENT_AND_DIFFUSE 0x1602 +#define GL_COLOR_INDEXES 0x1603 +/* GL_AMBIENT */ +/* GL_DIFFUSE */ +/* GL_SPECULAR */ + +/* MatrixMode */ +#define GL_MODELVIEW 0x1700 +#define GL_PROJECTION 0x1701 +#define GL_TEXTURE 0x1702 + +/* MeshMode1 */ +/* GL_POINT */ +/* GL_LINE */ + +/* MeshMode2 */ +/* GL_POINT */ +/* GL_LINE */ +/* GL_FILL */ + +/* NormalPointerType */ +/* GL_BYTE */ +/* GL_SHORT */ +/* GL_INT */ +/* GL_FLOAT */ +/* GL_DOUBLE */ + +/* PixelCopyType */ +#define GL_COLOR 0x1800 +#define GL_DEPTH 0x1801 +#define GL_STENCIL 0x1802 + +/* PixelFormat */ +#define GL_COLOR_INDEX 0x1900 +#define GL_STENCIL_INDEX 0x1901 +#define GL_DEPTH_COMPONENT 0x1902 +#define GL_RED 0x1903 +#define GL_GREEN 0x1904 +#define GL_BLUE 0x1905 +#define GL_ALPHA 0x1906 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A + +/* PixelMap */ +/* GL_PIXEL_MAP_I_TO_I */ +/* GL_PIXEL_MAP_S_TO_S */ +/* GL_PIXEL_MAP_I_TO_R */ +/* GL_PIXEL_MAP_I_TO_G */ +/* GL_PIXEL_MAP_I_TO_B */ +/* GL_PIXEL_MAP_I_TO_A */ +/* GL_PIXEL_MAP_R_TO_R */ +/* GL_PIXEL_MAP_G_TO_G */ +/* GL_PIXEL_MAP_B_TO_B */ +/* GL_PIXEL_MAP_A_TO_A */ + +/* PixelStore */ +/* GL_UNPACK_SWAP_BYTES */ +/* GL_UNPACK_LSB_FIRST */ +/* GL_UNPACK_ROW_LENGTH */ +/* GL_UNPACK_SKIP_ROWS */ +/* GL_UNPACK_SKIP_PIXELS */ +/* GL_UNPACK_ALIGNMENT */ +/* GL_PACK_SWAP_BYTES */ +/* GL_PACK_LSB_FIRST */ +/* GL_PACK_ROW_LENGTH */ +/* GL_PACK_SKIP_ROWS */ +/* GL_PACK_SKIP_PIXELS */ +/* GL_PACK_ALIGNMENT */ + +/* PixelTransfer */ +/* GL_MAP_COLOR */ +/* GL_MAP_STENCIL */ +/* GL_INDEX_SHIFT */ +/* GL_INDEX_OFFSET */ +/* GL_RED_SCALE */ +/* GL_RED_BIAS */ +/* GL_GREEN_SCALE */ +/* GL_GREEN_BIAS */ +/* GL_BLUE_SCALE */ +/* GL_BLUE_BIAS */ +/* GL_ALPHA_SCALE */ +/* GL_ALPHA_BIAS */ +/* GL_DEPTH_SCALE */ +/* GL_DEPTH_BIAS */ + +/* PixelType */ +#define GL_BITMAP 0x1A00 +/* GL_BYTE */ +/* GL_UNSIGNED_BYTE */ +/* GL_SHORT */ +/* GL_UNSIGNED_SHORT */ +/* GL_INT */ +/* GL_UNSIGNED_INT */ +/* GL_FLOAT */ + +/* PolygonMode */ +#define GL_POINT 0x1B00 +#define GL_LINE 0x1B01 +#define GL_FILL 0x1B02 + +/* ReadBufferMode */ +/* GL_FRONT_LEFT */ +/* GL_FRONT_RIGHT */ +/* GL_BACK_LEFT */ +/* GL_BACK_RIGHT */ +/* GL_FRONT */ +/* GL_BACK */ +/* GL_LEFT */ +/* GL_RIGHT */ +/* GL_AUX0 */ +/* GL_AUX1 */ +/* GL_AUX2 */ +/* GL_AUX3 */ + +/* RenderingMode */ +#define GL_RENDER 0x1C00 +#define GL_FEEDBACK 0x1C01 +#define GL_SELECT 0x1C02 + +/* ShadingModel */ +#define GL_FLAT 0x1D00 +#define GL_SMOOTH 0x1D01 + + +/* StencilFunction */ +/* GL_NEVER */ +/* GL_LESS */ +/* GL_EQUAL */ +/* GL_LEQUAL */ +/* GL_GREATER */ +/* GL_NOTEQUAL */ +/* GL_GEQUAL */ +/* GL_ALWAYS */ + +/* StencilOp */ +/* GL_ZERO */ +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 +/* GL_INVERT */ + +/* StringName */ +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 + +/* TextureCoordName */ +#define GL_S 0x2000 +#define GL_T 0x2001 +#define GL_R 0x2002 +#define GL_Q 0x2003 + +/* TexCoordPointerType */ +/* GL_SHORT */ +/* GL_INT */ +/* GL_FLOAT */ +/* GL_DOUBLE */ + +/* TextureEnvMode */ +#define GL_MODULATE 0x2100 +#define GL_DECAL 0x2101 +/* GL_BLEND */ +/* GL_REPLACE */ + +/* TextureEnvParameter */ +#define GL_TEXTURE_ENV_MODE 0x2200 +#define GL_TEXTURE_ENV_COLOR 0x2201 + +/* TextureEnvTarget */ +#define GL_TEXTURE_ENV 0x2300 + +/* TextureGenMode */ +#define GL_EYE_LINEAR 0x2400 +#define GL_OBJECT_LINEAR 0x2401 +#define GL_SPHERE_MAP 0x2402 + +/* TextureGenParameter */ +#define GL_TEXTURE_GEN_MODE 0x2500 +#define GL_OBJECT_PLANE 0x2501 +#define GL_EYE_PLANE 0x2502 + +/* TextureMagFilter */ +#define GL_NEAREST 0x2600 +#define GL_LINEAR 0x2601 + +/* TextureMinFilter */ +/* GL_NEAREST */ +/* GL_LINEAR */ +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 + +/* TextureParameterName */ +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 +/* GL_TEXTURE_BORDER_COLOR */ +/* GL_TEXTURE_PRIORITY */ + +/* TextureTarget */ +/* GL_TEXTURE_1D */ +/* GL_TEXTURE_2D */ +/* GL_PROXY_TEXTURE_1D */ +/* GL_PROXY_TEXTURE_2D */ + +/* TextureWrapMode */ +#define GL_CLAMP 0x2900 +#define GL_REPEAT 0x2901 + +/* VertexPointerType */ +/* GL_SHORT */ +/* GL_INT */ +/* GL_FLOAT */ +/* GL_DOUBLE */ + +/* ClientAttribMask */ +#define GL_CLIENT_PIXEL_STORE_BIT 0x00000001 +#define GL_CLIENT_VERTEX_ARRAY_BIT 0x00000002 +#define GL_CLIENT_ALL_ATTRIB_BITS 0xffffffff + +/* polygon_offset */ +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_POINT 0x2A01 +#define GL_POLYGON_OFFSET_LINE 0x2A02 +#define GL_POLYGON_OFFSET_FILL 0x8037 + +/* texture */ +#define GL_ALPHA4 0x803B +#define GL_ALPHA8 0x803C +#define GL_ALPHA12 0x803D +#define GL_ALPHA16 0x803E +#define GL_LUMINANCE4 0x803F +#define GL_LUMINANCE8 0x8040 +#define GL_LUMINANCE12 0x8041 +#define GL_LUMINANCE16 0x8042 +#define GL_LUMINANCE4_ALPHA4 0x8043 +#define GL_LUMINANCE6_ALPHA2 0x8044 +#define GL_LUMINANCE8_ALPHA8 0x8045 +#define GL_LUMINANCE12_ALPHA4 0x8046 +#define GL_LUMINANCE12_ALPHA12 0x8047 +#define GL_LUMINANCE16_ALPHA16 0x8048 +#define GL_INTENSITY 0x8049 +#define GL_INTENSITY4 0x804A +#define GL_INTENSITY8 0x804B +#define GL_INTENSITY12 0x804C +#define GL_INTENSITY16 0x804D +#define GL_R3_G3_B2 0x2A10 +#define GL_RGB4 0x804F +#define GL_RGB5 0x8050 +#define GL_RGB8 0x8051 +#define GL_RGB10 0x8052 +#define GL_RGB12 0x8053 +#define GL_RGB16 0x8054 +#define GL_RGBA2 0x8055 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGBA8 0x8058 +#define GL_RGB10_A2 0x8059 +#define GL_RGBA12 0x805A +#define GL_RGBA16 0x805B +#define GL_TEXTURE_RED_SIZE 0x805C +#define GL_TEXTURE_GREEN_SIZE 0x805D +#define GL_TEXTURE_BLUE_SIZE 0x805E +#define GL_TEXTURE_ALPHA_SIZE 0x805F +#define GL_TEXTURE_LUMINANCE_SIZE 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE 0x8061 +#define GL_PROXY_TEXTURE_1D 0x8063 +#define GL_PROXY_TEXTURE_2D 0x8064 + +/* texture_object */ +#define GL_TEXTURE_PRIORITY 0x8066 +#define GL_TEXTURE_RESIDENT 0x8067 +#define GL_TEXTURE_BINDING_1D 0x8068 +#define GL_TEXTURE_BINDING_2D 0x8069 + +/* vertex_array */ +#define GL_VERTEX_ARRAY 0x8074 +#define GL_NORMAL_ARRAY 0x8075 +#define GL_COLOR_ARRAY 0x8076 +#define GL_INDEX_ARRAY 0x8077 +#define GL_TEXTURE_COORD_ARRAY 0x8078 +#define GL_EDGE_FLAG_ARRAY 0x8079 +#define GL_VERTEX_ARRAY_SIZE 0x807A +#define GL_VERTEX_ARRAY_TYPE 0x807B +#define GL_VERTEX_ARRAY_STRIDE 0x807C +#define GL_NORMAL_ARRAY_TYPE 0x807E +#define GL_NORMAL_ARRAY_STRIDE 0x807F +#define GL_COLOR_ARRAY_SIZE 0x8081 +#define GL_COLOR_ARRAY_TYPE 0x8082 +#define GL_COLOR_ARRAY_STRIDE 0x8083 +#define GL_INDEX_ARRAY_TYPE 0x8085 +#define GL_INDEX_ARRAY_STRIDE 0x8086 +#define GL_TEXTURE_COORD_ARRAY_SIZE 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE 0x808A +#define GL_EDGE_FLAG_ARRAY_STRIDE 0x808C +#define GL_VERTEX_ARRAY_POINTER 0x808E +#define GL_NORMAL_ARRAY_POINTER 0x808F +#define GL_COLOR_ARRAY_POINTER 0x8090 +#define GL_INDEX_ARRAY_POINTER 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER 0x8093 +#define GL_V2F 0x2A20 +#define GL_V3F 0x2A21 +#define GL_C4UB_V2F 0x2A22 +#define GL_C4UB_V3F 0x2A23 +#define GL_C3F_V3F 0x2A24 +#define GL_N3F_V3F 0x2A25 +#define GL_C4F_N3F_V3F 0x2A26 +#define GL_T2F_V3F 0x2A27 +#define GL_T4F_V4F 0x2A28 +#define GL_T2F_C4UB_V3F 0x2A29 +#define GL_T2F_C3F_V3F 0x2A2A +#define GL_T2F_N3F_V3F 0x2A2B +#define GL_T2F_C4F_N3F_V3F 0x2A2C +#define GL_T4F_C4F_N3F_V4F 0x2A2D + +/* Extensions */ +#define GL_EXT_vertex_array 1 +#define GL_EXT_bgra 1 +#define GL_EXT_paletted_texture 1 +#define GL_WIN_swap_hint 1 +#define GL_WIN_draw_range_elements 1 +// #define GL_WIN_phong_shading 1 +// #define GL_WIN_specular_fog 1 + +/* EXT_vertex_array */ +#define GL_VERTEX_ARRAY_EXT 0x8074 +#define GL_NORMAL_ARRAY_EXT 0x8075 +#define GL_COLOR_ARRAY_EXT 0x8076 +#define GL_INDEX_ARRAY_EXT 0x8077 +#define GL_TEXTURE_COORD_ARRAY_EXT 0x8078 +#define GL_EDGE_FLAG_ARRAY_EXT 0x8079 +#define GL_VERTEX_ARRAY_SIZE_EXT 0x807A +#define GL_VERTEX_ARRAY_TYPE_EXT 0x807B +#define GL_VERTEX_ARRAY_STRIDE_EXT 0x807C +#define GL_VERTEX_ARRAY_COUNT_EXT 0x807D +#define GL_NORMAL_ARRAY_TYPE_EXT 0x807E +#define GL_NORMAL_ARRAY_STRIDE_EXT 0x807F +#define GL_NORMAL_ARRAY_COUNT_EXT 0x8080 +#define GL_COLOR_ARRAY_SIZE_EXT 0x8081 +#define GL_COLOR_ARRAY_TYPE_EXT 0x8082 +#define GL_COLOR_ARRAY_STRIDE_EXT 0x8083 +#define GL_COLOR_ARRAY_COUNT_EXT 0x8084 +#define GL_INDEX_ARRAY_TYPE_EXT 0x8085 +#define GL_INDEX_ARRAY_STRIDE_EXT 0x8086 +#define GL_INDEX_ARRAY_COUNT_EXT 0x8087 +#define GL_TEXTURE_COORD_ARRAY_SIZE_EXT 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE_EXT 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE_EXT 0x808A +#define GL_TEXTURE_COORD_ARRAY_COUNT_EXT 0x808B +#define GL_EDGE_FLAG_ARRAY_STRIDE_EXT 0x808C +#define GL_EDGE_FLAG_ARRAY_COUNT_EXT 0x808D +#define GL_VERTEX_ARRAY_POINTER_EXT 0x808E +#define GL_NORMAL_ARRAY_POINTER_EXT 0x808F +#define GL_COLOR_ARRAY_POINTER_EXT 0x8090 +#define GL_INDEX_ARRAY_POINTER_EXT 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER_EXT 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER_EXT 0x8093 +#define GL_DOUBLE_EXT GL_DOUBLE + +/* EXT_bgra */ +#define GL_BGR_EXT 0x80E0 +#define GL_BGRA_EXT 0x80E1 + +/* EXT_paletted_texture */ + +/* These must match the GL_COLOR_TABLE_*_SGI enumerants */ +#define GL_COLOR_TABLE_FORMAT_EXT 0x80D8 +#define GL_COLOR_TABLE_WIDTH_EXT 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE_EXT 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE_EXT 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE_EXT 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE_EXT 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE_EXT 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE_EXT 0x80DF + +#define GL_COLOR_INDEX1_EXT 0x80E2 +#define GL_COLOR_INDEX2_EXT 0x80E3 +#define GL_COLOR_INDEX4_EXT 0x80E4 +#define GL_COLOR_INDEX8_EXT 0x80E5 +#define GL_COLOR_INDEX12_EXT 0x80E6 +#define GL_COLOR_INDEX16_EXT 0x80E7 + +/* WIN_draw_range_elements */ +#define GL_MAX_ELEMENTS_VERTICES_WIN 0x80E8 +#define GL_MAX_ELEMENTS_INDICES_WIN 0x80E9 + +/* WIN_phong_shading */ +#define GL_PHONG_WIN 0x80EA +#define GL_PHONG_HINT_WIN 0x80EB + +/* WIN_specular_fog */ +#define GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC + +/* For compatibility with OpenGL v1.0 */ +#define GL_LOGIC_OP GL_INDEX_LOGIC_OP +#define GL_TEXTURE_COMPONENTS GL_TEXTURE_INTERNAL_FORMAT +#include <QtOpenGL/QtOpenGL> +#endif // QT_NO_OPENGL + diff --git a/PySide/licensecomment.txt b/PySide/licensecomment.txt new file mode 100644 index 0000000..fdf9745 --- /dev/null +++ b/PySide/licensecomment.txt @@ -0,0 +1,23 @@ +/* + * This file is part of PySide: Python for Qt + * + * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). + * + * Contact: PySide team <contact@pyside.org> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * version 2.1 as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301 USA + * + */ + diff --git a/cmake_uninstall.cmake b/cmake_uninstall.cmake new file mode 100644 index 0000000..df95fb9 --- /dev/null +++ b/cmake_uninstall.cmake @@ -0,0 +1,21 @@ +IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") + MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"") +ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") + +FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) +STRING(REGEX REPLACE "\n" ";" files "${files}") +FOREACH(file ${files}) + MESSAGE(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"") + IF(EXISTS "$ENV{DESTDIR}${file}") + EXEC_PROGRAM( + "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" + OUTPUT_VARIABLE rm_out + RETURN_VALUE rm_retval + ) + IF(NOT "${rm_retval}" STREQUAL 0) + MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") + ENDIF(NOT "${rm_retval}" STREQUAL 0) + ELSE(EXISTS "$ENV{DESTDIR}${file}") + MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.") + ENDIF(EXISTS "$ENV{DESTDIR}${file}") +ENDFOREACH(file) |