diff --git a/.github/workflows/linux-builds.yml b/.github/workflows/linux-builds.yml index 9c36d50..c102eb0 100644 --- a/.github/workflows/linux-builds.yml +++ b/.github/workflows/linux-builds.yml @@ -6,7 +6,7 @@ jobs: build: strategy: matrix: - os: [ubuntu-20.04, ubuntu-18.04] + os: [ubuntu-20.04] runs-on: ${{ matrix.os }} @@ -36,12 +36,12 @@ jobs: - name: Install Qt uses: jurplel/install-qt-action@v2 with: - version: 6.4.2 - host: linux - target: desktop + version: '6.4.2' + host: 'linux' + target: 'desktop' install-deps: true cached: ${{ steps.cache-qt-6-4.outputs.cache-hit }} - setup-python: false + setup-python: true tools: '' tools-only: false diff --git a/README.md b/README.md index ae4aaa6..dff6e2d 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,9 @@ know it from Visual Studio. - [PRE Workbench](#pre-workbench) - [RDE – Robox Development Environment](#rde--robox-development-environment) - [ResInsight](#resinsight) + - [ADTF 3](#adtf-3) + - [DREAM.3D NX](#dream3d-nx) + - [LabPlot](#labplot) - [Alternative Docking System Implementations](#alternative-docking-system-implementations) - [KDDockWidgets](#kddockwidgets) - [QtitanDocking](#qtitandocking) @@ -572,7 +575,45 @@ user interface for its ResInsight users. [read more...](https://resinsight.org/) -![ResInsight](doc/showcase_resinsight.png) +[![ResInsight](doc/showcase_resinsight.png)](https://www.youtube.com/watch?v=HzLaQ1p6AUc) + +### [ADTF 3](https://www.digitalwerk.net/adtf/) + +The Automotive Data and Time-Triggered Framework was designed as a Rapid Prototyping Toolset, Simulation Framework and Test- and Measurement Tool. It is meant for: + +- Developing and testing ADAS and HAD components +- Recording of vehicle data for visualisation +- Simulation of complex scenarios in SIL/HIL test environments + +The software features time-based processing of multiple data streams and graphical editing of dynamic filter graphs. It also includes an SDK for custom plug-ins and reusable components, as well as components for data visualization in both 2D and 3D. This is was the +[manual](https://support.digitalwerk.net/adtf/v3/adtf_html/page_adtf_xsystem_plugin.html) +says about the switch to Qt Advanced Docking: + +> After several minor improvements the Qt5 ADTF XSystem uses the Advanced Docking System for Qt since ADTF 3.10.0 for more convenience and usability regarding layouting, docking and embedding several widgets. + +[read more...](https://support.digitalwerk.net/adtf/v3/adtf_html/index.html) + +![ADTF](doc/showcase_adtf.png) + +### [DREAM.3D NX](https://github.com/BlueQuartzSoftware/DREAM3D) + +DREAM.3D *(Digital Representation Environment for Analysis of Materials in 3D)* is an open source, cross-platform and modular, software suite that allows users to prepare, reconstruct, quantify, instantiate, and mesh, multidimensional, multimodal microstructural data, as well as many other applications. + +[BlueQuartz Software](http://www.bluequartz.net/) is currently completely rewriting the DREAM.3D application. For the upcoming version **[DREAM3D NX](http://www.dream3d.io/)** they improved the UI by using the Advanced Docking System. An [early version](http://www.dream3d.io/) of **DREAM3D NX** with ADS is already available to any user who would like to take the brand new version out for a spin. + +![DREAM.3D NX](doc/showcase_dream3d_nx.png) + +[read more...](http://dream3d.bluequartz.net/) + +### [LabPlot](https://labplot.kde.org/) + +KDE LabPlot is the ultimate free, open source and cross-platform tool for scientists, engineers, and students who need to analyze and visualize data. With its intuitive interface and powerful features, you can create stunning plots and diagrams with ease. Whether you're working with CSV, FITS, or HDF5 data, KDE LabPlot makes it simple to import and analyze your data. + +The LabPlot project recently switched to the Qt Advanced Docking System for their user interface. This switch represents a significant improvement to the LabPlot software, allowing users to create and manage complex data visualization layouts with ease. + +![LabPlot](doc/showcase_labplot.png) + +[read more...](https://labplot.kde.org/) ## Alternative Docking System Implementations @@ -580,7 +621,7 @@ If this Qt Advanced Docking System does not fit to your needs you may consider s ### KDDockWidgets -This is an advanced docking framework for Qt from [KDAB](https://www.kdab.com/). The interesting thing is, that they separated GUI code from logic, so they can easily provide a QtQuick backend in the future. +This is an advanced docking framework for Qt from [KDAB](https://www.kdab.com/). The interesting thing is, that they separated GUI code from logic, so they can easily provide a QtQuick backend in the future. - [Blog post about KDDockWidgets](https://www.kdab.com/kddockwidgets/) - [GitHub project](https://github.com/KDAB/KDDockWidgets) diff --git a/demo/CMakeLists.txt b/demo/CMakeLists.txt index 37fc435..6e30a95 100644 --- a/demo/CMakeLists.txt +++ b/demo/CMakeLists.txt @@ -25,7 +25,7 @@ target_link_libraries(AdvancedDockingSystemDemo PUBLIC Qt${QT_VERSION_MAJOR}::Co if(WIN32 AND QT_VERSION_MAJOR LESS 6) target_link_libraries(AdvancedDockingSystemDemo PUBLIC Qt${QT_VERSION_MAJOR}::AxContainer) endif() -target_link_libraries(AdvancedDockingSystemDemo PRIVATE qtadvanceddocking) +target_link_libraries(AdvancedDockingSystemDemo PRIVATE qt${QT_VERSION_MAJOR}advanceddocking) set_target_properties(AdvancedDockingSystemDemo PROPERTIES AUTOMOC ON AUTORCC ON diff --git a/demo/MainWindow.cpp b/demo/MainWindow.cpp index a522515..61f9874 100644 --- a/demo/MainWindow.cpp +++ b/demo/MainWindow.cpp @@ -734,7 +734,7 @@ CMainWindow::CMainWindow(QWidget *parent) : CDockManager::setConfigFlag(CDockManager::FocusHighlighting, true); // uncomment if you would like to enable dock widget auto hiding - CDockManager::setAutoHideConfigFlags(CDockManager::DefaultAutoHideConfig); + CDockManager::setAutoHideConfigFlags({CDockManager::DefaultAutoHideConfig | CDockManager::AutoHideCloseButtonCollapsesDock}); // uncomment if you would like to enable an equal distribution of the // available size of a splitter to all contained dock widgets diff --git a/doc/ads_icon_256.png b/doc/ads_icon_256.png index 4f49923..3e7c912 100644 Binary files a/doc/ads_icon_256.png and b/doc/ads_icon_256.png differ diff --git a/doc/ads_icon_512.png b/doc/ads_icon_512.png index c252df8..a86ff61 100644 Binary files a/doc/ads_icon_512.png and b/doc/ads_icon_512.png differ diff --git a/doc/cfg_flag_AutoHideCloseButtonCollapsesDock_false.gif b/doc/cfg_flag_AutoHideCloseButtonCollapsesDock_false.gif new file mode 100644 index 0000000..24c7c99 Binary files /dev/null and b/doc/cfg_flag_AutoHideCloseButtonCollapsesDock_false.gif differ diff --git a/doc/cfg_flag_AutoHideCloseButtonCollapsesDock_true.gif b/doc/cfg_flag_AutoHideCloseButtonCollapsesDock_true.gif new file mode 100644 index 0000000..4b971c4 Binary files /dev/null and b/doc/cfg_flag_AutoHideCloseButtonCollapsesDock_true.gif differ diff --git a/doc/showcase_adtf.png b/doc/showcase_adtf.png new file mode 100644 index 0000000..633bc04 Binary files /dev/null and b/doc/showcase_adtf.png differ diff --git a/doc/showcase_dream3d_nx.png b/doc/showcase_dream3d_nx.png new file mode 100644 index 0000000..b64434f Binary files /dev/null and b/doc/showcase_dream3d_nx.png differ diff --git a/doc/showcase_labplot.png b/doc/showcase_labplot.png new file mode 100644 index 0000000..a8a1d75 Binary files /dev/null and b/doc/showcase_labplot.png differ diff --git a/doc/showcase_resinsight.png b/doc/showcase_resinsight.png index c21584f..d5ab8f5 100644 Binary files a/doc/showcase_resinsight.png and b/doc/showcase_resinsight.png differ diff --git a/doc/user-guide.md b/doc/user-guide.md index 7a3122e..176b321 100644 --- a/doc/user-guide.md +++ b/doc/user-guide.md @@ -39,6 +39,7 @@ - [`AutoHideButtonCheckable`](#autohidebuttoncheckable) - [`AutoHideSideBarsIconOnly`](#autohidesidebarsicononly) - [`AutoHideShowOnMouseOver`](#autohideshowonmouseover) + - [`AutoHideCloseButtonCollapsesDock`](#autohideclosebuttoncollapsesdock) - [DockWidget Feature Flags](#dockwidget-feature-flags) - [`DockWidgetClosable`](#dockwidgetclosable) - [`DockWidgetMovable`](#dockwidgetmovable) @@ -589,6 +590,21 @@ is shown, if the user hovers over the Auto-Hide tab or if the users moves the mouse outside of the Auto-Hide widget. Showing and hiding my mouse click still works if this feature is enabled. +### `AutoHideCloseButtonCollapsesDock` + +Some users don't understand the distinction between closing an auto hide dock and +collapsing an auto hide dock. This may lead to situations where they press the +close button (losing the side tab widget) instead of simply clicking outside +the auto hide dock (collapsing the dock). + +![AutoHideCloseButtonCollapsesDock false](cfg_flag_AutoHideCloseButtonCollapsesDock_false.gif) + +If `AutoHideCloseButtonCollapsesDock` option is active, the +close button in an auto hide widget collapses the auto hide widget instead of +closing it. + +![AutoHideCloseButtonCollapsesDock true](cfg_flag_AutoHideCloseButtonCollapsesDock_true.gif) + ## DockWidget Feature Flags ### `DockWidgetClosable` diff --git a/examples/autohide/CMakeLists.txt b/examples/autohide/CMakeLists.txt index cec3910..3379067 100644 --- a/examples/autohide/CMakeLists.txt +++ b/examples/autohide/CMakeLists.txt @@ -9,7 +9,7 @@ add_executable(AutoHideExample WIN32 mainwindow.ui ) target_include_directories(AutoHideExample PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../../src") -target_link_libraries(AutoHideExample PRIVATE qtadvanceddocking) +target_link_libraries(AutoHideExample PRIVATE qt${QT_VERSION_MAJOR}advanceddocking) target_link_libraries(AutoHideExample PUBLIC Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Gui Qt${QT_VERSION_MAJOR}::Widgets) diff --git a/examples/centralwidget/CMakeLists.txt b/examples/centralwidget/CMakeLists.txt index 7f57821..ae42cdf 100644 --- a/examples/centralwidget/CMakeLists.txt +++ b/examples/centralwidget/CMakeLists.txt @@ -9,7 +9,7 @@ add_executable(CentralWidgetExample WIN32 mainwindow.ui ) target_include_directories(CentralWidgetExample PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../../src") -target_link_libraries(CentralWidgetExample PRIVATE qtadvanceddocking) +target_link_libraries(CentralWidgetExample PRIVATE qt${QT_VERSION_MAJOR}advanceddocking) target_link_libraries(CentralWidgetExample PUBLIC Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Gui Qt${QT_VERSION_MAJOR}::Widgets) diff --git a/examples/deleteonclose/CMakeLists.txt b/examples/deleteonclose/CMakeLists.txt index d329704..98557a6 100644 --- a/examples/deleteonclose/CMakeLists.txt +++ b/examples/deleteonclose/CMakeLists.txt @@ -7,7 +7,7 @@ add_executable(DeleteOnCloseTest WIN32 main.cpp ) target_include_directories(DeleteOnCloseTest PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../../src") -target_link_libraries(DeleteOnCloseTest PRIVATE qtadvanceddocking) +target_link_libraries(DeleteOnCloseTest PRIVATE qt${QT_VERSION_MAJOR}advanceddocking) target_link_libraries(DeleteOnCloseTest PUBLIC Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Gui Qt${QT_VERSION_MAJOR}::Widgets) diff --git a/examples/dockindock/CMakeLists.txt b/examples/dockindock/CMakeLists.txt index 3bf489e..39ba98c 100644 --- a/examples/dockindock/CMakeLists.txt +++ b/examples/dockindock/CMakeLists.txt @@ -12,7 +12,7 @@ add_executable(DockInDockExample WIN32 mainframe.cpp ) target_include_directories(DockInDockExample PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../../src") -target_link_libraries(DockInDockExample PRIVATE qtadvanceddocking) +target_link_libraries(DockInDockExample PRIVATE qt${QT_VERSION_MAJOR}advanceddocking) target_link_libraries(DockInDockExample PUBLIC Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Gui Qt${QT_VERSION_MAJOR}::Widgets) diff --git a/examples/emptydockarea/CMakeLists.txt b/examples/emptydockarea/CMakeLists.txt index baed967..c9b02f2 100644 --- a/examples/emptydockarea/CMakeLists.txt +++ b/examples/emptydockarea/CMakeLists.txt @@ -9,7 +9,7 @@ add_executable(EmptyDockAreaExample WIN32 mainwindow.ui ) target_include_directories(EmptyDockAreaExample PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../../src") -target_link_libraries(EmptyDockAreaExample PRIVATE qtadvanceddocking) +target_link_libraries(EmptyDockAreaExample PRIVATE qt${QT_VERSION_MAJOR}advanceddocking) target_link_libraries(EmptyDockAreaExample PUBLIC Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Gui Qt${QT_VERSION_MAJOR}::Widgets) diff --git a/examples/hideshow/CMakeLists.txt b/examples/hideshow/CMakeLists.txt index 71f22f2..becab35 100644 --- a/examples/hideshow/CMakeLists.txt +++ b/examples/hideshow/CMakeLists.txt @@ -9,7 +9,7 @@ add_executable(HideShowExample WIN32 MainWindow.ui ) target_include_directories(HideShowExample PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../../src") -target_link_libraries(HideShowExample PRIVATE qtadvanceddocking) +target_link_libraries(HideShowExample PRIVATE qt${QT_VERSION_MAJOR}advanceddocking) target_link_libraries(HideShowExample PUBLIC Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Gui Qt${QT_VERSION_MAJOR}::Widgets) diff --git a/examples/sidebar/CMakeLists.txt b/examples/sidebar/CMakeLists.txt index 24b1954..a2e05e6 100644 --- a/examples/sidebar/CMakeLists.txt +++ b/examples/sidebar/CMakeLists.txt @@ -9,7 +9,7 @@ add_executable(SidebarExample WIN32 MainWindow.ui ) target_include_directories(SidebarExample PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../../src") -target_link_libraries(SidebarExample PRIVATE qtadvanceddocking) +target_link_libraries(SidebarExample PRIVATE qt${QT_VERSION_MAJOR}advanceddocking) target_link_libraries(SidebarExample PUBLIC Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Gui Qt${QT_VERSION_MAJOR}::Widgets) diff --git a/examples/simple/CMakeLists.txt b/examples/simple/CMakeLists.txt index 027ed0f..99f42a3 100644 --- a/examples/simple/CMakeLists.txt +++ b/examples/simple/CMakeLists.txt @@ -9,7 +9,7 @@ add_executable(SimpleExample WIN32 MainWindow.ui ) target_include_directories(SimpleExample PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../../src") -target_link_libraries(SimpleExample PRIVATE qtadvanceddocking) +target_link_libraries(SimpleExample PRIVATE qt${QT_VERSION_MAJOR}advanceddocking) target_link_libraries(SimpleExample PUBLIC Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Gui Qt${QT_VERSION_MAJOR}::Widgets) diff --git a/project.py b/project.py index a8233cd..5b1fd9b 100644 --- a/project.py +++ b/project.py @@ -1,4 +1,5 @@ import os +import sys from pyqtbuild import PyQtBindings, PyQtProject from sipbuild import Option @@ -16,12 +17,37 @@ class ads(PyQtBindings): """ Initialise the bindings. """ super().__init__(project, 'ads') + + def get_options(self): + """Our custom options that a user can pass to sip-build.""" + options = super().get_options() + options += [ + Option('ads_incdir', + help='the directory containing the ads header file', + metavar='DIR'), + Option('ads_libdir', + help='the directory containing the ads library', + metavar='DIR'), + Option('ads_lib', + help='the ads library', + metavar='LIB'), + ] + return options def apply_user_defaults(self, tool): """ Set default values for user options that haven't been set yet. """ - + resource_file = os.path.join(self.project.root_dir,'src','ads.qrc') print("Adding resource file to qmake project: ", resource_file) self.builder_settings.append('RESOURCES += '+resource_file) + if self.ads_lib is not None: + self.libraries.append(self.ads_lib) + + if self.ads_incdir is not None: + self.include_dirs.append(self.ads_incdir) + + if self.ads_libdir is not None: + self.library_dirs.append(self.ads_libdir) + super().apply_user_defaults(tool) diff --git a/pyproject.toml b/pyproject.toml index 825aa90..cbe95d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ # Specify the build system. [build-system] -requires = ["sip >=6.0.2, <6.6", "PyQt-builder >=1.6, <2", "PyQt5>=5.15.4", "PyQt5-sip<13,>=12.8"] +requires = ["sip >=6.0.2, <6.3", "PyQt-builder >=1.6, <2", "PyQt5==5.15.4", "PyQt5-sip<13,>=12.8"] build-backend = "sipbuild.api" # Specify the PEP 566 metadata for the project. [tool.sip.metadata] name = "PyQtAds" -version = "3.8.2" +version = "4.0.2" summary = "Python bindings for Qt Advanced Docking System" home-page = "https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System/" license = "LGPL v2.1" @@ -21,8 +21,11 @@ tag-prefix = "QtAds" define-macros = ["ADS_SHARED_EXPORT"] sip-file = "ads.sip" include-dirs = ["src"] -qmake-QT = ["widgets"] +qmake-QT = ["widgets", "gui-private; platform_system == 'Linux'"] headers = [ + "src/AutoHideDockContainer.h", + "src/AutoHideSideBar.h", + "src/AutoHideTab.h", "src/DockAreaTabBar.h", "src/DockAreaTitleBar.h", "src/DockAreaTitleBar_p.h", @@ -40,10 +43,15 @@ headers = [ "src/FloatingDockContainer.h", "src/FloatingDragPreview.h", "src/IconProvider.h", + "src/PushButton.h", + "src/ResizeHandle.h", "src/ads_globals.h", - # "src/linux/FloatingWidgetTitleBar.h", + "src/linux/FloatingWidgetTitleBar.h; platform_system == 'Linux'", ] sources = [ + "src/AutoHideTab.cpp", + "src/AutoHideDockContainer.cpp", + "src/AutoHideSideBar.cpp", "src/DockAreaTabBar.cpp", "src/DockAreaTitleBar.cpp", "src/DockAreaWidget.cpp", @@ -60,6 +68,8 @@ sources = [ "src/FloatingDockContainer.cpp", "src/FloatingDragPreview.cpp", "src/IconProvider.cpp", + "src/PushButton.cpp", + "src/ResizeHandle.cpp", "src/ads_globals.cpp", - # "src/linux/FloatingWidgetTitleBar.cpp", + "src/linux/FloatingWidgetTitleBar.cpp; platform_system == 'Linux'", ] diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 2b77ae1..0000000 --- a/setup.cfg +++ /dev/null @@ -1,7 +0,0 @@ -[versioneer] -VCS = git -style = pep440 -versionfile_source = PyQtAds/_version.py -versionfile_build = PyQtAds/_version.py -tag_prefix = - diff --git a/setup.py b/setup.py deleted file mode 100644 index 1986df7..0000000 --- a/setup.py +++ /dev/null @@ -1,396 +0,0 @@ -import os -import sys -import shlex -import shutil -import subprocess -import glob - -import versioneer - -from setuptools import setup, find_packages -from setuptools.command.build_py import build_py -from setuptools.extension import Extension -from distutils import sysconfig, dir_util, spawn, log, cmd -from distutils.dep_util import newer -import sipdistutils -import sipconfig -from PyQt5.QtCore import PYQT_CONFIGURATION -from PyQt5.pyrcc_main import processResourceFile - -MODULE_NAME = "ads" -SRC_PATH = "PyQtAds" - -REQUIRE_PYQT = True -if "--conda-recipe" in sys.argv: - REQUIRE_PYQT = False - sys.argv.remove("--conda-recipe") - - -class HostPythonConfiguration(object): - def __init__(self): - self.platform = sys.platform - self.version = sys.hexversion>>8 - - self.inc_dir = sysconfig.get_python_inc() - self.venv_inc_dir = sysconfig.get_python_inc(prefix=sys.prefix) - self.module_dir = sysconfig.get_python_lib(plat_specific=1) - - if sys.platform == 'win32': - self.data_dir = sys.prefix - self.lib_dir = sys.prefix +'\\libs' - else: - self.data_dir = sys.prefix + '/share' - self.lib_dir = sys.prefix + '/lib' - - -class TargetQtConfiguration(object): - def __init__(self, qmake): - pipe = os.popen(' '.join([qmake, '-query'])) - - for l in pipe: - l = l.strip() - - tokens = l.split(':', 1) - if isinstance(tokens, list): - if len(tokens) != 2: - error("Unexpected output from qmake: '%s'\n" % l) - - name, value = tokens - else: - name = tokens - value = None - - name = name.replace('/', '_') - setattr(self, name, value) - - pipe.close() - - -class build_ext(sipdistutils.build_ext): - - description = "Builds the " + MODULE_NAME + " module." - - user_options = sipdistutils.build_ext.user_options + [ - ('qmake-bin=', None, "Path to qmake binary"), - ('sip-bin=', None, "Path to sip binary"), - ('qt-include-dir=', None, "Path to Qt headers"), - ('pyqt-sip-dir=', None, "Path to PyQt's SIP files"), - ('pyqt-sip-flags=', None, "SIP flags used to generate PyQt bindings"), - ('sip-dir=', None, "Path to module's SIP files"), - ('inc-dir=', None, "Path to module's include files") - ] - - def initialize_options (self): - super().initialize_options() - self.qmake_bin = 'qmake' - self.sip_bin = None - self.qt_include_dir = None - self.qt_libinfix = '' - self.pyqt_sip_dir = None - self.pyqt_sip_flags = None - self.sip_files_dir = None - self.sip_inc_dir = None - self.inc_dir = None - self.pyconfig = HostPythonConfiguration() - self.qtconfig = TargetQtConfiguration(self.qmake_bin) - self.config = sipconfig.Configuration() - self.config.default_mod_dir = ("/usr/local/lib/python%i.%i/dist-packages" % - (sys.version_info.major, sys.version_info.minor)) - - def finalize_options (self): - super().finalize_options() - - if not self.qt_include_dir: - self.qt_include_dir = self.qtconfig.QT_INSTALL_HEADERS - - if not self.qt_libinfix: - try: - with open(os.path.join(self.qtconfig.QT_INSTALL_PREFIX, 'mkspecs', 'qconfig.pri'), 'r') as f: - for line in f.readlines(): - if line.startswith('QT_LIBINFIX'): - self.qt_libinfix = line.split('=')[1].strip('\n').strip() - except (FileNotFoundError, IndexError): - pass - - if not self.pyqt_sip_dir: - self.pyqt_sip_dir = os.path.join(self.pyconfig.data_dir, 'sip', 'PyQt5') - - if not self.pyqt_sip_flags: - self.pyqt_sip_flags = PYQT_CONFIGURATION.get('sip_flags', '') - - if not self.sip_files_dir: - self.sip_files_dir = os.path.abspath(os.path.join(".", "sip")) - - if not self.sip_inc_dir: - self.sip_inc_dir = self.pyconfig.venv_inc_dir - - if not self.inc_dir: - self.inc_dir = os.path.abspath(os.path.join(".", "src")) - - if not self.qt_include_dir: - raise SystemExit('Could not find Qt5 headers. ' - 'Please specify via --qt-include-dir=') - - if not self.pyqt_sip_dir: - raise SystemExit('Could not find PyQt SIP files. ' - 'Please specify containing directory via ' - '--pyqt-sip-dir=') - - if not self.pyqt_sip_flags: - raise SystemExit('Could not find PyQt SIP flags. ' - 'Please specify via --pyqt-sip-flags=') - - def _find_sip(self): - """override _find_sip to allow for manually speficied sip path.""" - - # 1. Manually specified sip_bin - if self.sip_bin: - return self.sip_bin - - # 2. Path determined from sipconfig.Configuration() - # This may not exist, depending on conda build configuration. - sip_bin = super()._find_sip() - if os.path.exists(sip_bin): - return sip_bin - - # 3. Finally, fall back to sip binary found in path - sip_bin = shutil.which('sip') - if sip_bin: - return sip_bin - - raise SystemExit('Could not find PyQt SIP binary.') - - def _sip_sipfiles_dir(self): - sip_dir = super()._sip_sipfiles_dir() - if os.path.exists(sip_dir): - return sip_dir - - return os.path.join(sys.prefix, 'sip', 'PyQt5') - - def _sip_compile(self, sip_bin, source, sbf): - target_dir = os.path.dirname(__file__) if self.inplace else self.build_lib - pyi = os.path.join(target_dir, "PyQtAds", "QtAds", "ads.pyi") - if not os.path.exists(os.path.dirname(pyi)): - os.makedirs(os.path.dirname(pyi)) - - cmd = [sip_bin] - if hasattr(self, 'sip_opts'): - cmd += self.sip_opts - if hasattr(self, '_sip_sipfiles_dir'): - cmd += ['-I', self._sip_sipfiles_dir()] - cmd += [ - "-I", self.sip_files_dir, - "-I", self.pyqt_sip_dir, - "-I", self.sip_inc_dir, - "-I", self.inc_dir, - "-c", self._sip_output_dir(), - "-b", sbf, - "-y", pyi, - "-w", "-o"] - - cmd += shlex.split(self.pyqt_sip_flags) # use same SIP flags as for PyQt5 - cmd.append(source) - self.spawn(cmd) - - if os.path.exists(pyi): - with open(pyi) as f: - content = f.readlines() - with open(pyi, "w") as f: - for line in content: - if not line.startswith("class ads"): - f.write(line) - - def swig_sources (self, sources, extension=None): - if not self.extensions: - return - - # Add the local include directory to the include path - if extension is not None: - extension.extra_compile_args += ['-D', 'QT_CORE_LIB', - '-D', 'QT_GUI_LIB', - '-D', 'QT_WIDGETS_LIB', - '-D', 'ADS_SHARED_EXPORT'] - extension.include_dirs += [self.qt_include_dir, self.inc_dir, - os.path.join(self.qt_include_dir, 'QtCore'), - os.path.join(self.qt_include_dir, 'QtGui'), - os.path.join(self.qt_include_dir, 'QtWidgets')] - extension.libraries += ['Qt5Core' + self.qt_libinfix, - 'Qt5Gui' + self.qt_libinfix, - 'Qt5Widgets' + self.qt_libinfix] - - if sys.platform == 'win32': - extension.library_dirs += [self.qtconfig.QT_INSTALL_LIBS, - self.inc_dir, self._sip_output_dir()] - elif sys.platform == 'darwin': - extension.extra_compile_args += ['-F' + self.qtconfig.QT_INSTALL_LIBS, - '-std=c++11', '-stdlib=libc++', '-mmacosx-version-min=10.9'] - extension.extra_link_args += ['-F' + self.qtconfig.QT_INSTALL_LIBS, - '-mmacosx-version-min=10.9'] - elif sys.platform == 'linux': - extension.extra_compile_args += ['-std=c++11'] - - return super().swig_sources(sources, extension) - - def build_extension(self, ext): - cppsources = [source for source in ext.sources if source.endswith(".cpp")] - headersources = ['src/DockAreaTitleBar_p.h'] - - dir_util.mkpath(self.build_temp, dry_run=self.dry_run) - - def get_moc_args(out_file, source): - if sys.platform.startswith('linux'): - return ["moc", "-D", "Q_OS_LINUX=1", "-o", out_file, source] - if sys.platform.startswith('darwin'): - return ["moc", "-D", "Q_OS_MACOS=1", "-o", out_file, source] - if sys.platform.startswith('win'): - return ["moc", "-D", "Q_OS_WIN=1", "-o", out_file, source] - return ["moc", "-o", out_file, source] - - # Run moc on all header files. - for source in cppsources: - # *.cpp -> *.moc - moc_file = os.path.basename(source).replace(".cpp", ".moc") - out_file = os.path.join(self.build_temp, moc_file) - - if newer(source, out_file) or self.force: - spawn.spawn(get_moc_args(out_file, source), dry_run=self.dry_run) - - header = source.replace(".cpp", ".h") - if os.path.exists(header): - # *.h -> moc_*.cpp - moc_file = "moc_" + os.path.basename(header).replace(".h", ".cpp") - out_file = os.path.join(self.build_temp, moc_file) - - if newer(header, out_file) or self.force: - spawn.spawn(get_moc_args(out_file, header), dry_run=self.dry_run) - - if os.path.getsize(out_file) > 0: - ext.sources.append(out_file) - - # Run moc on all orphan header files. - for source in headersources: - # *.cpp -> *.moc - moc_file = os.path.basename(source).replace(".h", ".moc") - out_file = os.path.join(self.build_temp, moc_file) - - if newer(source, out_file) or self.force: - spawn.spawn(get_moc_args(out_file, source), - dry_run=self.dry_run) - - header = source - if os.path.exists(header): - # *.h -> moc_*.cpp - moc_file = "moc_" + os.path.basename(header).replace( - ".h", ".cpp") - out_file = os.path.join(self.build_temp, moc_file) - - if newer(header, out_file) or self.force: - spawn.spawn(get_moc_args(out_file, header), - dry_run=self.dry_run) - - if os.path.getsize(out_file) > 0: - ext.sources.append(out_file) - - # Add the temp build directory to include path, for compiler to find - # the created .moc files - ext.include_dirs += [self._sip_output_dir()] - - # Run rcc on all resource files - resources = [source for source in ext.sources if source.endswith(".qrc")] - for source in resources: - ext.sources.remove(source) - out_file = os.path.join(self.build_temp, "qrc_" + os.path.basename(source).replace(".qrc", ".cpp")) - if newer(header, out_file) or self.force: - spawn.spawn(["rcc", "-name", os.path.splitext(os.path.basename(source))[0], source, "-o", out_file], dry_run=self.dry_run) - - if os.path.getsize(out_file) > 0: - ext.sources.append(out_file) - - sipdistutils.build_ext.build_extension(self, ext) - - import inspect - sys.path.append(os.path.join(self.build_lib, 'PyQtAds', 'QtAds')) - import ads - - with open(os.path.join(self.build_lib, 'PyQtAds', 'QtAds', '__init__.py'), 'w') as f: - f.write('from .._version import *\n') - f.write('from .ads import ads\n') - for name, member in sorted(inspect.getmembers(ads.ads)): - if not name.startswith('_'): - f.write('{0} = ads.{0}\n'.format(name)) - - -class ProcessResourceCommand(cmd.Command): - """A custom command to compile the resource file into a Python file""" - - description = "Compile the qrc file into a python file" - - def initialize_options(self): - return - - def finalize_options(self): - return - - def run(self): - processResourceFile([os.path.join('src', 'ads.qrc')], - os.path.join(SRC_PATH, 'rc.py'), False) - - -class BuildPyCommand(build_py): - """Custom build command to include ProcessResource command""" - - def run(self): - self.run_command("process_resource") - build_py.run(self) - - -setup_requires = ["PyQt5"] if REQUIRE_PYQT else [] -cpp_sources = glob.glob(os.path.join('src', '*.cpp')) -sip_sources = [os.path.join('sip', MODULE_NAME + '.sip')] -resources = [os.path.join('src', MODULE_NAME + '.qrc')] -if sys.platform == 'linux': - cpp_sources += glob.glob(os.path.join('src', 'linux', '*.cpp')) -ext_modules = [Extension('PyQtAds.QtAds.ads', cpp_sources + sip_sources + resources)] - -install_requires = ["PyQt5"] -if sys.platform == 'win32': - install_requires.append("pywin32") - - -with open('README.md', 'r') as f: - LONG_DESCRIPTION = f.read() - -setup( - name = SRC_PATH, - author = "Nicolas Elie", - author_email = "nicolas.elie@cnrs.fr", - url = "https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System", - version = versioneer.get_version(), - description = "Advanced Docking System for Qt", - long_description = LONG_DESCRIPTION, - keywords = ["qt"], - license = "LGPLv2+", - classifiers = ["Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", - "Operating System :: OS Independent", - "Topic :: Software Development :: Libraries :: Python Modules", - "Environment :: Win32 (MS Windows)", - "Environment :: MacOS X", - "Environment :: X11 Applications :: Qt", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.2", - "Programming Language :: Python :: 3.3", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7"], - ext_modules = ext_modules, - cmdclass = versioneer.get_cmdclass({'process_resource': ProcessResourceCommand, - 'build_py': BuildPyCommand, - 'build_ext': build_ext}), - packages = find_packages(), - setup_requires = setup_requires, - install_requires = install_requires, - zip_safe=False -) diff --git a/sip/AutoHideDockContainer.sip b/sip/AutoHideDockContainer.sip new file mode 100644 index 0000000..7d5a18b --- /dev/null +++ b/sip/AutoHideDockContainer.sip @@ -0,0 +1,46 @@ +%Import QtWidgets/QtWidgetsmod.sip + +%If (Qt_5_0_0 -) + +namespace ads +{ + +class CAutoHideDockContainer : QFrame +{ + + %TypeHeaderCode + #include + %End + +protected: + virtual bool eventFilter(QObject* watched, QEvent* event); + virtual void resizeEvent(QResizeEvent* event); + virtual void leaveEvent(QEvent *event); + virtual bool event(QEvent* event); + void updateSize(); + void saveState(QXmlStreamWriter& Stream); + +public: + CAutoHideDockContainer(ads::CDockWidget* DockWidget /Transfer/, ads::SideBarLocation area, + ads::CDockContainerWidget* parent /TransferThis/); + virtual ~CAutoHideDockContainer(); + ads::CAutoHideSideBar* sideBar() const; + ads::CAutoHideTab* autoHideTab() const; + ads::CDockWidget* dockWidget() const; + void addDockWidget(ads::CDockWidget* DockWidget /Transfer/); + ads::SideBarLocation sideBarLocation() const; + void setSideBarLocation(ads::SideBarLocation SideBarLocation); + ads::CDockAreaWidget* dockAreaWidget() const; + ads::CDockContainerWidget* dockContainer() const; + void moveContentsToParent(); + void cleanupAndDelete(); + void toggleView(bool Enable); + void collapseView(bool Enable); + void toggleCollapseState(); + void setSize(int Size); + +}; + +}; + +%End \ No newline at end of file diff --git a/sip/AutoHideSideBar.sip b/sip/AutoHideSideBar.sip new file mode 100644 index 0000000..492464b --- /dev/null +++ b/sip/AutoHideSideBar.sip @@ -0,0 +1,41 @@ +%Import QtWidgets/QtWidgetsmod.sip + +%If (Qt_5_0_0 -) + +namespace ads +{ + + +class CAutoHideSideBar : QScrollArea +{ + + %TypeHeaderCode + #include + %End + +protected: + virtual bool eventFilter(QObject *watched, QEvent *event); + void saveState(QXmlStreamWriter& Stream) const; + void insertTab(int Index, ads::CAutoHideTab* SideTab /Transfer/); + +public: + CAutoHideSideBar(ads::CDockContainerWidget* parent /TransferThis/, SideBarLocation area); + virtual ~CAutoHideSideBar(); + void removeTab(ads::CAutoHideTab* SideTab) /TransferBack/; + ads::CAutoHideDockContainer* insertDockWidget(int Index, ads::CDockWidget* DockWidget /Transfer/); + void removeAutoHideWidget(ads::CAutoHideDockContainer* AutoHideWidget) /TransferBack/; + void addAutoHideWidget(ads::CAutoHideDockContainer* AutoHideWidget); + Qt::Orientation orientation() const; + ads::CAutoHideTab* tabAt(int index) const; + int tabCount() const; + ads::SideBarLocation sideBarLocation() const; + virtual QSize minimumSizeHint() const; + virtual QSize sizeHint() const; + int spacing() const; + void setSpacing(int Spacing); + CDockContainerWidget* dockContainer() const; +}; + +}; + +%End \ No newline at end of file diff --git a/sip/AutoHideTab.sip b/sip/AutoHideTab.sip new file mode 100644 index 0000000..42e607c --- /dev/null +++ b/sip/AutoHideTab.sip @@ -0,0 +1,36 @@ +%Import QtWidgets/QtWidgetsmod.sip + +%If (Qt_5_0_0 -) + +namespace ads +{ + +class CAutoHideTab : CPushButton +{ + + %TypeHeaderCode + #include + %End + +protected: + void setSideBar(ads::CAutoHideSideBar *SideTabBar); + void removeFromSideBar(); + virtual bool event(QEvent* event); + +public: + CAutoHideTab(QWidget* parent /TransferThis/ = 0); + virtual ~CAutoHideTab(); + void updateStyle(); + ads::SideBarLocation sideBarLocation() const; + void setOrientation(Qt::Orientation Orientation); + Qt::Orientation orientation() const; + bool isActiveTab() const; + ads::CDockWidget* dockWidget() const; + void setDockWidget(ads::CDockWidget* DockWidget); + bool iconOnly() const; + ads::CAutoHideSideBar* sideBar() const; +}; + +}; + +%End diff --git a/sip/DockAreaTitleBar.sip b/sip/DockAreaTitleBar.sip index f4dd32d..8d3fad7 100644 --- a/sip/DockAreaTitleBar.sip +++ b/sip/DockAreaTitleBar.sip @@ -27,10 +27,12 @@ public: virtual ~CDockAreaTitleBar(); ads::CDockAreaTabBar* tabBar() const; QAbstractButton* button(ads::TitleBarButton which) const; + ads::CElidingLabel* autoHideTitleLabel() const; void updateDockWidgetActionsButtons(); virtual void setVisible(bool Visible); void insertWidget(int index, QWidget *widget /Transfer/ ); int indexOf(QWidget *widget) const; + QString titleBarButtonToolTip(ads::TitleBarButton Button) const; signals: diff --git a/sip/DockAreaWidget.sip b/sip/DockAreaWidget.sip index 8196047..ae74263 100644 --- a/sip/DockAreaWidget.sip +++ b/sip/DockAreaWidget.sip @@ -23,6 +23,7 @@ protected: void updateTitleBarVisibility(); void internalSetCurrentDockWidget(ads::CDockWidget* DockWidget /Transfer/); void markTitleBarMenuOutdated(); + void updateTitleBarButtonVisibility(bool IsTopLevel) const; protected slots: void toggleView(bool Open); @@ -52,6 +53,8 @@ public: ads::CDockWidget* currentDockWidget() const; void setCurrentDockWidget(ads::CDockWidget* DockWidget); void saveState(QXmlStreamWriter& Stream) const; + static bool restoreState(ads::CDockingStateReader& Stream, ads::CDockAreaWidget*& CreatedWidget, + bool Testing, ads::CDockContainerWidget* ParentContainer); ads::CDockWidget::DockWidgetFeatures features(ads::eBitwiseOperator Mode = ads::BitwiseAnd) const; QAbstractButton* titleBarButton(ads::TitleBarButton which) const; virtual void setVisible(bool Visible); @@ -65,6 +68,8 @@ public: void setDockAreaFlag(eDockAreaFlag Flag, bool On); bool isCentralWidgetArea() const; + bool containsCentralWidget() const; + bool isTopLevelArea() const; public slots: void setCurrentIndex(int index); diff --git a/sip/DockComponentsFactory.sip b/sip/DockComponentsFactory.sip index e227608..b00eb62 100644 --- a/sip/DockComponentsFactory.sip +++ b/sip/DockComponentsFactory.sip @@ -13,6 +13,7 @@ class CDockComponentsFactory public: virtual ~CDockComponentsFactory(); virtual CDockWidgetTab* createDockWidgetTab(CDockWidget* DockWidget /Transfer/ ) const; + virtual CAutoHideTab* createDockWidgetSideTab(CDockWidget* DockWidget /Transfer/) const; virtual CDockAreaTabBar* createDockAreaTabBar(CDockAreaWidget* DockArea /Transfer/ ) const; virtual CDockAreaTitleBar* createDockAreaTitleBar(CDockAreaWidget* DockArea /Transfer/ ) const; static const CDockComponentsFactory* factory(); diff --git a/sip/DockContainerWidget.sip b/sip/DockContainerWidget.sip index be8e6d7..922db75 100644 --- a/sip/DockContainerWidget.sip +++ b/sip/DockContainerWidget.sip @@ -21,6 +21,7 @@ class CDockContainerWidget : QFrame protected: virtual bool event(QEvent *e); QSplitter* rootSplitter() const; + ads::CAutoHideDockContainer* createAndSetupAutoHideContainer(ads::SideBarLocation area, ads::CDockWidget* DockWidget /Transfer/); void createRootSplitter(); void dropFloatingWidget(ads::CFloatingDockContainer* FloatingWidget, const QPoint& TargetPos); void dropWidget(QWidget* Widget, DockWidgetArea DropArea, CDockAreaWidget* TargetAreaWidget); @@ -33,124 +34,44 @@ protected: ads::CDockAreaWidget* topLevelDockArea() const; QList dockWidgets() const; void updateSplitterHandles(QSplitter* splitter); + void registerAutoHideWidget(ads::CAutoHideDockContainer* AutoHideWidget /Transfer/); + void removeAutoHideWidget(ads::CAutoHideDockContainer* AutoHideWidget /TransferBack/); + void handleAutoHideWidgetEvent(QEvent* e, QWidget* w); public: - /** - * Default Constructor - */ CDockContainerWidget(ads::CDockManager* DockManager /TransferThis/, QWidget* parent /TransferThis/ = 0); - - /** - * Virtual Destructor - */ virtual ~CDockContainerWidget(); - - /** - * Adds dockwidget into the given area. - * If DockAreaWidget is not null, then the area parameter indicates the area - * into the DockAreaWidget. If DockAreaWidget is null, the Dockwidget will - * be dropped into the container. - * \return Returns the dock area widget that contains the new DockWidget - */ ads::CDockAreaWidget* addDockWidget(ads::DockWidgetArea area, ads::CDockWidget* Dockwidget /Transfer/, - ads::CDockAreaWidget* DockAreaWidget /Transfer/ = 0); - - /** - * Removes dockwidget - */ + ads::CDockAreaWidget* DockAreaWidget /Transfer/ = 0, + int Index = -1); void removeDockWidget(ads::CDockWidget* Dockwidget) /TransferBack/; - - /** - * Returns the current zOrderIndex - */ virtual unsigned int zOrderIndex() const; - - /** - * This function returns true if this container widgets z order index is - * higher than the index of the container widget given in Other parameter - */ bool isInFrontOf(ads::CDockContainerWidget* Other) const; - - /** - * Returns the dock area at teh given global position or 0 if there is no - * dock area at this position - */ ads::CDockAreaWidget* dockAreaAt(const QPoint& GlobalPos) const; - - /** - * Returns the dock area at the given Index or 0 if the index is out of - * range - */ ads::CDockAreaWidget* dockArea(int Index) const; - - /** - * Returns the list of dock areas that are not closed - * If all dock widgets in a dock area are closed, the dock area will be closed - */ QList openedDockAreas() const; + QList openedDockWidgets() const; bool hasTopLevelDockWidget() const; - - /** - * Returns the number of dock areas in this container - */ int dockAreaCount() const; - - /** - * Returns the number of visible dock areas - */ int visibleDockAreaCount() const; - - /** - * This function returns true, if this container is in a floating widget - */ bool isFloating() const; - - /** - * Dumps the layout for debugging purposes - */ void dumpLayout(); - - /** - * This functions returns the dock widget features of all dock widget in - * this container. - * A bitwise and is used to combine the flags of all dock widgets. That - * means, if only dock widget does not support a certain flag, the whole - * dock are does not support the flag. - */ ads::CDockWidget::DockWidgetFeatures features() const; - - /** - * If this dock container is in a floating widget, this function returns - * the floating widget. - * Else, it returns a nullptr. - */ ads::CFloatingDockContainer* floatingWidget() const; - - /** - * Call this function to close all dock areas except the KeepOpenArea - */ void closeOtherAreas(ads::CDockAreaWidget* KeepOpenArea); + ads::CAutoHideSideBar* sideTabBar(SideBarLocation area) const; + QList autoHideWidgets() const; + QRect contentRect() const; + QRect contentRectGlobal() const; + ads::CDockManager* dockManager() const; signals: - /** - * This signal is emitted if one or multiple dock areas has been added to - * the internal list of dock areas. - * If multiple dock areas are inserted, this signal is emitted only once - */ void dockAreasAdded(); - - /** - * This signal is emitted if one or multiple dock areas has been removed - */ + void autoHideWidgetCreated(ads::CAutoHideDockContainer* AutoHideWidget); void dockAreasRemoved(); - - /** - * This signal is emitted if a dock area is opened or closed via - * toggleView() function - */ void dockAreaViewToggled(ads::CDockAreaWidget* DockArea, bool Open); -}; // class DockContainerWidget }; - // namespace ads + +}; %End diff --git a/sip/DockFocusController.sip b/sip/DockFocusController.sip index a701096..a5cf1d1 100644 --- a/sip/DockFocusController.sip +++ b/sip/DockFocusController.sip @@ -22,6 +22,7 @@ public: void notifyFloatingWidgetDrop(ads::CFloatingDockContainer* FloatingWidget); ads::CDockWidget* focusedDockWidget() const; void setDockWidgetTabFocused(ads::CDockWidgetTab* Tab); + void clearDockWidgetFocus(ads::CDockWidget* dockWidget); public slots: void setDockWidgetFocused(ads::CDockWidget* focusedNow); diff --git a/sip/DockManager.sip b/sip/DockManager.sip index 66d4ca8..5abc9b5 100644 --- a/sip/DockManager.sip +++ b/sip/DockManager.sip @@ -156,7 +156,6 @@ public: TabCloseButtonIsToolButton, AllTabsHaveCloseButton, RetainTabSizeWhenCloseButtonHidden, - OpaqueUndocking, DragPreviewIsDynamic, DragPreviewShowsContentPixmap, DragPreviewHasWindowFrame, @@ -180,6 +179,17 @@ public: NonOpaqueWithWindowFrame, }; typedef QFlags ConfigFlags; + enum eAutoHideFlag + { + AutoHideFeatureEnabled, + DockAreaHasAutoHideButton, + AutoHideButtonTogglesArea, + AutoHideButtonCheckable, + AutoHideSideBarsIconOnly, + AutoHideShowOnMouseOver, + DefaultAutoHideConfig, + }; + typedef QFlags AutoHideFlags; CDockManager(QWidget* parent /TransferThis/ = 0); virtual ~CDockManager(); @@ -187,13 +197,24 @@ public: static void setConfigFlags(const ads::CDockManager::ConfigFlags Flags); static void setConfigFlag(ads::CDockManager::eConfigFlag Flag, bool On = true); static bool testConfigFlag(eConfigFlag Flag); + static ads::CDockManager::AutoHideFlags autoHideConfigFlags(); + static void setAutoHideConfigFlags(const ads::CDockManager::AutoHideFlags Flags); + static void setAutoHideConfigFlag(ads::CDockManager::eAutoHideFlag Flag, bool On = true); + static bool testAutoHideConfigFlag(eAutoHideFlag Flag); static ads::CIconProvider& iconProvider(); ads::CDockAreaWidget* addDockWidget(ads::DockWidgetArea area, ads::CDockWidget* Dockwidget /Transfer/, - ads::CDockAreaWidget* DockAreaWidget /Transfer/ = 0); + ads::CDockAreaWidget* DockAreaWidget /Transfer/ = 0, + int Index = -1); + ads::CDockAreaWidget* addDockWidgetToContainer(ads::DockWidgetArea area, ads::CDockWidget* Dockwidget /Transfer/, + ads::CDockContainerWidget* DockContainerWidget /Transfer/ = 0); + ads::CAutoHideDockContainer* addAutoHideDockWidget(ads::SideBarLocation Location, ads::CDockWidget* Dockwidget /Transfer/); + ads::CAutoHideDockContainer* addAutoHideDockWidgetToContainer(SideBarLocation Location, + ads::CDockWidget* Dockwidget /Transfer/, ads::CDockContainerWidget* DockContainerWidget); ads::CDockAreaWidget* addDockWidgetTab(ads::DockWidgetArea area, ads::CDockWidget* Dockwidget /Transfer/); ads::CDockAreaWidget* addDockWidgetTabToArea(ads::CDockWidget* Dockwidget /Transfer/, - ads::CDockAreaWidget* DockAreaWidget /Transfer/); + ads::CDockAreaWidget* DockAreaWidget /Transfer/, + int Index = -1); ads::CFloatingDockContainer* addDockWidgetFloating(ads::CDockWidget* DockWidget /Transfer/); ads::CDockWidget* findDockWidget(const QString& ObjectName) const; void removeDockWidget(ads::CDockWidget* Dockwidget) /TransferBack/; @@ -220,6 +241,8 @@ public: ads::CDockWidget* focusedDockWidget() const; QList splitterSizes(ads::CDockAreaWidget *ContainedArea) const; void setSplitterSizes(ads::CDockAreaWidget *ContainedArea, const QList& sizes); + static void setFloatingContainersTitle(const QString& Title); + static QString floatingContainersTitle(); public slots: void openPerspective(const QString& PerspectiveName); diff --git a/sip/DockWidget.sip b/sip/DockWidget.sip index 581fa7b..d428912 100644 --- a/sip/DockWidget.sip +++ b/sip/DockWidget.sip @@ -35,6 +35,7 @@ public: DockWidgetForceCloseWithArea, NoTab, DeleteContentOnClose, + DockWidgetPinnable, DefaultDockWidgetFeatures, AllDockWidgetFeatures, DockWidgetAlwaysCloseAndDelete, @@ -81,7 +82,12 @@ public: ads::CDockWidget::DockWidgetFeatures features() const; ads::CDockManager* dockManager() const; ads::CDockContainerWidget* dockContainer() const; + ads::CFloatingDockContainer* floatingDockContainer() const; ads::CDockAreaWidget* dockAreaWidget() const; + ads::CAutoHideTab* sideTabWidget() const; + void setSideTabWidget(ads::CAutoHideTab* SideTab /Transfer/) const; + bool isAutoHide() const; + ads::CAutoHideDockContainer* autoHideDockContainer() const; bool isFloating() const; bool isInFloatingContainer() const; bool isClosed() const; @@ -118,6 +124,8 @@ public slots: void closeDockWidget(); void showFullScreen(); void showNormal(); + void setAutoHide(bool Enable, ads::SideBarLocation Location = ads::SideBarNone); + void toggleAutoHide(ads::SideBarLocation Location = ads::SideBarNone); signals: void viewToggled(bool Open); diff --git a/sip/FloatingDockContainer.sip b/sip/FloatingDockContainer.sip index 0a6d51f..b36f4ce 100644 --- a/sip/FloatingDockContainer.sip +++ b/sip/FloatingDockContainer.sip @@ -64,6 +64,7 @@ protected: %If (WS_X11) virtual void moveEvent(QMoveEvent *event); virtual void resizeEvent(QResizeEvent *event); + virtual bool event(QEvent *e); %End %If (WS_WIN) diff --git a/sip/FloatingDragPreview.sip b/sip/FloatingDragPreview.sip index 9a76e0b..0dfc502 100644 --- a/sip/FloatingDragPreview.sip +++ b/sip/FloatingDragPreview.sip @@ -27,10 +27,9 @@ public: public: // implements IFloatingWidget virtual void startFloating(const QPoint& DragStartMousePos, const QSize& Size, ads::eDragState DragState, QWidget* MouseEventHandler); - virtual void moveFloating(); - virtual void finishDragging(); + void cleanupAutoHideContainerWidget(); signals: void draggingCanceled(); diff --git a/sip/PushButton.sip b/sip/PushButton.sip new file mode 100644 index 0000000..5613f92 --- /dev/null +++ b/sip/PushButton.sip @@ -0,0 +1,31 @@ +%Import QtWidgets/QtWidgetsmod.sip + +%If (Qt_5_0_0 -) + +namespace ads +{ + + +class CPushButton : QPushButton +{ + %TypeHeaderCode + #include + %End + +public: + enum Orientation { + Horizontal, + VerticalTopToBottom, + VerticalBottomToTop + }; + virtual QSize sizeHint() const; + + ads::CPushButton::Orientation buttonOrientation() const; + void setButtonOrientation(ads::CPushButton::Orientation orientation); + +}; + +}; + +%End + diff --git a/sip/ResizeHandle.sip b/sip/ResizeHandle.sip new file mode 100644 index 0000000..0cfdea1 --- /dev/null +++ b/sip/ResizeHandle.sip @@ -0,0 +1,36 @@ +%Import QtWidgets/QtWidgetsmod.sip + +%If (Qt_5_0_0 -) + +namespace ads +{ + +class CResizeHandle : QFrame +{ + + %TypeHeaderCode + #include + %End + +protected: + void mouseMoveEvent(QMouseEvent *); + void mousePressEvent(QMouseEvent *); + void mouseReleaseEvent(QMouseEvent *); + +public: + CResizeHandle(Qt::Edge HandlePosition, QWidget* parent /TransferThis/); + virtual ~CResizeHandle(); + void setHandlePosition(Qt::Edge HandlePosition); + Qt::Edge handlePostion() const; + Qt::Orientation orientation() const; + QSize sizeHint() const; + bool isResizing() const; + void setMinResizeSize(int MinSize); + void setMaxResizeSize(int MaxSize); + void setOpaqueResize(bool opaque = true); + bool opaqueResize() const; +}; + +}; + +%End diff --git a/sip/ads.sip b/sip/ads.sip index 2c29232..70a252a 100644 --- a/sip/ads.sip +++ b/sip/ads.sip @@ -3,6 +3,9 @@ %DefaultSupertype sip.simplewrapper %Include ads_globals.sip +%Include AutoHideDockContainer.sip +%Include AutoHideSideBar.sip +%Include AutoHideTab.sip %Include DockWidget.sip %Include DockAreaTabBar.sip %Include DockAreaTitleBar_p.sip @@ -20,6 +23,8 @@ %Include FloatingDockContainer.sip %Include FloatingDragPreview.sip %Include IconProvider.sip +%Include PushButton.sip +%Include ResizeHandle.sip %If (WS_X11) %Include linux/FloatingWidgetTitleBar.sip %End diff --git a/sip/ads_globals.sip b/sip/ads_globals.sip index 91df1c7..62eb674 100644 --- a/sip/ads_globals.sip +++ b/sip/ads_globals.sip @@ -50,7 +50,6 @@ namespace ads TopDockWidgetArea, BottomDockWidgetArea, CenterDockWidgetArea, - InvalidDockWidgetArea, OuterDockAreas, AllDockAreas @@ -62,7 +61,8 @@ namespace ads { TitleBarButtonTabsMenu, TitleBarButtonUndock, - TitleBarButtonClose + TitleBarButtonClose, + TitleBarButtonAutoHide }; enum eDragState @@ -76,10 +76,10 @@ namespace ads enum eIcon { TabCloseIcon, + AutoHideIcon, DockAreaMenuIcon, DockAreaUndockIcon, DockAreaCloseIcon, - IconCount, }; @@ -89,6 +89,15 @@ namespace ads BitwiseOr }; + enum SideBarLocation + { + SideBarTop, + SideBarLeft, + SideBarRight, + SideBarBottom, + SideBarNone + }; + namespace internal { void replaceSplitterWidget(QSplitter* Splitter, QWidget* From, QWidget* To); @@ -131,6 +140,7 @@ namespace ads }; void repolishStyle(QWidget* w, ads::internal::eRepolishChildOptions Options = ads::internal::RepolishIgnoreChildren); + QRect globalGeometry(QWidget* w); }; }; diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index ba62e48..8224644 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,6 +1,11 @@ cmake_minimum_required(VERSION 3.5) project(QtAdvancedDockingSystem LANGUAGES CXX VERSION ${VERSION_SHORT}) -find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED) +if (${QT_VERSION_MAJOR}) + message(STATUS "Forced to use Qt version ${QT_VERSION_MAJOR}") + find_package(QT NAMES Qt${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED) +else() + find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED) +endif() find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core Gui Widgets REQUIRED) if (UNIX AND NOT APPLE) include_directories(${Qt${QT_VERSION_MAJOR}Gui_PRIVATE_INCLUDE_DIRS}) @@ -64,50 +69,52 @@ if (UNIX AND NOT APPLE) set(ads_SRCS linux/FloatingWidgetTitleBar.cpp ${ads_SRCS}) set(ads_HEADERS linux/FloatingWidgetTitleBar.h ${ads_HEADERS}) endif() + +set(library_name "qt${QT_VERSION_MAJOR}advanceddocking") if(BUILD_STATIC) - add_library(qtadvanceddocking STATIC ${ads_SRCS} ${ads_HEADERS}) - target_compile_definitions(qtadvanceddocking PUBLIC ADS_STATIC) + add_library(${library_name} STATIC ${ads_SRCS} ${ads_HEADERS}) + target_compile_definitions( ${library_name} PUBLIC ADS_STATIC) else() - add_library(qtadvanceddocking SHARED ${ads_SRCS} ${ads_HEADERS}) - target_compile_definitions(qtadvanceddocking PRIVATE ADS_SHARED_EXPORT) + add_library( ${library_name} SHARED ${ads_SRCS} ${ads_HEADERS}) + target_compile_definitions( ${library_name} PRIVATE ADS_SHARED_EXPORT) endif() -add_library(ads::qtadvanceddocking ALIAS qtadvanceddocking) +add_library(ads::${library_name} ALIAS ${library_name}) -target_link_libraries(qtadvanceddocking PUBLIC Qt${QT_VERSION_MAJOR}::Core +target_link_libraries(${library_name} PUBLIC Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Gui Qt${QT_VERSION_MAJOR}::Widgets) if (UNIX AND NOT APPLE) - target_link_libraries(qtadvanceddocking PUBLIC xcb) + target_link_libraries(${library_name} PUBLIC xcb) endif() -set_target_properties(qtadvanceddocking PROPERTIES +set_target_properties(${library_name} PROPERTIES AUTOMOC ON AUTORCC ON CXX_EXTENSIONS OFF VERSION ${VERSION_SHORT} - EXPORT_NAME "qtadvanceddocking" + EXPORT_NAME ${library_name} ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${ads_PlatformDir}/lib" LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${ads_PlatformDir}/lib" RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${ads_PlatformDir}/bin" ) if(QT_VERSION_MAJOR STREQUAL "5") - set_target_properties(qtadvanceddocking PROPERTIES + set_target_properties(${library_name} PROPERTIES CXX_STANDARD 14 CXX_STANDARD_REQUIRED ON) elseif(QT_VERSION_MAJOR STREQUAL "6") - set_target_properties(qtadvanceddocking PROPERTIES + set_target_properties(${library_name} PROPERTIES CXX_STANDARD 17 CXX_STANDARD_REQUIRED ON) endif() include(CMakePackageConfigHelpers) write_basic_package_version_file( - "qtadvanceddockingConfigVersion.cmake" + "${library_name}ConfigVersion.cmake" VERSION ${VERSION_SHORT} COMPATIBILITY SameMajorVersion ) install(FILES ${ads_HEADERS} - DESTINATION include + DESTINATION include/${library_name} COMPONENT headers ) install(FILES @@ -116,24 +123,27 @@ install(FILES DESTINATION license/ads COMPONENT license ) -install(TARGETS qtadvanceddocking +install(TARGETS ${library_name} EXPORT adsTargets RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib - INCLUDES DESTINATION include + INCLUDES DESTINATION include/${library_name} ) install(EXPORT adsTargets FILE adsTargets.cmake NAMESPACE ads:: - DESTINATION lib/cmake/qtadvanceddocking + DESTINATION lib/cmake/${library_name} ) -install(FILES qtadvanceddockingConfig.cmake "${CMAKE_CURRENT_BINARY_DIR}/qtadvanceddockingConfigVersion.cmake" - DESTINATION lib/cmake/qtadvanceddocking +install(FILES qtadvanceddockingConfig.cmake RENAME ${library_name}Config.cmake + DESTINATION lib/cmake/${library_name} +) +install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${library_name}ConfigVersion.cmake" + DESTINATION lib/cmake/${library_name} ) -target_include_directories(qtadvanceddocking PUBLIC +target_include_directories(${library_name} PUBLIC $ $ ) diff --git a/src/DockAreaTitleBar.cpp b/src/DockAreaTitleBar.cpp index ef29a26..d5af9bf 100644 --- a/src/DockAreaTitleBar.cpp +++ b/src/DockAreaTitleBar.cpp @@ -415,7 +415,12 @@ void CDockAreaTitleBar::onTabsMenuAboutToShow() void CDockAreaTitleBar::onCloseButtonClicked() { ADS_PRINT("CDockAreaTitleBar::onCloseButtonClicked"); - if (d->testConfigFlag(CDockManager::DockAreaCloseButtonClosesTab)) + if (CDockManager::testAutoHideConfigFlag(CDockManager::AutoHideCloseButtonCollapsesDock) && + d->DockArea->autoHideDockContainer()) + { + d->DockArea->autoHideDockContainer()->collapseView(true); + } + else if (d->testConfigFlag(CDockManager::DockAreaCloseButtonClosesTab)) { d->TabBar->closeTab(d->TabBar->currentIndex()); } diff --git a/src/DockContainerWidget.h b/src/DockContainerWidget.h index f360b52..4a32e5a 100644 --- a/src/DockContainerWidget.h +++ b/src/DockContainerWidget.h @@ -130,7 +130,7 @@ protected: /** * Adds the given dock area to this container widget */ - void addDockArea(CDockAreaWidget* DockAreaWidget, DockWidgetArea area = CenterDockWidgetArea); + void addDockArea(CDockAreaWidget* DockAreaWidget, DockWidgetArea area = ads::CenterDockWidgetArea); /** * Removes the given dock area from this container diff --git a/src/DockFocusController.cpp b/src/DockFocusController.cpp index 322ff29..a85d010 100644 --- a/src/DockFocusController.cpp +++ b/src/DockFocusController.cpp @@ -27,7 +27,7 @@ #include "DockManager.h" #include "DockAreaTitleBar.h" -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) #include "linux/FloatingWidgetTitleBar.h" #endif @@ -44,7 +44,7 @@ struct DockFocusControllerPrivate QPointer FocusedDockWidget = nullptr; QPointer FocusedArea = nullptr; QPointer OldFocusedDockWidget = nullptr; -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) QPointer FloatingWidget = nullptr; #endif CDockManager* DockManager; @@ -84,7 +84,7 @@ static void updateDockAreaFocusStyle(CDockAreaWidget* DockArea, bool Focused) //=========================================================================== -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) static void updateFloatingWidgetFocusStyle(CFloatingDockContainer* FloatingWidget, bool Focused) { if (FloatingWidget->hasNativeTitleBar()) @@ -168,7 +168,7 @@ void DockFocusControllerPrivate::updateDockWidgetFocus(CDockWidget* DockWidget) } -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) // This code is required for styling the floating widget titlebar for linux // depending on the current focus state if (FloatingWidget != NewFloatingWidget) @@ -285,7 +285,7 @@ void CDockFocusController::onApplicationFocusChanged(QWidget* focusedOld, QWidge DockWidget = internal::findParent(focusedNow); } -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) if (!DockWidget) { return; diff --git a/src/DockManager.cpp b/src/DockManager.cpp index bebe619..9ccaec3 100644 --- a/src/DockManager.cpp +++ b/src/DockManager.cpp @@ -47,6 +47,7 @@ #include #include #include +#include #include "FloatingDockContainer.h" #include "DockOverlay.h" @@ -59,7 +60,7 @@ #include "DockFocusController.h" #include "DockSplitter.h" -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) #include "linux/FloatingWidgetTitleBar.h" #endif @@ -116,6 +117,7 @@ struct DockManagerPrivate QVector UninitializedFloatingWidgets; CDockFocusController* FocusController = nullptr; CDockWidget* CentralWidget = nullptr; + bool IsLeavingMinimized = false; /** * Private data constructor @@ -192,7 +194,7 @@ void DockManagerPrivate::loadStylesheet() QString FileName = ":ads/stylesheets/"; FileName += CDockManager::testConfigFlag(CDockManager::FocusHighlighting) ? "focus_highlighting" : "default"; -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) FileName += "_linux"; #endif FileName += ".css"; @@ -510,9 +512,10 @@ CDockManager::CDockManager(QWidget *parent) : d->FocusController = new CDockFocusController(this); } -#ifdef Q_OS_LINUX + window()->installEventFilter(this); +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) connect(qApp, &QApplication::focusWindowChanged, [](QWindow* focusWindow) { // bring modal dialogs to foreground to ensure that they are in front of any @@ -552,7 +555,7 @@ CDockManager::~CDockManager() } //============================================================================ -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) bool CDockManager::eventFilter(QObject *obj, QEvent *e) { // Emulate Qt:Tool behaviour. @@ -629,8 +632,39 @@ bool CDockManager::eventFilter(QObject *obj, QEvent *e) } return Super::eventFilter(obj, e); } +#else +//============================================================================ +bool CDockManager::eventFilter(QObject *obj, QEvent *e) +{ + if (e->type() == QEvent::WindowStateChange) + { + QWindowStateChangeEvent* ev = static_cast(e); + if (ev->oldState().testFlag(Qt::WindowMinimized)) + { + d->IsLeavingMinimized = true; + QMetaObject::invokeMethod(this, "endLeavingMinimizedState", Qt::QueuedConnection); + } + } + return Super::eventFilter(obj, e); +} #endif + +//============================================================================ +void CDockManager::endLeavingMinimizedState() +{ + d->IsLeavingMinimized = false; + this->activateWindow(); +} + + +//============================================================================ +bool CDockManager::isLeavingMinimizedState() const +{ + return d->IsLeavingMinimized; +} + + //============================================================================ void CDockManager::registerFloatingWidget(CFloatingDockContainer* FloatingWidget) { diff --git a/src/DockManager.h b/src/DockManager.h index db215e3..8085f1c 100644 --- a/src/DockManager.h +++ b/src/DockManager.h @@ -88,6 +88,12 @@ private: friend class CAutoHideDockContainer; friend CAutoHideSideBar; +public Q_SLOTS: + /** + * Ends the isRestoringFromMinimizedState + */ + void endLeavingMinimizedState(); + protected: /** @@ -239,6 +245,7 @@ public: AutoHideButtonCheckable = 0x08, //!< If the flag is set, the auto hide button will be checked and unchecked depending on the auto hide state. Mainly for styling purposes. AutoHideSideBarsIconOnly = 0x10,///< show only icons in auto hide side tab - if a tab has no icon, then the text will be shown AutoHideShowOnMouseOver = 0x20, ///< show the auto hide window on mouse over tab and hide it if mouse leaves auto hide container + AutoHideCloseButtonCollapsesDock = 0x40, ///< Close button of an auto hide container collapses the dock instead of hiding it completely DefaultAutoHideConfig = AutoHideFeatureEnabled | DockAreaHasAutoHideButton ///< the default configuration for left and right side bars @@ -539,6 +546,15 @@ public: */ bool isRestoringState() const; + /** + * This function returns true, if the DockManager window is restoring from + * minimized state. + * The DockManager is in this state starting from the QWindowStateChangeEvent + * that signals the state change from minimized to normal until + * endLeavingMinimizedState() function is called. + */ + bool isLeavingMinimizedState() const; + /** * The distance the user needs to move the mouse with the left button * hold down before a dock widget start floating @@ -560,9 +576,7 @@ public: widget->setFocus(Qt::OtherFocusReason); } -#ifdef Q_OS_LINUX bool eventFilter(QObject *obj, QEvent *e) override; -#endif /** * Returns the dock widget that has focus style in the ui or a nullptr if diff --git a/src/DockOverlay.cpp b/src/DockOverlay.cpp index 433974f..afefa26 100644 --- a/src/DockOverlay.cpp +++ b/src/DockOverlay.cpp @@ -139,7 +139,7 @@ struct DockOverlayCrossPrivate */ qreal dropIndicatiorWidth(QLabel* l) const { - #ifdef Q_OS_LINUX + #if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) Q_UNUSED(l) return 40; #else @@ -333,7 +333,7 @@ CDockOverlay::CDockOverlay(QWidget* parent, eMode Mode) : { d->Mode = Mode; d->Cross = new CDockOverlayCross(this); -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) setWindowFlags(Qt::Tool | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint | Qt::X11BypassWindowManagerHint); #else setWindowFlags(Qt::Tool | Qt::FramelessWindowHint); @@ -595,7 +595,7 @@ CDockOverlayCross::CDockOverlayCross(CDockOverlay* overlay) : d(new DockOverlayCrossPrivate(this)) { d->DockOverlay = overlay; -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) setWindowFlags(Qt::Tool | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint | Qt::X11BypassWindowManagerHint); #else setWindowFlags(Qt::Tool | Qt::FramelessWindowHint); diff --git a/src/DockWidget.cpp b/src/DockWidget.cpp index 569f77b..9184b38 100644 --- a/src/DockWidget.cpp +++ b/src/DockWidget.cpp @@ -643,14 +643,20 @@ void CDockWidget::toggleView(bool Open) // If the dock widget state is different, then we really need to toggle // the state. If we are in the right state, then we simply make this // dock widget the current dock widget + auto AutoHideContainer = autoHideDockContainer(); if (d->Closed != !Open) { toggleViewInternal(Open); } - else if (Open && d->DockArea) + else if (Open && d->DockArea && !AutoHideContainer) { raise(); } + + if (Open && AutoHideContainer) + { + AutoHideContainer->collapseView(false); + } } diff --git a/src/FloatingDockContainer.cpp b/src/FloatingDockContainer.cpp index bd1e291..0a2cdc7 100644 --- a/src/FloatingDockContainer.cpp +++ b/src/FloatingDockContainer.cpp @@ -52,7 +52,7 @@ #pragma comment(lib, "User32.lib") #endif #endif -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) #include "linux/FloatingWidgetTitleBar.h" #include #endif @@ -374,7 +374,7 @@ struct FloatingDockContainerPrivate QPoint DragStartPos; bool Hiding = false; bool AutoHideChildren = true; -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) QWidget* MouseEventHandler = nullptr; CFloatingWidgetTitleBar* TitleBar = nullptr; bool IsResizing = false; @@ -424,7 +424,7 @@ struct FloatingDockContainerPrivate void setWindowTitle(const QString &Text) { -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) if (TitleBar) { TitleBar->setTitle(Text); @@ -540,7 +540,7 @@ void FloatingDockContainerPrivate::updateDropOverlays(const QPoint &GlobalPos) return; } -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) // Prevent display of drop overlays and docking as long as a model dialog // is active if (qApp->activeModalWidget()) @@ -641,7 +641,7 @@ CFloatingDockContainer::CFloatingDockContainer(CDockManager *DockManager) : connect(d->DockContainer, SIGNAL(dockAreasRemoved()), this, SLOT(onDockAreasAddedOrRemoved())); -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) QDockWidget::setWidget(d->DockContainer); QDockWidget::setFloating(true); QDockWidget::setFeatures(QDockWidget::DockWidgetClosable @@ -763,18 +763,43 @@ CDockContainerWidget* CFloatingDockContainer::dockContainer() const void CFloatingDockContainer::changeEvent(QEvent *event) { Super::changeEvent(event); - if ((event->type() == QEvent::ActivationChange) && isActiveWindow()) + switch (event->type()) { - ADS_PRINT("FloatingWidget::changeEvent QEvent::ActivationChange "); - d->zOrderIndex = ++zOrderCounter; - -#ifdef Q_OS_LINUX - if (d->DraggingState == DraggingFloatingWidget) + case QEvent::ActivationChange: + if (isActiveWindow()) { - d->titleMouseReleaseEvent(); - d->DraggingState = DraggingInactive; - } + ADS_PRINT("FloatingWidget::changeEvent QEvent::ActivationChange "); + d->zOrderIndex = ++zOrderCounter; + +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) + if (d->DraggingState == DraggingFloatingWidget) + { + d->titleMouseReleaseEvent(); + d->DraggingState = DraggingInactive; + } #endif + } + break; + + case QEvent::WindowStateChange: + // If the DockManager window is restored from minimized on Windows + // then the FloatingWidgets are not properly restored to maximized but + // to normal state. + // We simply check here, if the FloatingWidget was maximized before + // and if the DockManager is just leaving the minimized state. In this + // case, we restore the maximized state of this floating widget + if (d->DockManager->isLeavingMinimizedState()) + { + QWindowStateChangeEvent* ev = static_cast(event); + if (ev->oldState().testFlag(Qt::WindowMaximized)) + { + this->showMaximized(); + } + } + break; + + default: + break; // do nothing } } @@ -920,7 +945,7 @@ void CFloatingDockContainer::hideEvent(QHideEvent *event) void CFloatingDockContainer::showEvent(QShowEvent *event) { Super::showEvent(event); -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) if (CDockManager::testConfigFlag(CDockManager::FocusHighlighting)) { this->window()->activateWindow(); @@ -933,7 +958,7 @@ void CFloatingDockContainer::showEvent(QShowEvent *event) void CFloatingDockContainer::startFloating(const QPoint &DragStartMousePos, const QSize &Size, eDragState DragState, QWidget *MouseEventHandler) { -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) if (!isMaximized()) { resize(Size); @@ -1070,7 +1095,7 @@ bool CFloatingDockContainer::restoreState(CDockingStateReader &Stream, return false; } onDockAreasAddedOrRemoved(); -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) if(d->TitleBar) { d->TitleBar->setMaximizedIcon(windowState() == Qt::WindowMaximized); @@ -1114,7 +1139,7 @@ void CFloatingDockContainer::hideAndDeleteLater() void CFloatingDockContainer::finishDragging() { ADS_PRINT("CFloatingDockContainer::finishDragging"); -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) setWindowOpacity(1); activateWindow(); if (d->MouseEventHandler) @@ -1229,7 +1254,7 @@ void CFloatingDockContainer::moveEvent(QMoveEvent *event) #endif -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) //============================================================================ void CFloatingDockContainer::onMaximizeRequest() { diff --git a/src/FloatingDockContainer.h b/src/FloatingDockContainer.h index f91fe61..333915f 100644 --- a/src/FloatingDockContainer.h +++ b/src/FloatingDockContainer.h @@ -33,7 +33,7 @@ #include -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) #include #define tFloatingWidgetBase QDockWidget #else @@ -182,10 +182,8 @@ protected: // reimplements QWidget #ifdef Q_OS_MACOS virtual bool event(QEvent *e) override; - virtual void moveEvent(QMoveEvent *event) override; -#endif - -#ifdef Q_OS_LINUX + virtual void moveEvent(QMoveEvent *event) override; +#elif defined(Q_OS_UNIX) virtual void moveEvent(QMoveEvent *event) override; virtual void resizeEvent(QResizeEvent *event) override; virtual bool event(QEvent *e) override; @@ -264,7 +262,7 @@ public: */ void hideAndDeleteLater(); -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) /** * This is a function that responds to FloatingWidgetTitleBar::maximizeRequest() * Maximize or normalize the container size. @@ -300,7 +298,6 @@ public: */ bool hasNativeTitleBar(); #endif - }; // class FloatingDockContainer } // namespace ads diff --git a/src/FloatingDragPreview.cpp b/src/FloatingDragPreview.cpp index a48611d..8ee3b8e 100644 --- a/src/FloatingDragPreview.cpp +++ b/src/FloatingDragPreview.cpp @@ -72,6 +72,26 @@ struct FloatingDragPreviewPrivate * outside of any drop area */ void createFloatingWidget(); + + /** + * Returns true, if the content is floatable + */ + bool isContentFloatable() const + { + CDockWidget* DockWidget = qobject_cast(Content); + if (DockWidget && DockWidget->features().testFlag(CDockWidget::DockWidgetFloatable)) + { + return true; + } + + CDockAreaWidget* DockArea = qobject_cast(Content); + if (DockArea && DockArea->features().testFlag(CDockWidget::DockWidgetFloatable)) + { + return true; + } + + return false; + } }; // struct LedArrayPanelPrivate @@ -242,7 +262,7 @@ CFloatingDragPreview::CFloatingDragPreview(QWidget* Content, QWidget* parent) : setAttribute(Qt::WA_TranslucentBackground); } -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) auto Flags = windowFlags(); Flags |= Qt::WindowStaysOnTopHint | Qt::X11BypassWindowManagerHint; setWindowFlags(Flags); @@ -328,10 +348,17 @@ void CFloatingDragPreview::finishDragging() { ADS_PRINT("CFloatingDragPreview::finishDragging"); - cleanupAutoHideContainerWidget(); - auto DockDropArea = d->DockManager->dockAreaOverlay()->visibleDropAreaUnderCursor(); auto ContainerDropArea = d->DockManager->containerOverlay()->visibleDropAreaUnderCursor(); + bool ValidDropArea = (DockDropArea != InvalidDockWidgetArea) || (ContainerDropArea != InvalidDockWidgetArea); + + // Non floatable auto hide widgets should stay in its current auto hide + // state if they are dragged into a floating window + if (ValidDropArea || d->isContentFloatable()) + { + cleanupAutoHideContainerWidget(); + } + if (!d->DropContainer) { d->createFloatingWidget(); diff --git a/src/ads_globals.cpp b/src/ads_globals.cpp index c096188..2afb675 100644 --- a/src/ads_globals.cpp +++ b/src/ads_globals.cpp @@ -38,7 +38,7 @@ #include "IconProvider.h" #include "ads_globals.h" -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) #include #include #include @@ -52,7 +52,7 @@ namespace internal { const int FloatingWidgetDragStartEvent = QEvent::registerEventType(); const int DockedWidgetDragStartEvent = QEvent::registerEventType(); -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) static QString _window_manager; static QHash _xcb_atom_cache; @@ -371,7 +371,7 @@ void setButtonIcon(QAbstractButton* Button, QStyle::StandardPixmap StandarPixmap return; } -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) Button->setIcon(Button->style()->standardIcon(StandarPixmap)); #else // The standard icons does not look good on high DPI screens so we create diff --git a/src/ads_globals.h b/src/ads_globals.h index 135fc37..aff8667 100644 --- a/src/ads_globals.h +++ b/src/ads_globals.h @@ -40,7 +40,7 @@ #include -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) #include #endif @@ -156,7 +156,7 @@ static const char* const DirtyProperty = "dirty"; extern const int FloatingWidgetDragStartEvent; extern const int DockedWidgetDragStartEvent; -#ifdef Q_OS_LINUX +#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS) // Utils to directly communicate with the X server /** * Get atom from cache or request it from the XServer. diff --git a/versioneer.py b/versioneer.py deleted file mode 100644 index 2fc1a07..0000000 --- a/versioneer.py +++ /dev/null @@ -1,1833 +0,0 @@ - -# Version: 0.18 - -"""The Versioneer - like a rocketeer, but for versions. - -The Versioneer -============== - -* like a rocketeer, but for versions! -* https://github.com/warner/python-versioneer -* Brian Warner -* License: Public Domain -* Compatible With: python2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, and pypy -* [![Latest Version][pypi-image]][pypi-url] -* [![Build Status][travis-image]][travis-url] - -This is a tool for managing a recorded version number in distutils-based -python projects. The goal is to remove the tedious and error-prone "update -the embedded version string" step from your release process. Making a new -release should be as easy as recording a new tag in your version-control -system, and maybe making new tarballs. - - -## Quick Install - -* `pip install versioneer` to somewhere to your $PATH -* add a `[versioneer]` section to your setup.cfg (see below) -* run `versioneer install` in your source tree, commit the results - -## Version Identifiers - -Source trees come from a variety of places: - -* a version-control system checkout (mostly used by developers) -* a nightly tarball, produced by build automation -* a snapshot tarball, produced by a web-based VCS browser, like github's - "tarball from tag" feature -* a release tarball, produced by "setup.py sdist", distributed through PyPI - -Within each source tree, the version identifier (either a string or a number, -this tool is format-agnostic) can come from a variety of places: - -* ask the VCS tool itself, e.g. "git describe" (for checkouts), which knows - about recent "tags" and an absolute revision-id -* the name of the directory into which the tarball was unpacked -* an expanded VCS keyword ($Id$, etc) -* a `_version.py` created by some earlier build step - -For released software, the version identifier is closely related to a VCS -tag. Some projects use tag names that include more than just the version -string (e.g. "myproject-1.2" instead of just "1.2"), in which case the tool -needs to strip the tag prefix to extract the version identifier. For -unreleased software (between tags), the version identifier should provide -enough information to help developers recreate the same tree, while also -giving them an idea of roughly how old the tree is (after version 1.2, before -version 1.3). Many VCS systems can report a description that captures this, -for example `git describe --tags --dirty --always` reports things like -"0.7-1-g574ab98-dirty" to indicate that the checkout is one revision past the -0.7 tag, has a unique revision id of "574ab98", and is "dirty" (it has -uncommitted changes. - -The version identifier is used for multiple purposes: - -* to allow the module to self-identify its version: `myproject.__version__` -* to choose a name and prefix for a 'setup.py sdist' tarball - -## Theory of Operation - -Versioneer works by adding a special `_version.py` file into your source -tree, where your `__init__.py` can import it. This `_version.py` knows how to -dynamically ask the VCS tool for version information at import time. - -`_version.py` also contains `$Revision$` markers, and the installation -process marks `_version.py` to have this marker rewritten with a tag name -during the `git archive` command. As a result, generated tarballs will -contain enough information to get the proper version. - -To allow `setup.py` to compute a version too, a `versioneer.py` is added to -the top level of your source tree, next to `setup.py` and the `setup.cfg` -that configures it. This overrides several distutils/setuptools commands to -compute the version when invoked, and changes `setup.py build` and `setup.py -sdist` to replace `_version.py` with a small static file that contains just -the generated version data. - -## Installation - -See [INSTALL.md](./INSTALL.md) for detailed installation instructions. - -## Version-String Flavors - -Code which uses Versioneer can learn about its version string at runtime by -importing `_version` from your main `__init__.py` file and running the -`get_versions()` function. From the "outside" (e.g. in `setup.py`), you can -import the top-level `versioneer.py` and run `get_versions()`. - -Both functions return a dictionary with different flavors of version -information: - -* `['version']`: A condensed version string, rendered using the selected - style. This is the most commonly used value for the project's version - string. The default "pep440" style yields strings like `0.11`, - `0.11+2.g1076c97`, or `0.11+2.g1076c97.dirty`. See the "Styles" section - below for alternative styles. - -* `['full-revisionid']`: detailed revision identifier. For Git, this is the - full SHA1 commit id, e.g. "1076c978a8d3cfc70f408fe5974aa6c092c949ac". - -* `['date']`: Date and time of the latest `HEAD` commit. For Git, it is the - commit date in ISO 8601 format. This will be None if the date is not - available. - -* `['dirty']`: a boolean, True if the tree has uncommitted changes. Note that - this is only accurate if run in a VCS checkout, otherwise it is likely to - be False or None - -* `['error']`: if the version string could not be computed, this will be set - to a string describing the problem, otherwise it will be None. It may be - useful to throw an exception in setup.py if this is set, to avoid e.g. - creating tarballs with a version string of "unknown". - -Some variants are more useful than others. Including `full-revisionid` in a -bug report should allow developers to reconstruct the exact code being tested -(or indicate the presence of local changes that should be shared with the -developers). `version` is suitable for display in an "about" box or a CLI -`--version` output: it can be easily compared against release notes and lists -of bugs fixed in various releases. - -The installer adds the following text to your `__init__.py` to place a basic -version in `YOURPROJECT.__version__`: - - from ._version import get_versions - __version__ = get_versions()['version'] - del get_versions - -## Styles - -The setup.cfg `style=` configuration controls how the VCS information is -rendered into a version string. - -The default style, "pep440", produces a PEP440-compliant string, equal to the -un-prefixed tag name for actual releases, and containing an additional "local -version" section with more detail for in-between builds. For Git, this is -TAG[+DISTANCE.gHEX[.dirty]] , using information from `git describe --tags ---dirty --always`. For example "0.11+2.g1076c97.dirty" indicates that the -tree is like the "1076c97" commit but has uncommitted changes (".dirty"), and -that this commit is two revisions ("+2") beyond the "0.11" tag. For released -software (exactly equal to a known tag), the identifier will only contain the -stripped tag, e.g. "0.11". - -Other styles are available. See [details.md](details.md) in the Versioneer -source tree for descriptions. - -## Debugging - -Versioneer tries to avoid fatal errors: if something goes wrong, it will tend -to return a version of "0+unknown". To investigate the problem, run `setup.py -version`, which will run the version-lookup code in a verbose mode, and will -display the full contents of `get_versions()` (including the `error` string, -which may help identify what went wrong). - -## Known Limitations - -Some situations are known to cause problems for Versioneer. This details the -most significant ones. More can be found on Github -[issues page](https://github.com/warner/python-versioneer/issues). - -### Subprojects - -Versioneer has limited support for source trees in which `setup.py` is not in -the root directory (e.g. `setup.py` and `.git/` are *not* siblings). The are -two common reasons why `setup.py` might not be in the root: - -* Source trees which contain multiple subprojects, such as - [Buildbot](https://github.com/buildbot/buildbot), which contains both - "master" and "slave" subprojects, each with their own `setup.py`, - `setup.cfg`, and `tox.ini`. Projects like these produce multiple PyPI - distributions (and upload multiple independently-installable tarballs). -* Source trees whose main purpose is to contain a C library, but which also - provide bindings to Python (and perhaps other languages) in subdirectories. - -Versioneer will look for `.git` in parent directories, and most operations -should get the right version string. However `pip` and `setuptools` have bugs -and implementation details which frequently cause `pip install .` from a -subproject directory to fail to find a correct version string (so it usually -defaults to `0+unknown`). - -`pip install --editable .` should work correctly. `setup.py install` might -work too. - -Pip-8.1.1 is known to have this problem, but hopefully it will get fixed in -some later version. - -[Bug #38](https://github.com/warner/python-versioneer/issues/38) is tracking -this issue. The discussion in -[PR #61](https://github.com/warner/python-versioneer/pull/61) describes the -issue from the Versioneer side in more detail. -[pip PR#3176](https://github.com/pypa/pip/pull/3176) and -[pip PR#3615](https://github.com/pypa/pip/pull/3615) contain work to improve -pip to let Versioneer work correctly. - -Versioneer-0.16 and earlier only looked for a `.git` directory next to the -`setup.cfg`, so subprojects were completely unsupported with those releases. - -### Editable installs with setuptools <= 18.5 - -`setup.py develop` and `pip install --editable .` allow you to install a -project into a virtualenv once, then continue editing the source code (and -test) without re-installing after every change. - -"Entry-point scripts" (`setup(entry_points={"console_scripts": ..})`) are a -convenient way to specify executable scripts that should be installed along -with the python package. - -These both work as expected when using modern setuptools. When using -setuptools-18.5 or earlier, however, certain operations will cause -`pkg_resources.DistributionNotFound` errors when running the entrypoint -script, which must be resolved by re-installing the package. This happens -when the install happens with one version, then the egg_info data is -regenerated while a different version is checked out. Many setup.py commands -cause egg_info to be rebuilt (including `sdist`, `wheel`, and installing into -a different virtualenv), so this can be surprising. - -[Bug #83](https://github.com/warner/python-versioneer/issues/83) describes -this one, but upgrading to a newer version of setuptools should probably -resolve it. - -### Unicode version strings - -While Versioneer works (and is continually tested) with both Python 2 and -Python 3, it is not entirely consistent with bytes-vs-unicode distinctions. -Newer releases probably generate unicode version strings on py2. It's not -clear that this is wrong, but it may be surprising for applications when then -write these strings to a network connection or include them in bytes-oriented -APIs like cryptographic checksums. - -[Bug #71](https://github.com/warner/python-versioneer/issues/71) investigates -this question. - - -## Updating Versioneer - -To upgrade your project to a new release of Versioneer, do the following: - -* install the new Versioneer (`pip install -U versioneer` or equivalent) -* edit `setup.cfg`, if necessary, to include any new configuration settings - indicated by the release notes. See [UPGRADING](./UPGRADING.md) for details. -* re-run `versioneer install` in your source tree, to replace - `SRC/_version.py` -* commit any changed files - -## Future Directions - -This tool is designed to make it easily extended to other version-control -systems: all VCS-specific components are in separate directories like -src/git/ . The top-level `versioneer.py` script is assembled from these -components by running make-versioneer.py . In the future, make-versioneer.py -will take a VCS name as an argument, and will construct a version of -`versioneer.py` that is specific to the given VCS. It might also take the -configuration arguments that are currently provided manually during -installation by editing setup.py . Alternatively, it might go the other -direction and include code from all supported VCS systems, reducing the -number of intermediate scripts. - - -## License - -To make Versioneer easier to embed, all its code is dedicated to the public -domain. The `_version.py` that it creates is also in the public domain. -Specifically, both are released under the Creative Commons "Public Domain -Dedication" license (CC0-1.0), as described in -https://creativecommons.org/publicdomain/zero/1.0/ . - -[pypi-image]: https://img.shields.io/pypi/v/versioneer.svg -[pypi-url]: https://pypi.python.org/pypi/versioneer/ -[travis-image]: -https://img.shields.io/travis/warner/python-versioneer/master.svg -[travis-url]: https://travis-ci.org/warner/python-versioneer - -""" - -from __future__ import print_function -try: - import configparser -except ImportError: - import ConfigParser as configparser -import errno -import json -import os -import re -import subprocess -import sys - - -class VersioneerConfig: - """Container for Versioneer configuration parameters.""" - - -def get_root(): - """Get the project root directory. - - We require that all commands are run from the project root, i.e. the - directory that contains setup.py, setup.cfg, and versioneer.py . - """ - root = os.path.realpath(os.path.abspath(os.getcwd())) - setup_py = os.path.join(root, "setup.py") - versioneer_py = os.path.join(root, "versioneer.py") - if not (os.path.exists(setup_py) or os.path.exists(versioneer_py)): - # allow 'python path/to/setup.py COMMAND' - root = os.path.dirname(os.path.realpath(os.path.abspath(sys.argv[0]))) - setup_py = os.path.join(root, "setup.py") - versioneer_py = os.path.join(root, "versioneer.py") - if not (os.path.exists(setup_py) or os.path.exists(versioneer_py)): - err = ("Versioneer was unable to run the project root directory. " - "Versioneer requires setup.py to be executed from " - "its immediate directory (like 'python setup.py COMMAND'), " - "or in a way that lets it use sys.argv[0] to find the root " - "(like 'python path/to/setup.py COMMAND').") - raise VersioneerBadRootError(err) - try: - # Certain runtime workflows (setup.py install/develop in a setuptools - # tree) execute all dependencies in a single python process, so - # "versioneer" may be imported multiple times, and python's shared - # module-import table will cache the first one. So we can't use - # os.path.dirname(__file__), as that will find whichever - # versioneer.py was first imported, even in later projects. - me = os.path.realpath(os.path.abspath(__file__)) - me_dir = os.path.normcase(os.path.splitext(me)[0]) - vsr_dir = os.path.normcase(os.path.splitext(versioneer_py)[0]) - if me_dir != vsr_dir: - print("Warning: build in %s is using versioneer.py from %s" - % (os.path.dirname(me), versioneer_py)) - except NameError: - pass - return root - - -def get_config_from_root(root): - """Read the project setup.cfg file to determine Versioneer config.""" - # This might raise EnvironmentError (if setup.cfg is missing), or - # configparser.NoSectionError (if it lacks a [versioneer] section), or - # configparser.NoOptionError (if it lacks "VCS="). See the docstring at - # the top of versioneer.py for instructions on writing your setup.cfg . - setup_cfg = os.path.join(root, "setup.cfg") - parser = configparser.SafeConfigParser() - with open(setup_cfg, "r") as f: - parser.readfp(f) - VCS = parser.get("versioneer", "VCS") # mandatory - - def get(parser, name): - if parser.has_option("versioneer", name): - return parser.get("versioneer", name) - return None - cfg = VersioneerConfig() - cfg.VCS = VCS - cfg.style = get(parser, "style") or "" - cfg.versionfile_source = get(parser, "versionfile_source") - cfg.versionfile_build = get(parser, "versionfile_build") - cfg.tag_prefix = get(parser, "tag_prefix") - if cfg.tag_prefix in ("''", '""'): - cfg.tag_prefix = "" - cfg.parentdir_prefix = get(parser, "parentdir_prefix") - cfg.verbose = get(parser, "verbose") - return cfg - - -class NotThisMethod(Exception): - """Exception raised if a method is not valid for the current scenario.""" - - -# these dictionaries contain VCS-specific tools -LONG_VERSION_PY = {} -HANDLERS = {} - - -def register_vcs_handler(vcs, method): # decorator - """Create decorator to mark a method as the handler of a VCS.""" - def decorate(f): - """Store f in HANDLERS[vcs][method].""" - if vcs not in HANDLERS: - HANDLERS[vcs] = {} - HANDLERS[vcs][method] = f - return f - return decorate - - -def run_command(commands, args, cwd=None, verbose=False, hide_stderr=False, - env=None): - """Call the given command(s).""" - assert isinstance(commands, list) - p = None - for c in commands: - try: - dispcmd = str([c] + args) - # remember shell=False, so use git.cmd on windows, not just git - p = subprocess.Popen([c] + args, cwd=cwd, env=env, - stdout=subprocess.PIPE, - stderr=(subprocess.PIPE if hide_stderr - else None)) - break - except EnvironmentError: - e = sys.exc_info()[1] - if e.errno == errno.ENOENT: - continue - if verbose: - print("unable to run %s" % dispcmd) - print(e) - return None, None - else: - if verbose: - print("unable to find command, tried %s" % (commands,)) - return None, None - stdout = p.communicate()[0].strip() - if sys.version_info[0] >= 3: - stdout = stdout.decode() - if p.returncode != 0: - if verbose: - print("unable to run %s (error)" % dispcmd) - print("stdout was %s" % stdout) - return None, p.returncode - return stdout, p.returncode - - -LONG_VERSION_PY['git'] = ''' -# This file helps to compute a version number in source trees obtained from -# git-archive tarball (such as those provided by githubs download-from-tag -# feature). Distribution tarballs (built by setup.py sdist) and build -# directories (produced by setup.py build) will contain a much shorter file -# that just contains the computed version number. - -# This file is released into the public domain. Generated by -# versioneer-0.18 (https://github.com/warner/python-versioneer) - -"""Git implementation of _version.py.""" - -import errno -import os -import re -import subprocess -import sys - - -def get_keywords(): - """Get the keywords needed to look up the version information.""" - # these strings will be replaced by git during git-archive. - # setup.py/versioneer.py will grep for the variable names, so they must - # each be defined on a line of their own. _version.py will just call - # get_keywords(). - git_refnames = "%(DOLLAR)sFormat:%%d%(DOLLAR)s" - git_full = "%(DOLLAR)sFormat:%%H%(DOLLAR)s" - git_date = "%(DOLLAR)sFormat:%%ci%(DOLLAR)s" - keywords = {"refnames": git_refnames, "full": git_full, "date": git_date} - return keywords - - -class VersioneerConfig: - """Container for Versioneer configuration parameters.""" - - -def get_config(): - """Create, populate and return the VersioneerConfig() object.""" - # these strings are filled in when 'setup.py versioneer' creates - # _version.py - cfg = VersioneerConfig() - cfg.VCS = "git" - cfg.style = "%(STYLE)s" - cfg.tag_prefix = "%(TAG_PREFIX)s" - cfg.parentdir_prefix = "%(PARENTDIR_PREFIX)s" - cfg.versionfile_source = "%(VERSIONFILE_SOURCE)s" - cfg.verbose = False - return cfg - - -class NotThisMethod(Exception): - """Exception raised if a method is not valid for the current scenario.""" - - -LONG_VERSION_PY = {} -HANDLERS = {} - - -def register_vcs_handler(vcs, method): # decorator - """Create decorator to mark a method as the handler of a VCS.""" - def decorate(f): - """Store f in HANDLERS[vcs][method].""" - if vcs not in HANDLERS: - HANDLERS[vcs] = {} - HANDLERS[vcs][method] = f - return f - return decorate - - -def run_command(commands, args, cwd=None, verbose=False, hide_stderr=False, - env=None): - """Call the given command(s).""" - assert isinstance(commands, list) - p = None - for c in commands: - try: - dispcmd = str([c] + args) - # remember shell=False, so use git.cmd on windows, not just git - p = subprocess.Popen([c] + args, cwd=cwd, env=env, - stdout=subprocess.PIPE, - stderr=(subprocess.PIPE if hide_stderr - else None)) - break - except EnvironmentError: - e = sys.exc_info()[1] - if e.errno == errno.ENOENT: - continue - if verbose: - print("unable to run %%s" %% dispcmd) - print(e) - return None, None - else: - if verbose: - print("unable to find command, tried %%s" %% (commands,)) - return None, None - stdout = p.communicate()[0].strip() - if sys.version_info[0] >= 3: - stdout = stdout.decode() - if p.returncode != 0: - if verbose: - print("unable to run %%s (error)" %% dispcmd) - print("stdout was %%s" %% stdout) - return None, p.returncode - return stdout, p.returncode - - -def versions_from_parentdir(parentdir_prefix, root, verbose): - """Try to determine the version from the parent directory name. - - Source tarballs conventionally unpack into a directory that includes both - the project name and a version string. We will also support searching up - two directory levels for an appropriately named parent directory - """ - rootdirs = [] - - for i in range(3): - dirname = os.path.basename(root) - if dirname.startswith(parentdir_prefix): - return {"version": dirname[len(parentdir_prefix):], - "full-revisionid": None, - "dirty": False, "error": None, "date": None} - else: - rootdirs.append(root) - root = os.path.dirname(root) # up a level - - if verbose: - print("Tried directories %%s but none started with prefix %%s" %% - (str(rootdirs), parentdir_prefix)) - raise NotThisMethod("rootdir doesn't start with parentdir_prefix") - - -@register_vcs_handler("git", "get_keywords") -def git_get_keywords(versionfile_abs): - """Extract version information from the given file.""" - # the code embedded in _version.py can just fetch the value of these - # keywords. When used from setup.py, we don't want to import _version.py, - # so we do it with a regexp instead. This function is not used from - # _version.py. - keywords = {} - try: - f = open(versionfile_abs, "r") - for line in f.readlines(): - if line.strip().startswith("git_refnames ="): - mo = re.search(r'=\s*"(.*)"', line) - if mo: - keywords["refnames"] = mo.group(1) - if line.strip().startswith("git_full ="): - mo = re.search(r'=\s*"(.*)"', line) - if mo: - keywords["full"] = mo.group(1) - if line.strip().startswith("git_date ="): - mo = re.search(r'=\s*"(.*)"', line) - if mo: - keywords["date"] = mo.group(1) - f.close() - except EnvironmentError: - pass - return keywords - - -@register_vcs_handler("git", "keywords") -def git_versions_from_keywords(keywords, tag_prefix, verbose): - """Get version information from git keywords.""" - if not keywords: - raise NotThisMethod("no keywords at all, weird") - date = keywords.get("date") - if date is not None: - # git-2.2.0 added "%%cI", which expands to an ISO-8601 -compliant - # datestamp. However we prefer "%%ci" (which expands to an "ISO-8601 - # -like" string, which we must then edit to make compliant), because - # it's been around since git-1.5.3, and it's too difficult to - # discover which version we're using, or to work around using an - # older one. - date = date.strip().replace(" ", "T", 1).replace(" ", "", 1) - refnames = keywords["refnames"].strip() - if refnames.startswith("$Format"): - if verbose: - print("keywords are unexpanded, not using") - raise NotThisMethod("unexpanded keywords, not a git-archive tarball") - refs = set([r.strip() for r in refnames.strip("()").split(",")]) - # starting in git-1.8.3, tags are listed as "tag: foo-1.0" instead of - # just "foo-1.0". If we see a "tag: " prefix, prefer those. - TAG = "tag: " - tags = set([r[len(TAG):] for r in refs if r.startswith(TAG)]) - if not tags: - # Either we're using git < 1.8.3, or there really are no tags. We use - # a heuristic: assume all version tags have a digit. The old git %%d - # expansion behaves like git log --decorate=short and strips out the - # refs/heads/ and refs/tags/ prefixes that would let us distinguish - # between branches and tags. By ignoring refnames without digits, we - # filter out many common branch names like "release" and - # "stabilization", as well as "HEAD" and "master". - tags = set([r for r in refs if re.search(r'\d', r)]) - if verbose: - print("discarding '%%s', no digits" %% ",".join(refs - tags)) - if verbose: - print("likely tags: %%s" %% ",".join(sorted(tags))) - for ref in sorted(tags): - # sorting will prefer e.g. "2.0" over "2.0rc1" - if ref.startswith(tag_prefix): - r = ref[len(tag_prefix):] - if verbose: - print("picking %%s" %% r) - return {"version": r, - "full-revisionid": keywords["full"].strip(), - "dirty": False, "error": None, - "date": date} - # no suitable tags, so version is "0+unknown", but full hex is still there - if verbose: - print("no suitable tags, using unknown + full revision id") - return {"version": "0+unknown", - "full-revisionid": keywords["full"].strip(), - "dirty": False, "error": "no suitable tags", "date": None} - - -@register_vcs_handler("git", "pieces_from_vcs") -def git_pieces_from_vcs(tag_prefix, root, verbose, run_command=run_command): - """Get version from 'git describe' in the root of the source tree. - - This only gets called if the git-archive 'subst' keywords were *not* - expanded, and _version.py hasn't already been rewritten with a short - version string, meaning we're inside a checked out source tree. - """ - GITS = ["git"] - if sys.platform == "win32": - GITS = ["git.cmd", "git.exe"] - - out, rc = run_command(GITS, ["rev-parse", "--git-dir"], cwd=root, - hide_stderr=True) - if rc != 0: - if verbose: - print("Directory %%s not under git control" %% root) - raise NotThisMethod("'git rev-parse --git-dir' returned error") - - # if there is a tag matching tag_prefix, this yields TAG-NUM-gHEX[-dirty] - # if there isn't one, this yields HEX[-dirty] (no NUM) - describe_out, rc = run_command(GITS, ["describe", "--tags", "--dirty", - "--always", "--long", - "--match", "%%s*" %% tag_prefix], - cwd=root) - # --long was added in git-1.5.5 - if describe_out is None: - raise NotThisMethod("'git describe' failed") - describe_out = describe_out.strip() - full_out, rc = run_command(GITS, ["rev-parse", "HEAD"], cwd=root) - if full_out is None: - raise NotThisMethod("'git rev-parse' failed") - full_out = full_out.strip() - - pieces = {} - pieces["long"] = full_out - pieces["short"] = full_out[:7] # maybe improved later - pieces["error"] = None - - # parse describe_out. It will be like TAG-NUM-gHEX[-dirty] or HEX[-dirty] - # TAG might have hyphens. - git_describe = describe_out - - # look for -dirty suffix - dirty = git_describe.endswith("-dirty") - pieces["dirty"] = dirty - if dirty: - git_describe = git_describe[:git_describe.rindex("-dirty")] - - # now we have TAG-NUM-gHEX or HEX - - if "-" in git_describe: - # TAG-NUM-gHEX - mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe) - if not mo: - # unparseable. Maybe git-describe is misbehaving? - pieces["error"] = ("unable to parse git-describe output: '%%s'" - %% describe_out) - return pieces - - # tag - full_tag = mo.group(1) - if not full_tag.startswith(tag_prefix): - if verbose: - fmt = "tag '%%s' doesn't start with prefix '%%s'" - print(fmt %% (full_tag, tag_prefix)) - pieces["error"] = ("tag '%%s' doesn't start with prefix '%%s'" - %% (full_tag, tag_prefix)) - return pieces - pieces["closest-tag"] = full_tag[len(tag_prefix):] - - # distance: number of commits since tag - pieces["distance"] = int(mo.group(2)) - - # commit: short hex revision ID - pieces["short"] = mo.group(3) - - else: - # HEX: no tags - pieces["closest-tag"] = None - count_out, rc = run_command(GITS, ["rev-list", "HEAD", "--count"], - cwd=root) - pieces["distance"] = int(count_out) # total number of commits - - # commit date: see ISO-8601 comment in git_versions_from_keywords() - date = run_command(GITS, ["show", "-s", "--format=%%ci", "HEAD"], - cwd=root)[0].strip() - pieces["date"] = date.strip().replace(" ", "T", 1).replace(" ", "", 1) - - return pieces - - -def plus_or_dot(pieces): - """Return a + if we don't already have one, else return a .""" - if "+" in pieces.get("closest-tag", ""): - return "." - return "+" - - -def render_pep440(pieces): - """Build up version string, with post-release "local version identifier". - - Our goal: TAG[+DISTANCE.gHEX[.dirty]] . Note that if you - get a tagged build and then dirty it, you'll get TAG+0.gHEX.dirty - - Exceptions: - 1: no tags. git_describe was just HEX. 0+untagged.DISTANCE.gHEX[.dirty] - """ - if pieces["closest-tag"]: - rendered = pieces["closest-tag"] - if pieces["distance"] or pieces["dirty"]: - rendered += plus_or_dot(pieces) - rendered += "%%d.g%%s" %% (pieces["distance"], pieces["short"]) - if pieces["dirty"]: - rendered += ".dirty" - else: - # exception #1 - rendered = "0+untagged.%%d.g%%s" %% (pieces["distance"], - pieces["short"]) - if pieces["dirty"]: - rendered += ".dirty" - return rendered - - -def render_pep440_pre(pieces): - """TAG[.post.devDISTANCE] -- No -dirty. - - Exceptions: - 1: no tags. 0.post.devDISTANCE - """ - if pieces["closest-tag"]: - rendered = pieces["closest-tag"] - if pieces["distance"]: - rendered += ".post.dev%%d" %% pieces["distance"] - else: - # exception #1 - rendered = "0.post.dev%%d" %% pieces["distance"] - return rendered - - -def render_pep440_post(pieces): - """TAG[.postDISTANCE[.dev0]+gHEX] . - - The ".dev0" means dirty. Note that .dev0 sorts backwards - (a dirty tree will appear "older" than the corresponding clean one), - but you shouldn't be releasing software with -dirty anyways. - - Exceptions: - 1: no tags. 0.postDISTANCE[.dev0] - """ - if pieces["closest-tag"]: - rendered = pieces["closest-tag"] - if pieces["distance"] or pieces["dirty"]: - rendered += ".post%%d" %% pieces["distance"] - if pieces["dirty"]: - rendered += ".dev0" - rendered += plus_or_dot(pieces) - rendered += "g%%s" %% pieces["short"] - else: - # exception #1 - rendered = "0.post%%d" %% pieces["distance"] - if pieces["dirty"]: - rendered += ".dev0" - rendered += "+g%%s" %% pieces["short"] - return rendered - - -def render_pep440_old(pieces): - """TAG[.postDISTANCE[.dev0]] . - - The ".dev0" means dirty. - - Exceptions: - 1: no tags. 0.postDISTANCE[.dev0] - """ - if pieces["closest-tag"]: - rendered = pieces["closest-tag"] - if pieces["distance"] or pieces["dirty"]: - rendered += ".post%%d" %% pieces["distance"] - if pieces["dirty"]: - rendered += ".dev0" - else: - # exception #1 - rendered = "0.post%%d" %% pieces["distance"] - if pieces["dirty"]: - rendered += ".dev0" - return rendered - - -def render_git_describe(pieces): - """TAG[-DISTANCE-gHEX][-dirty]. - - Like 'git describe --tags --dirty --always'. - - Exceptions: - 1: no tags. HEX[-dirty] (note: no 'g' prefix) - """ - if pieces["closest-tag"]: - rendered = pieces["closest-tag"] - if pieces["distance"]: - rendered += "-%%d-g%%s" %% (pieces["distance"], pieces["short"]) - else: - # exception #1 - rendered = pieces["short"] - if pieces["dirty"]: - rendered += "-dirty" - return rendered - - -def render_git_describe_long(pieces): - """TAG-DISTANCE-gHEX[-dirty]. - - Like 'git describe --tags --dirty --always -long'. - The distance/hash is unconditional. - - Exceptions: - 1: no tags. HEX[-dirty] (note: no 'g' prefix) - """ - if pieces["closest-tag"]: - rendered = pieces["closest-tag"] - rendered += "-%%d-g%%s" %% (pieces["distance"], pieces["short"]) - else: - # exception #1 - rendered = pieces["short"] - if pieces["dirty"]: - rendered += "-dirty" - return rendered - - -def render(pieces, style): - """Render the given version pieces into the requested style.""" - if pieces["error"]: - return {"version": "unknown", - "full-revisionid": pieces.get("long"), - "dirty": None, - "error": pieces["error"], - "date": None} - - if not style or style == "default": - style = "pep440" # the default - - if style == "pep440": - rendered = render_pep440(pieces) - elif style == "pep440-pre": - rendered = render_pep440_pre(pieces) - elif style == "pep440-post": - rendered = render_pep440_post(pieces) - elif style == "pep440-old": - rendered = render_pep440_old(pieces) - elif style == "git-describe": - rendered = render_git_describe(pieces) - elif style == "git-describe-long": - rendered = render_git_describe_long(pieces) - else: - raise ValueError("unknown style '%%s'" %% style) - - return {"version": rendered, "full-revisionid": pieces["long"], - "dirty": pieces["dirty"], "error": None, - "date": pieces.get("date")} - - -def get_versions(): - """Get version information or return default if unable to do so.""" - # I am in _version.py, which lives at ROOT/VERSIONFILE_SOURCE. If we have - # __file__, we can work backwards from there to the root. Some - # py2exe/bbfreeze/non-CPython implementations don't do __file__, in which - # case we can only use expanded keywords. - - cfg = get_config() - verbose = cfg.verbose - - try: - return git_versions_from_keywords(get_keywords(), cfg.tag_prefix, - verbose) - except NotThisMethod: - pass - - try: - root = os.path.realpath(__file__) - # versionfile_source is the relative path from the top of the source - # tree (where the .git directory might live) to this file. Invert - # this to find the root from __file__. - for i in cfg.versionfile_source.split('/'): - root = os.path.dirname(root) - except NameError: - return {"version": "0+unknown", "full-revisionid": None, - "dirty": None, - "error": "unable to find root of source tree", - "date": None} - - try: - pieces = git_pieces_from_vcs(cfg.tag_prefix, root, verbose) - return render(pieces, cfg.style) - except NotThisMethod: - pass - - try: - if cfg.parentdir_prefix: - return versions_from_parentdir(cfg.parentdir_prefix, root, verbose) - except NotThisMethod: - pass - - return {"version": "0+unknown", "full-revisionid": None, - "dirty": None, - "error": "unable to compute version", "date": None} -''' - - -@register_vcs_handler("git", "get_keywords") -def git_get_keywords(versionfile_abs): - """Extract version information from the given file.""" - # the code embedded in _version.py can just fetch the value of these - # keywords. When used from setup.py, we don't want to import _version.py, - # so we do it with a regexp instead. This function is not used from - # _version.py. - keywords = {} - try: - f = open(versionfile_abs, "r") - for line in f.readlines(): - if line.strip().startswith("git_refnames ="): - mo = re.search(r'=\s*"(.*)"', line) - if mo: - keywords["refnames"] = mo.group(1) - if line.strip().startswith("git_full ="): - mo = re.search(r'=\s*"(.*)"', line) - if mo: - keywords["full"] = mo.group(1) - if line.strip().startswith("git_date ="): - mo = re.search(r'=\s*"(.*)"', line) - if mo: - keywords["date"] = mo.group(1) - f.close() - except EnvironmentError: - pass - return keywords - - -@register_vcs_handler("git", "keywords") -def git_versions_from_keywords(keywords, tag_prefix, verbose): - """Get version information from git keywords.""" - if not keywords: - raise NotThisMethod("no keywords at all, weird") - date = keywords.get("date") - if date is not None: - # git-2.2.0 added "%cI", which expands to an ISO-8601 -compliant - # datestamp. However we prefer "%ci" (which expands to an "ISO-8601 - # -like" string, which we must then edit to make compliant), because - # it's been around since git-1.5.3, and it's too difficult to - # discover which version we're using, or to work around using an - # older one. - date = date.strip().replace(" ", "T", 1).replace(" ", "", 1) - refnames = keywords["refnames"].strip() - if refnames.startswith("$Format"): - if verbose: - print("keywords are unexpanded, not using") - raise NotThisMethod("unexpanded keywords, not a git-archive tarball") - refs = set([r.strip() for r in refnames.strip("()").split(",")]) - # starting in git-1.8.3, tags are listed as "tag: foo-1.0" instead of - # just "foo-1.0". If we see a "tag: " prefix, prefer those. - TAG = "tag: " - tags = set([r[len(TAG):] for r in refs if r.startswith(TAG)]) - if not tags: - # Either we're using git < 1.8.3, or there really are no tags. We use - # a heuristic: assume all version tags have a digit. The old git %d - # expansion behaves like git log --decorate=short and strips out the - # refs/heads/ and refs/tags/ prefixes that would let us distinguish - # between branches and tags. By ignoring refnames without digits, we - # filter out many common branch names like "release" and - # "stabilization", as well as "HEAD" and "master". - tags = set([r for r in refs if re.search(r'\d', r)]) - if verbose: - print("discarding '%s', no digits" % ",".join(refs - tags)) - if verbose: - print("likely tags: %s" % ",".join(sorted(tags))) - for ref in sorted(tags): - # sorting will prefer e.g. "2.0" over "2.0rc1" - if ref.startswith(tag_prefix): - r = ref[len(tag_prefix):] - if verbose: - print("picking %s" % r) - return {"version": r, - "full-revisionid": keywords["full"].strip(), - "dirty": False, "error": None, - "date": date} - # no suitable tags, so version is "0+unknown", but full hex is still there - if verbose: - print("no suitable tags, using unknown + full revision id") - return {"version": "0+unknown", - "full-revisionid": keywords["full"].strip(), - "dirty": False, "error": "no suitable tags", "date": None} - - -@register_vcs_handler("git", "pieces_from_vcs") -def git_pieces_from_vcs(tag_prefix, root, verbose, run_command=run_command): - """Get version from 'git describe' in the root of the source tree. - - This only gets called if the git-archive 'subst' keywords were *not* - expanded, and _version.py hasn't already been rewritten with a short - version string, meaning we're inside a checked out source tree. - """ - GITS = ["git"] - if sys.platform == "win32": - GITS = ["git.cmd", "git.exe"] - - out, rc = run_command(GITS, ["rev-parse", "--git-dir"], cwd=root, - hide_stderr=True) - if rc != 0: - if verbose: - print("Directory %s not under git control" % root) - raise NotThisMethod("'git rev-parse --git-dir' returned error") - - # if there is a tag matching tag_prefix, this yields TAG-NUM-gHEX[-dirty] - # if there isn't one, this yields HEX[-dirty] (no NUM) - describe_out, rc = run_command(GITS, ["describe", "--tags", "--dirty", - "--always", "--long", - "--match", "%s*" % tag_prefix], - cwd=root) - # --long was added in git-1.5.5 - if describe_out is None: - raise NotThisMethod("'git describe' failed") - describe_out = describe_out.strip() - full_out, rc = run_command(GITS, ["rev-parse", "HEAD"], cwd=root) - if full_out is None: - raise NotThisMethod("'git rev-parse' failed") - full_out = full_out.strip() - - pieces = {} - pieces["long"] = full_out - pieces["short"] = full_out[:7] # maybe improved later - pieces["error"] = None - - # parse describe_out. It will be like TAG-NUM-gHEX[-dirty] or HEX[-dirty] - # TAG might have hyphens. - git_describe = describe_out - - # look for -dirty suffix - dirty = git_describe.endswith("-dirty") - pieces["dirty"] = dirty - if dirty: - git_describe = git_describe[:git_describe.rindex("-dirty")] - - # now we have TAG-NUM-gHEX or HEX - - if "-" in git_describe: - # TAG-NUM-gHEX - mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe) - if not mo: - # unparseable. Maybe git-describe is misbehaving? - pieces["error"] = ("unable to parse git-describe output: '%s'" - % describe_out) - return pieces - - # tag - full_tag = mo.group(1) - if not full_tag.startswith(tag_prefix): - if verbose: - fmt = "tag '%s' doesn't start with prefix '%s'" - print(fmt % (full_tag, tag_prefix)) - pieces["error"] = ("tag '%s' doesn't start with prefix '%s'" - % (full_tag, tag_prefix)) - return pieces - pieces["closest-tag"] = full_tag[len(tag_prefix):] - - # distance: number of commits since tag - pieces["distance"] = int(mo.group(2)) - - # commit: short hex revision ID - pieces["short"] = mo.group(3) - - else: - # HEX: no tags - pieces["closest-tag"] = None - count_out, rc = run_command(GITS, ["rev-list", "HEAD", "--count"], - cwd=root) - pieces["distance"] = int(count_out) # total number of commits - - # commit date: see ISO-8601 comment in git_versions_from_keywords() - date = run_command(GITS, ["show", "-s", "--format=%ci", "HEAD"], - cwd=root)[0].strip() - pieces["date"] = date.strip().replace(" ", "T", 1).replace(" ", "", 1) - - return pieces - - -def do_vcs_install(manifest_in, versionfile_source, ipy): - """Git-specific installation logic for Versioneer. - - For Git, this means creating/changing .gitattributes to mark _version.py - for export-subst keyword substitution. - """ - GITS = ["git"] - if sys.platform == "win32": - GITS = ["git.cmd", "git.exe"] - files = [manifest_in, versionfile_source] - if ipy: - files.append(ipy) - try: - me = __file__ - if me.endswith(".pyc") or me.endswith(".pyo"): - me = os.path.splitext(me)[0] + ".py" - versioneer_file = os.path.relpath(me) - except NameError: - versioneer_file = "versioneer.py" - files.append(versioneer_file) - present = False - try: - f = open(".gitattributes", "r") - for line in f.readlines(): - if line.strip().startswith(versionfile_source): - if "export-subst" in line.strip().split()[1:]: - present = True - f.close() - except EnvironmentError: - pass - if not present: - f = open(".gitattributes", "a+") - f.write("%s export-subst\n" % versionfile_source) - f.close() - files.append(".gitattributes") - run_command(GITS, ["add", "--"] + files) - - -def versions_from_parentdir(parentdir_prefix, root, verbose): - """Try to determine the version from the parent directory name. - - Source tarballs conventionally unpack into a directory that includes both - the project name and a version string. We will also support searching up - two directory levels for an appropriately named parent directory - """ - rootdirs = [] - - for i in range(3): - dirname = os.path.basename(root) - if dirname.startswith(parentdir_prefix): - return {"version": dirname[len(parentdir_prefix):], - "full-revisionid": None, - "dirty": False, "error": None, "date": None} - else: - rootdirs.append(root) - root = os.path.dirname(root) # up a level - - if verbose: - print("Tried directories %s but none started with prefix %s" % - (str(rootdirs), parentdir_prefix)) - raise NotThisMethod("rootdir doesn't start with parentdir_prefix") - - -SHORT_VERSION_PY = """ -# This file was generated by 'versioneer.py' (0.18) from -# revision-control system data, or from the parent directory name of an -# unpacked source archive. Distribution tarballs contain a pre-generated copy -# of this file. - -from __future__ import absolute_import -import json - -version_json = ''' -%s -''' # END VERSION_JSON - - -def get_versions(): - return json.loads(version_json) -""" - - -def versions_from_file(filename): - """Try to determine the version from _version.py if present.""" - try: - with open(filename) as f: - contents = f.read() - except EnvironmentError: - raise NotThisMethod("unable to read _version.py") - mo = re.search(r"version_json = '''\n(.*)''' # END VERSION_JSON", - contents, re.M | re.S) - if not mo: - mo = re.search(r"version_json = '''\r\n(.*)''' # END VERSION_JSON", - contents, re.M | re.S) - if not mo: - raise NotThisMethod("no version_json in _version.py") - return json.loads(mo.group(1)) - - -def write_to_version_file(filename, versions): - """Write the given version number to the given _version.py file.""" - os.unlink(filename) - contents = json.dumps(versions, sort_keys=True, - indent=1, separators=(",", ": ")) - with open(filename, "w") as f: - f.write(SHORT_VERSION_PY % contents) - - print("set %s to '%s'" % (filename, versions["version"])) - - -def plus_or_dot(pieces): - """Return a + if we don't already have one, else return a .""" - if "+" in pieces.get("closest-tag", ""): - return "." - return "+" - - -def render_pep440(pieces): - """Build up version string, with post-release "local version identifier". - - Our goal: TAG[+DISTANCE.gHEX[.dirty]] . Note that if you - get a tagged build and then dirty it, you'll get TAG+0.gHEX.dirty - - Exceptions: - 1: no tags. git_describe was just HEX. 0+untagged.DISTANCE.gHEX[.dirty] - """ - if pieces["closest-tag"]: - rendered = pieces["closest-tag"] - if pieces["distance"] or pieces["dirty"]: - rendered += plus_or_dot(pieces) - rendered += "%d.g%s" % (pieces["distance"], pieces["short"]) - if pieces["dirty"]: - rendered += ".dirty" - else: - # exception #1 - rendered = "0+untagged.%d.g%s" % (pieces["distance"], - pieces["short"]) - if pieces["dirty"]: - rendered += ".dirty" - return rendered - - -def render_pep440_pre(pieces): - """TAG[.post.devDISTANCE] -- No -dirty. - - Exceptions: - 1: no tags. 0.post.devDISTANCE - """ - if pieces["closest-tag"]: - rendered = pieces["closest-tag"] - if pieces["distance"]: - rendered += ".post.dev%d" % pieces["distance"] - else: - # exception #1 - rendered = "0.post.dev%d" % pieces["distance"] - return rendered - - -def render_pep440_post(pieces): - """TAG[.postDISTANCE[.dev0]+gHEX] . - - The ".dev0" means dirty. Note that .dev0 sorts backwards - (a dirty tree will appear "older" than the corresponding clean one), - but you shouldn't be releasing software with -dirty anyways. - - Exceptions: - 1: no tags. 0.postDISTANCE[.dev0] - """ - if pieces["closest-tag"]: - rendered = pieces["closest-tag"] - if pieces["distance"] or pieces["dirty"]: - rendered += ".post%d" % pieces["distance"] - if pieces["dirty"]: - rendered += ".dev0" - rendered += plus_or_dot(pieces) - rendered += "g%s" % pieces["short"] - else: - # exception #1 - rendered = "0.post%d" % pieces["distance"] - if pieces["dirty"]: - rendered += ".dev0" - rendered += "+g%s" % pieces["short"] - return rendered - - -def render_pep440_old(pieces): - """TAG[.postDISTANCE[.dev0]] . - - The ".dev0" means dirty. - - Exceptions: - 1: no tags. 0.postDISTANCE[.dev0] - """ - if pieces["closest-tag"]: - rendered = pieces["closest-tag"] - if pieces["distance"] or pieces["dirty"]: - rendered += ".post%d" % pieces["distance"] - if pieces["dirty"]: - rendered += ".dev0" - else: - # exception #1 - rendered = "0.post%d" % pieces["distance"] - if pieces["dirty"]: - rendered += ".dev0" - return rendered - - -def render_git_describe(pieces): - """TAG[-DISTANCE-gHEX][-dirty]. - - Like 'git describe --tags --dirty --always'. - - Exceptions: - 1: no tags. HEX[-dirty] (note: no 'g' prefix) - """ - if pieces["closest-tag"]: - rendered = pieces["closest-tag"] - if pieces["distance"]: - rendered += "-%d-g%s" % (pieces["distance"], pieces["short"]) - else: - # exception #1 - rendered = pieces["short"] - if pieces["dirty"]: - rendered += "-dirty" - return rendered - - -def render_git_describe_long(pieces): - """TAG-DISTANCE-gHEX[-dirty]. - - Like 'git describe --tags --dirty --always -long'. - The distance/hash is unconditional. - - Exceptions: - 1: no tags. HEX[-dirty] (note: no 'g' prefix) - """ - if pieces["closest-tag"]: - rendered = pieces["closest-tag"] - rendered += "-%d-g%s" % (pieces["distance"], pieces["short"]) - else: - # exception #1 - rendered = pieces["short"] - if pieces["dirty"]: - rendered += "-dirty" - return rendered - - -def render(pieces, style): - """Render the given version pieces into the requested style.""" - if pieces["error"]: - return {"version": "unknown", - "full-revisionid": pieces.get("long"), - "dirty": None, - "error": pieces["error"], - "date": None} - - if not style or style == "default": - style = "pep440" # the default - - if style == "pep440": - rendered = render_pep440(pieces) - elif style == "pep440-pre": - rendered = render_pep440_pre(pieces) - elif style == "pep440-post": - rendered = render_pep440_post(pieces) - elif style == "pep440-old": - rendered = render_pep440_old(pieces) - elif style == "git-describe": - rendered = render_git_describe(pieces) - elif style == "git-describe-long": - rendered = render_git_describe_long(pieces) - else: - raise ValueError("unknown style '%s'" % style) - - return {"version": rendered, "full-revisionid": pieces["long"], - "dirty": pieces["dirty"], "error": None, - "date": pieces.get("date")} - - -class VersioneerBadRootError(Exception): - """The project root directory is unknown or missing key files.""" - - -def get_versions(verbose=False): - """Get the project version from whatever source is available. - - Returns dict with two keys: 'version' and 'full'. - """ - if "versioneer" in sys.modules: - # see the discussion in cmdclass.py:get_cmdclass() - del sys.modules["versioneer"] - - root = get_root() - cfg = get_config_from_root(root) - - assert cfg.VCS is not None, "please set [versioneer]VCS= in setup.cfg" - handlers = HANDLERS.get(cfg.VCS) - assert handlers, "unrecognized VCS '%s'" % cfg.VCS - verbose = verbose or cfg.verbose - assert cfg.versionfile_source is not None, \ - "please set versioneer.versionfile_source" - assert cfg.tag_prefix is not None, "please set versioneer.tag_prefix" - - versionfile_abs = os.path.join(root, cfg.versionfile_source) - - # extract version from first of: _version.py, VCS command (e.g. 'git - # describe'), parentdir. This is meant to work for developers using a - # source checkout, for users of a tarball created by 'setup.py sdist', - # and for users of a tarball/zipball created by 'git archive' or github's - # download-from-tag feature or the equivalent in other VCSes. - - get_keywords_f = handlers.get("get_keywords") - from_keywords_f = handlers.get("keywords") - if get_keywords_f and from_keywords_f: - try: - keywords = get_keywords_f(versionfile_abs) - ver = from_keywords_f(keywords, cfg.tag_prefix, verbose) - if verbose: - print("got version from expanded keyword %s" % ver) - return ver - except NotThisMethod: - pass - - try: - ver = versions_from_file(versionfile_abs) - if verbose: - print("got version from file %s %s" % (versionfile_abs, ver)) - return ver - except NotThisMethod: - pass - - from_vcs_f = handlers.get("pieces_from_vcs") - if from_vcs_f: - try: - pieces = from_vcs_f(cfg.tag_prefix, root, verbose) - ver = render(pieces, cfg.style) - if verbose: - print("got version from VCS %s" % ver) - return ver - except NotThisMethod: - pass - - try: - if cfg.parentdir_prefix: - ver = versions_from_parentdir(cfg.parentdir_prefix, root, verbose) - if verbose: - print("got version from parentdir %s" % ver) - return ver - except NotThisMethod: - pass - - if verbose: - print("unable to compute version") - - return {"version": "0+unknown", "full-revisionid": None, - "dirty": None, "error": "unable to compute version", - "date": None} - - -def get_version(): - """Get the short version string for this project.""" - return get_versions()["version"] - - -def get_cmdclass(cmdclass=None): - """Get the custom setuptools/distutils subclasses used by Versioneer. - - If the package uses a different cmdclass (e.g. one from numpy), it - should be provide as an argument. - """ - if "versioneer" in sys.modules: - del sys.modules["versioneer"] - # this fixes the "python setup.py develop" case (also 'install' and - # 'easy_install .'), in which subdependencies of the main project are - # built (using setup.py bdist_egg) in the same python process. Assume - # a main project A and a dependency B, which use different versions - # of Versioneer. A's setup.py imports A's Versioneer, leaving it in - # sys.modules by the time B's setup.py is executed, causing B to run - # with the wrong versioneer. Setuptools wraps the sub-dep builds in a - # sandbox that restores sys.modules to it's pre-build state, so the - # parent is protected against the child's "import versioneer". By - # removing ourselves from sys.modules here, before the child build - # happens, we protect the child from the parent's versioneer too. - # Also see https://github.com/warner/python-versioneer/issues/52 - - cmds = {} if cmdclass is None else cmdclass.copy() - - # we add "version" to both distutils and setuptools - from distutils.core import Command - - class cmd_version(Command): - description = "report generated version string" - user_options = [] - boolean_options = [] - - def initialize_options(self): - pass - - def finalize_options(self): - pass - - def run(self): - vers = get_versions(verbose=True) - print("Version: %s" % vers["version"]) - print(" full-revisionid: %s" % vers.get("full-revisionid")) - print(" dirty: %s" % vers.get("dirty")) - print(" date: %s" % vers.get("date")) - if vers["error"]: - print(" error: %s" % vers["error"]) - cmds["version"] = cmd_version - - # we override "build_py" in both distutils and setuptools - # - # most invocation pathways end up running build_py: - # distutils/build -> build_py - # distutils/install -> distutils/build ->.. - # setuptools/bdist_wheel -> distutils/install ->.. - # setuptools/bdist_egg -> distutils/install_lib -> build_py - # setuptools/install -> bdist_egg ->.. - # setuptools/develop -> ? - # pip install: - # copies source tree to a tempdir before running egg_info/etc - # if .git isn't copied too, 'git describe' will fail - # then does setup.py bdist_wheel, or sometimes setup.py install - # setup.py egg_info -> ? - - # we override different "build_py" commands for both environments - if 'build_py' in cmds: - _build_py = cmds['build_py'] - elif "setuptools" in sys.modules: - from setuptools.command.build_py import build_py as _build_py - else: - from distutils.command.build_py import build_py as _build_py - - class cmd_build_py(_build_py): - def run(self): - root = get_root() - cfg = get_config_from_root(root) - versions = get_versions() - _build_py.run(self) - # now locate _version.py in the new build/ directory and replace - # it with an updated value - if cfg.versionfile_build: - target_versionfile = os.path.join(self.build_lib, - cfg.versionfile_build) - print("UPDATING %s" % target_versionfile) - write_to_version_file(target_versionfile, versions) - cmds["build_py"] = cmd_build_py - - if "cx_Freeze" in sys.modules: # cx_freeze enabled? - from cx_Freeze.dist import build_exe as _build_exe - # nczeczulin reports that py2exe won't like the pep440-style string - # as FILEVERSION, but it can be used for PRODUCTVERSION, e.g. - # setup(console=[{ - # "version": versioneer.get_version().split("+", 1)[0], # FILEVERSION - # "product_version": versioneer.get_version(), - # ... - - class cmd_build_exe(_build_exe): - def run(self): - root = get_root() - cfg = get_config_from_root(root) - versions = get_versions() - target_versionfile = cfg.versionfile_source - print("UPDATING %s" % target_versionfile) - write_to_version_file(target_versionfile, versions) - - _build_exe.run(self) - os.unlink(target_versionfile) - with open(cfg.versionfile_source, "w") as f: - LONG = LONG_VERSION_PY[cfg.VCS] - f.write(LONG % - {"DOLLAR": "$", - "STYLE": cfg.style, - "TAG_PREFIX": cfg.tag_prefix, - "PARENTDIR_PREFIX": cfg.parentdir_prefix, - "VERSIONFILE_SOURCE": cfg.versionfile_source, - }) - cmds["build_exe"] = cmd_build_exe - del cmds["build_py"] - - if 'py2exe' in sys.modules: # py2exe enabled? - try: - from py2exe.distutils_buildexe import py2exe as _py2exe # py3 - except ImportError: - from py2exe.build_exe import py2exe as _py2exe # py2 - - class cmd_py2exe(_py2exe): - def run(self): - root = get_root() - cfg = get_config_from_root(root) - versions = get_versions() - target_versionfile = cfg.versionfile_source - print("UPDATING %s" % target_versionfile) - write_to_version_file(target_versionfile, versions) - - _py2exe.run(self) - os.unlink(target_versionfile) - with open(cfg.versionfile_source, "w") as f: - LONG = LONG_VERSION_PY[cfg.VCS] - f.write(LONG % - {"DOLLAR": "$", - "STYLE": cfg.style, - "TAG_PREFIX": cfg.tag_prefix, - "PARENTDIR_PREFIX": cfg.parentdir_prefix, - "VERSIONFILE_SOURCE": cfg.versionfile_source, - }) - cmds["py2exe"] = cmd_py2exe - - # we override different "sdist" commands for both environments - if 'sdist' in cmds: - _sdist = cmds['sdist'] - elif "setuptools" in sys.modules: - from setuptools.command.sdist import sdist as _sdist - else: - from distutils.command.sdist import sdist as _sdist - - class cmd_sdist(_sdist): - def run(self): - versions = get_versions() - self._versioneer_generated_versions = versions - # unless we update this, the command will keep using the old - # version - self.distribution.metadata.version = versions["version"] - return _sdist.run(self) - - def make_release_tree(self, base_dir, files): - root = get_root() - cfg = get_config_from_root(root) - _sdist.make_release_tree(self, base_dir, files) - # now locate _version.py in the new base_dir directory - # (remembering that it may be a hardlink) and replace it with an - # updated value - target_versionfile = os.path.join(base_dir, cfg.versionfile_source) - print("UPDATING %s" % target_versionfile) - write_to_version_file(target_versionfile, - self._versioneer_generated_versions) - cmds["sdist"] = cmd_sdist - - return cmds - - -CONFIG_ERROR = """ -setup.cfg is missing the necessary Versioneer configuration. You need -a section like: - - [versioneer] - VCS = git - style = pep440 - versionfile_source = src/myproject/_version.py - versionfile_build = myproject/_version.py - tag_prefix = - parentdir_prefix = myproject- - -You will also need to edit your setup.py to use the results: - - import versioneer - setup(version=versioneer.get_version(), - cmdclass=versioneer.get_cmdclass(), ...) - -Please read the docstring in ./versioneer.py for configuration instructions, -edit setup.cfg, and re-run the installer or 'python versioneer.py setup'. -""" - -SAMPLE_CONFIG = """ -# See the docstring in versioneer.py for instructions. Note that you must -# re-run 'versioneer.py setup' after changing this section, and commit the -# resulting files. - -[versioneer] -#VCS = git -#style = pep440 -#versionfile_source = -#versionfile_build = -#tag_prefix = -#parentdir_prefix = - -""" - -INIT_PY_SNIPPET = """ -from ._version import get_versions -__version__ = get_versions()['version'] -del get_versions -""" - - -def do_setup(): - """Do main VCS-independent setup function for installing Versioneer.""" - root = get_root() - try: - cfg = get_config_from_root(root) - except (EnvironmentError, configparser.NoSectionError, - configparser.NoOptionError) as e: - if isinstance(e, (EnvironmentError, configparser.NoSectionError)): - print("Adding sample versioneer config to setup.cfg", - file=sys.stderr) - with open(os.path.join(root, "setup.cfg"), "a") as f: - f.write(SAMPLE_CONFIG) - print(CONFIG_ERROR, file=sys.stderr) - return 1 - - print(" creating %s" % cfg.versionfile_source) - with open(cfg.versionfile_source, "w") as f: - LONG = LONG_VERSION_PY[cfg.VCS] - f.write(LONG % {"DOLLAR": "$", - "STYLE": cfg.style, - "TAG_PREFIX": cfg.tag_prefix, - "PARENTDIR_PREFIX": cfg.parentdir_prefix, - "VERSIONFILE_SOURCE": cfg.versionfile_source, - }) - - ipy = os.path.join(os.path.dirname(cfg.versionfile_source), - "__init__.py") - if os.path.exists(ipy): - try: - with open(ipy, "r") as f: - old = f.read() - except EnvironmentError: - old = "" - if INIT_PY_SNIPPET not in old: - print(" appending to %s" % ipy) - with open(ipy, "a") as f: - f.write(INIT_PY_SNIPPET) - else: - print(" %s unmodified" % ipy) - else: - print(" %s doesn't exist, ok" % ipy) - ipy = None - - # Make sure both the top-level "versioneer.py" and versionfile_source - # (PKG/_version.py, used by runtime code) are in MANIFEST.in, so - # they'll be copied into source distributions. Pip won't be able to - # install the package without this. - manifest_in = os.path.join(root, "MANIFEST.in") - simple_includes = set() - try: - with open(manifest_in, "r") as f: - for line in f: - if line.startswith("include "): - for include in line.split()[1:]: - simple_includes.add(include) - except EnvironmentError: - pass - # That doesn't cover everything MANIFEST.in can do - # (http://docs.python.org/2/distutils/sourcedist.html#commands), so - # it might give some false negatives. Appending redundant 'include' - # lines is safe, though. - if "versioneer.py" not in simple_includes: - print(" appending 'versioneer.py' to MANIFEST.in") - with open(manifest_in, "a") as f: - f.write("include versioneer.py\n") - else: - print(" 'versioneer.py' already in MANIFEST.in") - if cfg.versionfile_source not in simple_includes: - print(" appending versionfile_source ('%s') to MANIFEST.in" % - cfg.versionfile_source) - with open(manifest_in, "a") as f: - f.write("include %s\n" % cfg.versionfile_source) - else: - print(" versionfile_source already in MANIFEST.in") - - # Make VCS-specific changes. For git, this means creating/changing - # .gitattributes to mark _version.py for export-subst keyword - # substitution. - do_vcs_install(manifest_in, cfg.versionfile_source, ipy) - return 0 - - -def scan_setup_py(): - """Validate the contents of setup.py against Versioneer's expectations.""" - found = set() - setters = False - errors = 0 - with open("setup.py", "r") as f: - for line in f.readlines(): - if "import versioneer" in line: - found.add("import") - if "versioneer.get_cmdclass()" in line: - found.add("cmdclass") - if "versioneer.get_version()" in line: - found.add("get_version") - if "versioneer.VCS" in line: - setters = True - if "versioneer.versionfile_source" in line: - setters = True - if len(found) != 3: - print("") - print("Your setup.py appears to be missing some important items") - print("(but I might be wrong). Please make sure it has something") - print("roughly like the following:") - print("") - print(" import versioneer") - print(" setup( version=versioneer.get_version(),") - print(" cmdclass=versioneer.get_cmdclass(), ...)") - print("") - errors += 1 - if setters: - print("You should remove lines like 'versioneer.VCS = ' and") - print("'versioneer.versionfile_source = ' . This configuration") - print("now lives in setup.cfg, and should be removed from setup.py") - print("") - errors += 1 - return errors - - -if __name__ == "__main__": - cmd = sys.argv[1] - if cmd == "setup": - errors = do_setup() - errors += scan_setup_py() - if errors: - sys.exit(1)