From f886bd66a1a0a9d7c2e0184f6d321b839479c7c1 Mon Sep 17 00:00:00 2001 From: pf Date: Tue, 19 Mar 2024 09:51:05 +0100 Subject: [PATCH] init profil mofa4q --- .gitignore | 20 + LICENSE | 674 + QGIS/QGIS3.ini | 667 + QGIS/QGISCUSTOMIZATION3.ini | 2271 +++ README.md | 56 + changelog.md | 160 + composer_templates/a0_quer.qpt | 1705 ++ composer_templates/a1_quer.qpt | 1736 ++ composer_templates/a2_quer.qpt | 1507 ++ composer_templates/a3_quer.qpt | 1175 ++ composer_templates/a4_hoch.qpt | 1300 ++ composer_templates/a4_quer.qpt | 1122 ++ geopackages/dop/.gitkeep | 0 geopackages/private/.gitkeep | 0 geopackages/public/.gitkeep | 0 geopackages/search/.gitkeep | 0 init/QGIS3.ini | 667 + init/QGISCUSTOMIZATION3.ini | 2271 +++ init/data_structure.png | Bin 0 -> 82113 bytes init/initMoFa4Q.sh | 5 + init/initMoFa4Q_win.bat | 8 + init/profileChange.png | Bin 0 -> 12517 bytes init/python_init_script.py | 26 + init/startMoFa4Q.sh | 4 + mofa4q.qgz | Bin 0 -> 11982 bytes python/expressions/__init__.py | 0 python/plugins/moFa4Q_plugin/__init__.py | 36 + python/plugins/moFa4Q_plugin/annotations.yaml | 0 .../moFa4Q_plugin/components/__init__.py | 0 .../moFa4Q_plugin/components/btn_tool_map.py | 18 + .../components/custom_list_widget.py | 64 + .../components/dialog_for_geom.ui | 327 + .../components/geopackages_dialog.ui | 99 + .../input_dialog_for_text_bubble.ui | 137 + .../moFa4Q_plugin/components/left_panel.ui | 1300 ++ .../components/measure_dialog.ui | 80 + .../moFa4Q_plugin/components/print_dialog.ui | 396 + python/plugins/moFa4Q_plugin/i18n/lng_en.qm | Bin 0 -> 3488 bytes python/plugins/moFa4Q_plugin/i18n/lng_en.ts | 222 + .../plugins/moFa4Q_plugin/icons/area_icon.png | Bin 0 -> 17181 bytes .../moFa4Q_plugin/icons/branch_closed.png | Bin 0 -> 19540 bytes .../moFa4Q_plugin/icons/branch_closed_v1.png | Bin 0 -> 5323 bytes .../moFa4Q_plugin/icons/branch_open.png | Bin 0 -> 18865 bytes .../moFa4Q_plugin/icons/branch_open_v1.png | Bin 0 -> 5125 bytes python/plugins/moFa4Q_plugin/icons/burger.png | Bin 0 -> 4744 bytes .../plugins/moFa4Q_plugin/icons/checkbox.png | Bin 0 -> 8409 bytes .../moFa4Q_plugin/icons/checkbox_dis.png | Bin 0 -> 3572 bytes python/plugins/moFa4Q_plugin/icons/close.png | Bin 0 -> 2105 bytes .../plugins/moFa4Q_plugin/icons/del_geom.png | Bin 0 -> 38491 bytes .../moFa4Q_plugin/icons/del_text_bubble.png | Bin 0 -> 34681 bytes .../moFa4Q_plugin/icons/extent_icon.png | Bin 0 -> 14319 bytes python/plugins/moFa4Q_plugin/icons/folder.png | Bin 0 -> 8800 bytes python/plugins/moFa4Q_plugin/icons/folder.xcf | Bin 0 -> 12998 bytes python/plugins/moFa4Q_plugin/icons/gpkg.png | Bin 0 -> 13401 bytes .../plugins/moFa4Q_plugin/icons/gps_icon.png | Bin 0 -> 17200 bytes .../plugins/moFa4Q_plugin/icons/info_icon.png | Bin 0 -> 8597 bytes .../plugins/moFa4Q_plugin/icons/line_edit.png | Bin 0 -> 18236 bytes .../plugins/moFa4Q_plugin/icons/line_icon.png | Bin 0 -> 39626 bytes .../moFa4Q_plugin/icons/load_indicator.gif | Bin 0 -> 10819 bytes python/plugins/moFa4Q_plugin/icons/logo.png | Bin 0 -> 9333 bytes .../moFa4Q_plugin/icons/minus_icon.png | Bin 0 -> 986 bytes python/plugins/moFa4Q_plugin/icons/mofa4q.ico | Bin 0 -> 121467 bytes .../moFa4Q_plugin/icons/north_arrow.png | Bin 0 -> 1236 bytes .../plugins/moFa4Q_plugin/icons/plus_icon.png | Bin 0 -> 4573 bytes .../moFa4Q_plugin/icons/polygon_edit.png | Bin 0 -> 15574 bytes .../moFa4Q_plugin/icons/print_icon.png | Bin 0 -> 5391 bytes .../moFa4Q_plugin/icons/text_bubble.png | Bin 0 -> 13639 bytes .../plugins/moFa4Q_plugin/macro/__init__.py | 0 python/plugins/moFa4Q_plugin/macro/macro.py | 48 + python/plugins/moFa4Q_plugin/metadata.txt | 39 + python/plugins/moFa4Q_plugin/moFa4Q_plugin.py | 1090 + python/plugins/moFa4Q_plugin/prj_conf.yaml | 0 python/plugins/moFa4Q_plugin/pyproject.toml | 22 + python/plugins/moFa4Q_plugin/resources.py | 16361 ++++++++++++++++ python/plugins/moFa4Q_plugin/resources.qrc | 23 + .../plugins/moFa4Q_plugin/utils/__init__.py | 0 .../moFa4Q_plugin/utils/address_search.py | 7 + .../utils/annotations/__init__.py | 0 .../utils/annotations/annotations.py | 576 + .../custom_bubble_text_annotation.py | 10 + .../custom_point_text_annotation.py | 12 + .../utils/annotations/dialog_for_geom.py | 125 + .../annotations/dialog_for_text_bubble.py | 89 + .../utils/annotations/emit_del_point.py | 23 + .../utils/annotations/geom_emit_points.py | 71 + .../annotations/text_bubble_emit_point.py | 33 + .../moFa4Q_plugin/utils/gpkg_metadata.py | 46 + .../plugins/moFa4Q_plugin/utils/gpkg_popup.py | 95 + python/plugins/moFa4Q_plugin/utils/gps.py | 107 + .../moFa4Q_plugin/utils/installed_program.py | 61 + .../moFa4Q_plugin/utils/layer_trees.py | 527 + .../moFa4Q_plugin/utils/measure_tool.py | 322 + .../plugins/moFa4Q_plugin/utils/obj_search.py | 16 + python/plugins/moFa4Q_plugin/utils/print.py | 332 + .../moFa4Q_plugin/utils/qgis_initalize.py | 70 + .../moFa4Q_plugin/utils/rect_select.py | 151 + python/plugins/moFa4Q_plugin/utils/search.py | 152 + .../moFa4Q_plugin/utils/select_dialog.py | 70 + python/plugins/moFa4Q_plugin/utils/tr.py | 15 + python/plugins/plugin_reloader/CHANGELOG | 83 + python/plugins/plugin_reloader/Makefile | 24 + python/plugins/plugin_reloader/__init__.py | 20 + .../plugin_reloader/configurereloaderbase.ui | 233 + .../plugin_reloader/i18n/plugin_reloader.pro | 6 + .../i18n/plugin_reloader_de.qm | Bin 0 -> 4031 bytes .../i18n/plugin_reloader_de.ts | 102 + .../i18n/plugin_reloader_fr.qm | Bin 0 -> 4025 bytes .../i18n/plugin_reloader_fr.ts | 87 + .../i18n/plugin_reloader_it.qm | Bin 0 -> 3919 bytes .../i18n/plugin_reloader_it.ts | 87 + .../i18n/plugin_reloader_pl.qm | Bin 0 -> 3689 bytes .../i18n/plugin_reloader_pl.ts | 86 + python/plugins/plugin_reloader/metadata.txt | 40 + .../plugins/plugin_reloader/reload-conf.png | Bin 0 -> 2405 bytes python/plugins/plugin_reloader/reload.png | Bin 0 -> 5322 bytes .../plugin_reloader/reloader_plugin.py | 307 + qgis-auth.db | Bin 0 -> 45056 bytes qgis.db | Bin 0 -> 20480 bytes splash.png | Bin 0 -> 38907 bytes symbology-style.db | Bin 0 -> 446464 bytes 120 files changed, 39621 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 QGIS/QGIS3.ini create mode 100644 QGIS/QGISCUSTOMIZATION3.ini create mode 100644 README.md create mode 100644 changelog.md create mode 100644 composer_templates/a0_quer.qpt create mode 100644 composer_templates/a1_quer.qpt create mode 100644 composer_templates/a2_quer.qpt create mode 100644 composer_templates/a3_quer.qpt create mode 100644 composer_templates/a4_hoch.qpt create mode 100644 composer_templates/a4_quer.qpt create mode 100644 geopackages/dop/.gitkeep create mode 100644 geopackages/private/.gitkeep create mode 100644 geopackages/public/.gitkeep create mode 100644 geopackages/search/.gitkeep create mode 100644 init/QGIS3.ini create mode 100644 init/QGISCUSTOMIZATION3.ini create mode 100644 init/data_structure.png create mode 100644 init/initMoFa4Q.sh create mode 100644 init/initMoFa4Q_win.bat create mode 100644 init/profileChange.png create mode 100644 init/python_init_script.py create mode 100644 init/startMoFa4Q.sh create mode 100644 mofa4q.qgz create mode 100644 python/expressions/__init__.py create mode 100644 python/plugins/moFa4Q_plugin/__init__.py create mode 100644 python/plugins/moFa4Q_plugin/annotations.yaml create mode 100644 python/plugins/moFa4Q_plugin/components/__init__.py create mode 100644 python/plugins/moFa4Q_plugin/components/btn_tool_map.py create mode 100644 python/plugins/moFa4Q_plugin/components/custom_list_widget.py create mode 100644 python/plugins/moFa4Q_plugin/components/dialog_for_geom.ui create mode 100644 python/plugins/moFa4Q_plugin/components/geopackages_dialog.ui create mode 100644 python/plugins/moFa4Q_plugin/components/input_dialog_for_text_bubble.ui create mode 100644 python/plugins/moFa4Q_plugin/components/left_panel.ui create mode 100644 python/plugins/moFa4Q_plugin/components/measure_dialog.ui create mode 100644 python/plugins/moFa4Q_plugin/components/print_dialog.ui create mode 100644 python/plugins/moFa4Q_plugin/i18n/lng_en.qm create mode 100644 python/plugins/moFa4Q_plugin/i18n/lng_en.ts create mode 100644 python/plugins/moFa4Q_plugin/icons/area_icon.png create mode 100644 python/plugins/moFa4Q_plugin/icons/branch_closed.png create mode 100644 python/plugins/moFa4Q_plugin/icons/branch_closed_v1.png create mode 100644 python/plugins/moFa4Q_plugin/icons/branch_open.png create mode 100644 python/plugins/moFa4Q_plugin/icons/branch_open_v1.png create mode 100644 python/plugins/moFa4Q_plugin/icons/burger.png create mode 100644 python/plugins/moFa4Q_plugin/icons/checkbox.png create mode 100644 python/plugins/moFa4Q_plugin/icons/checkbox_dis.png create mode 100644 python/plugins/moFa4Q_plugin/icons/close.png create mode 100644 python/plugins/moFa4Q_plugin/icons/del_geom.png create mode 100644 python/plugins/moFa4Q_plugin/icons/del_text_bubble.png create mode 100644 python/plugins/moFa4Q_plugin/icons/extent_icon.png create mode 100644 python/plugins/moFa4Q_plugin/icons/folder.png create mode 100644 python/plugins/moFa4Q_plugin/icons/folder.xcf create mode 100644 python/plugins/moFa4Q_plugin/icons/gpkg.png create mode 100644 python/plugins/moFa4Q_plugin/icons/gps_icon.png create mode 100644 python/plugins/moFa4Q_plugin/icons/info_icon.png create mode 100644 python/plugins/moFa4Q_plugin/icons/line_edit.png create mode 100644 python/plugins/moFa4Q_plugin/icons/line_icon.png create mode 100644 python/plugins/moFa4Q_plugin/icons/load_indicator.gif create mode 100644 python/plugins/moFa4Q_plugin/icons/logo.png create mode 100644 python/plugins/moFa4Q_plugin/icons/minus_icon.png create mode 100644 python/plugins/moFa4Q_plugin/icons/mofa4q.ico create mode 100644 python/plugins/moFa4Q_plugin/icons/north_arrow.png create mode 100644 python/plugins/moFa4Q_plugin/icons/plus_icon.png create mode 100644 python/plugins/moFa4Q_plugin/icons/polygon_edit.png create mode 100644 python/plugins/moFa4Q_plugin/icons/print_icon.png create mode 100644 python/plugins/moFa4Q_plugin/icons/text_bubble.png create mode 100644 python/plugins/moFa4Q_plugin/macro/__init__.py create mode 100644 python/plugins/moFa4Q_plugin/macro/macro.py create mode 100644 python/plugins/moFa4Q_plugin/metadata.txt create mode 100644 python/plugins/moFa4Q_plugin/moFa4Q_plugin.py create mode 100644 python/plugins/moFa4Q_plugin/prj_conf.yaml create mode 100644 python/plugins/moFa4Q_plugin/pyproject.toml create mode 100644 python/plugins/moFa4Q_plugin/resources.py create mode 100644 python/plugins/moFa4Q_plugin/resources.qrc create mode 100644 python/plugins/moFa4Q_plugin/utils/__init__.py create mode 100644 python/plugins/moFa4Q_plugin/utils/address_search.py create mode 100644 python/plugins/moFa4Q_plugin/utils/annotations/__init__.py create mode 100644 python/plugins/moFa4Q_plugin/utils/annotations/annotations.py create mode 100644 python/plugins/moFa4Q_plugin/utils/annotations/custom_bubble_text_annotation.py create mode 100644 python/plugins/moFa4Q_plugin/utils/annotations/custom_point_text_annotation.py create mode 100644 python/plugins/moFa4Q_plugin/utils/annotations/dialog_for_geom.py create mode 100644 python/plugins/moFa4Q_plugin/utils/annotations/dialog_for_text_bubble.py create mode 100644 python/plugins/moFa4Q_plugin/utils/annotations/emit_del_point.py create mode 100644 python/plugins/moFa4Q_plugin/utils/annotations/geom_emit_points.py create mode 100644 python/plugins/moFa4Q_plugin/utils/annotations/text_bubble_emit_point.py create mode 100644 python/plugins/moFa4Q_plugin/utils/gpkg_metadata.py create mode 100644 python/plugins/moFa4Q_plugin/utils/gpkg_popup.py create mode 100644 python/plugins/moFa4Q_plugin/utils/gps.py create mode 100644 python/plugins/moFa4Q_plugin/utils/installed_program.py create mode 100644 python/plugins/moFa4Q_plugin/utils/layer_trees.py create mode 100644 python/plugins/moFa4Q_plugin/utils/measure_tool.py create mode 100644 python/plugins/moFa4Q_plugin/utils/obj_search.py create mode 100644 python/plugins/moFa4Q_plugin/utils/print.py create mode 100644 python/plugins/moFa4Q_plugin/utils/qgis_initalize.py create mode 100644 python/plugins/moFa4Q_plugin/utils/rect_select.py create mode 100644 python/plugins/moFa4Q_plugin/utils/search.py create mode 100644 python/plugins/moFa4Q_plugin/utils/select_dialog.py create mode 100644 python/plugins/moFa4Q_plugin/utils/tr.py create mode 100644 python/plugins/plugin_reloader/CHANGELOG create mode 100644 python/plugins/plugin_reloader/Makefile create mode 100644 python/plugins/plugin_reloader/__init__.py create mode 100644 python/plugins/plugin_reloader/configurereloaderbase.ui create mode 100644 python/plugins/plugin_reloader/i18n/plugin_reloader.pro create mode 100644 python/plugins/plugin_reloader/i18n/plugin_reloader_de.qm create mode 100644 python/plugins/plugin_reloader/i18n/plugin_reloader_de.ts create mode 100644 python/plugins/plugin_reloader/i18n/plugin_reloader_fr.qm create mode 100644 python/plugins/plugin_reloader/i18n/plugin_reloader_fr.ts create mode 100644 python/plugins/plugin_reloader/i18n/plugin_reloader_it.qm create mode 100644 python/plugins/plugin_reloader/i18n/plugin_reloader_it.ts create mode 100644 python/plugins/plugin_reloader/i18n/plugin_reloader_pl.qm create mode 100644 python/plugins/plugin_reloader/i18n/plugin_reloader_pl.ts create mode 100644 python/plugins/plugin_reloader/metadata.txt create mode 100644 python/plugins/plugin_reloader/reload-conf.png create mode 100644 python/plugins/plugin_reloader/reload.png create mode 100644 python/plugins/plugin_reloader/reloader_plugin.py create mode 100644 qgis-auth.db create mode 100644 qgis.db create mode 100644 splash.png create mode 100644 symbology-style.db diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..60bf766 --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +__pycache__/ +console_history.txt +*.d +previewImages/* +*.pyc +cache +mofa4q*.qgs~ +geopackages/*.* +geopackages/public/*.* +geopackages/public/backup/ +geopackages/private/*.* +geopackages/private/backup/ +geopackages/dop/*.* +geopackages/search/*.* +/.idea/* +/.vscode/* +/bookmarks.xml +/mofa4q_attachments.zip +/user-history.db + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..6728999 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 2024 Robert Klemm + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) 2024 Robert Klemm + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/QGIS/QGIS3.ini b/QGIS/QGIS3.ini new file mode 100644 index 0000000..08d272c --- /dev/null +++ b/QGIS/QGIS3.ini @@ -0,0 +1,667 @@ +[Cad] +AngleShowInFloater=true +DistanceShowInFloater=true +Floater=false +MCoordinateShowInFloater=true +XCoordinateShowInFloater=true +YCoordinateShowInFloater=true +ZCoordinateShowInFloater=true + +[Map] +highlight\buffer=0.5 +highlight\color=#ff0000 +highlight\colorAlpha=128 +highlight\minWidth=1 +logCanvasRefreshEvent=false +scales="1:1000000,1:500000,1:250000,1:100000,1:50000,1:25000,1:10000,1:5000,1:2500,1:1000,1:500" +searchRadiusMM=2 +default_scales=1:1000000, 1:500000, 1:250000, 1:100000, 1:50000, 1:25000, 1:10000, 1:5000, 1:2500, 1:1000, 1:500 + +[Plugin-GPS] +devices\deviceList=@Invalid() + +[PluginReloader] +plugin=moFa4Q_plugin + +[Plugins] +libtopolplugin=false +searchPathsForPlugins=@Invalid() + +[Processing] +Configuration\ACTIVATE_GDAL=true +Configuration\ACTIVATE_GRASS7=true +Configuration\ACTIVATE_SAGA=true +Configuration\DefaultOutputRasterLayerExt=-1 +Configuration\DefaultOutputVectorLayerExt=-1 +Configuration\FILTER_INVALID_GEOMETRIES=2 +Configuration\GRASS7_LOG_COMMANDS=false +Configuration\GRASS7_LOG_CONSOLE=false +Configuration\GRASS_HELP_PATH=/usr/share/doc/grass-doc/html +Configuration\GRASS_USE_VEXTERNAL=false +Configuration\KEEP_DIALOG_OPEN=true +Configuration\MODELS_FOLDER=%PROFILE_FOLDER%/processing/models +Configuration\OUTPUTS_FOLDER=%PROFILE_FOLDER%/processing/outputs +Configuration\POST_EXECUTION_SCRIPT= +Configuration\PREFER_FILENAME_AS_LAYER_NAME=true +Configuration\PRE_EXECUTION_SCRIPT= +Configuration\RASTER_STYLE= +Configuration\SAGA_IMPORT_EXPORT_OPTIMIZATION=false +Configuration\SAGA_LOG_COMMANDS=true +Configuration\SAGA_LOG_CONSOLE=true +Configuration\SCRIPTS_FOLDERS=%PROFILE_FOLDER%/processing/scripts +Configuration\SHOW_ALGORITHMS_KNOWN_ISSUES=false +Configuration\SHOW_CRS_DEF=true +Configuration\SHOW_PROVIDERS_TOOLTIP=true +Configuration\TEMP_PATH2= +Configuration\USE_FILENAME_AS_LAYER_NAME=false +Configuration\VECTOR_LINE_STYLE= +Configuration\VECTOR_POINT_STYLE= +Configuration\VECTOR_POLYGON_STYLE= +Configuration\WARN_UNMATCHING_CRS=true +hasPortedOldLog=true +Configuration\MAX_THREADS= +Configuration\RESULTS_GROUP_NAME= +Configuration\VECTOR_FEATURE_COUNT=false +Configuration\GRASS_HELP_URL= +Configuration\GRASS_USE_REXTERNAL=false + +[Projections] +defaultBehavior=prompt +layerDefaultCrs=EPSG:4326 +projectDefaultCrs=EPSG:4326 +showDatumTransformDialog=false + +[PythonPlugins] +GdalTools=true +MetaSearch=true +db_manager=true +grassprovider=true +moFa4Q_plugin=true +plugin_reloader=true +plus_mops=false +processing=true + +[QgsCollapsibleGroupBox] +QgsCustomProjectionDialogBase\groupBox\collapsed=false +QgsCustomProjectionDialogBase\groupBox_2\collapsed=true +QgsOptionsBase\groupBox\collapsed=false +QgsOptionsBase\groupBox_10\collapsed=false +QgsOptionsBase\groupBox_11\collapsed=false +QgsOptionsBase\groupBox_12\collapsed=false +QgsOptionsBase\groupBox_14\collapsed=false +QgsOptionsBase\groupBox_15\collapsed=false +QgsOptionsBase\groupBox_18\collapsed=false +QgsOptionsBase\groupBox_19\collapsed=false +QgsOptionsBase\groupBox_2\collapsed=false +QgsOptionsBase\groupBox_21\collapsed=false +QgsOptionsBase\groupBox_22\collapsed=false +QgsOptionsBase\groupBox_23\collapsed=false +QgsOptionsBase\groupBox_24\collapsed=false +QgsOptionsBase\groupBox_27\collapsed=false +QgsOptionsBase\groupBox_28\collapsed=false +QgsOptionsBase\groupBox_29\collapsed=false +QgsOptionsBase\groupBox_3\collapsed=false +QgsOptionsBase\groupBox_4\collapsed=false +QgsOptionsBase\groupBox_5\collapsed=false +QgsOptionsBase\groupBox_6\collapsed=false +QgsOptionsBase\groupBox_7\collapsed=false +QgsOptionsBase\groupBox_8\collapsed=false +QgsOptionsBase\groupBox_9\collapsed=false +QgsOptionsBase\grpLocale\collapsed=false +QgsOptionsBase\grpProjectionBehavior\collapsed=false +QgsOptionsBase\grpProxy\collapsed=false +QgsOptionsBase\mCurrentVariablesGrpBx\collapsed=false +QgsOptionsBase\mDefaultDatumTransformGroupBox\collapsed=false +QgsOptionsBase\mEnterAttributeValuesGroupBox\collapsed=false +QgsOptionsBase\mEnvironmentGrpBx\collapsed=false +QgsOptionsBase\mIdentifyGroupBox\collapsed=false +QgsOptionsBase\mLegendGrpBx\collapsed=false +QgsOptionsBase\mQSettingsGrpBx\collapsed=false +QgsOptionsBase\mRubberBandGroupBox\collapsed=false +QgsOptionsBase\mSegmentationGroupBox\collapsed=false +QgsOptionsBase\mSimplifyDrawingGroupBox\collapsed=false +QgsOptionsBase\mSnappingGroupBox\collapsed=false +QgsOptionsBase\mVertexMarkerGroupBox\collapsed=false +QgsProjectPropertiesBase\mDatumTransformGroupBox\collapsed=false +QgsRasterLayerPropertiesBase\mBandRenderingGrpBx\collapsed=false +QgsRasterLayerPropertiesBase\mColorRenderingGrpBox\collapsed=false +QgsRasterLayerPropertiesBase\mMetaAttributionGrpBx\collapsed=false +QgsRasterLayerPropertiesBase\mMetaDescriptionGrpBx\collapsed=false +QgsRasterLayerPropertiesBase\mMetaLegendGrpBx\collapsed=false +QgsRasterLayerPropertiesBase\mMetaMetaUrlGrpBx\collapsed=false +QgsRasterLayerPropertiesBase\mResamplingGroupBox\checked=false +QgsRasterLayerPropertiesBase\mResamplingGroupBox\collapsed=false +QgsRasterLayerPropertiesBase\mWMSPrintGroupBox\collapsed=false +QgsOptionsBase\groupBox_32\collapsed=false +QgsOptionsBase\mCoordinateDisplayGroup\collapsed=false +QgsOptionsBase\mMeasureToolCopySettingsGroupBox\collapsed=false +QgsOptionsBase\mMeasureToolGroupBox\collapsed=false +QgsOptionsBase\mPredefinedScalesGroupBox\collapsed=false +QgsOptionsBase\mZoomingGroupBox\collapsed=false + +[QgsVariableEditorTree] +globalOptions\column0width=125 +projectProperties\column0width=100 + +[Raster] +cumulativeCutLower=0.02 +cumulativeCutUpper=0.98 +defaultBlueBand=3 +defaultContrastEnhancementAlgorithm\multiBandMultiByte=StretchToMinimumMaximum +defaultContrastEnhancementAlgorithm\multiBandSingleByte=NoEnhancement +defaultContrastEnhancementAlgorithm\singleBand=StretchToMinimumMaximum +defaultContrastEnhancementLimits\multiBandMultiByte=CumulativeCut +defaultContrastEnhancementLimits\multiBandSingleByte=MinMax +defaultContrastEnhancementLimits\singleBand=MinMax +defaultGreenBand=2 +defaultRedBand=1 +defaultStandardDeviation=2 +default-oversampling=2 +default-early-resampling=false +defaultZoomedInResampling=nearest neighbour +defaultZoomedOutResampling=nearest neighbour + +[UI] +Customization\enabled=true +UITheme=default +annotationTool=0 +geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\a\x7f\xff\xff\xff\xf8\0\0\xf\0\0\0\x4\b\0\0\b3\0\0\x1)\0\0\f<\0\0\x3Y\0\0\0\x1\x2\0\0\0\a\x80\0\0\a\x80\0\0\0\x17\0\0\xe\xff\0\0\x4\a) +lastCustomizationDir=%PROFILE_FOLDER%/ +lastFileNameWidgetDir= +lastProjectDir=%PROFILE_FOLDER%/ +recentProjections=3452 +recentProjectionsAuthId=EPSG:4326 +recentProjectionsProj4="+proj=longlat +datum=WGS84 +no_defs" +recentProjects\1\crs=EPSG:25832 +recentProjects\1\path=%PROFILE_FOLDER%/mofa4q.qgz +recentProjects\1\pin=false +recentProjects\1\previewImage=%PROFILE_FOLDER%//previewImages/846e98397e4081c585470dea1afb13ae.png +recentProjects\1\title=mofa4q +state="@ByteArray(\0\0\0\xff\0\0\0\0\xfd\0\0\0\x4\0\0\0\0\0\0\x1\xae\0\0\x4\x6\xfc\x2\0\0\0\x15\xfb\0\0\0\f\0L\0\x61\0y\0\x65\0r\0s\x1\0\0\0\x16\0\0\0\x89\0\0\0\0\0\0\0\0\xfc\0\0\0\xa5\0\0\x2\xcd\0\0\0\0\0\xff\xff\xff\xfa\0\0\0\0\x1\0\0\0\x4\xfb\0\0\0\f\0L\0\x65\0g\0\x65\0n\0\x64\x1\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\x14\0L\0\x61\0y\0\x65\0r\0O\0r\0\x64\0\x65\0r\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\xe\0L\0\x61\0y\0\x65\0r\0s\0\x32\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\f\0L\0\x61\0y\0\x65\0r\0s\x1\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\f\0L\0\x61\0y\0\x65\0r\0s\0\0\0\0Q\0\0\0x\0\0\0\0\0\0\0\0\xfb\0\0\0\xe\0\x42\0r\0o\0w\0s\0\x65\0r\0\0\0\x1\x45\0\0\x2-\0\0\0\0\0\0\0\0\xfb\0\0\0\x10\0O\0v\0\x65\0r\0v\0i\0\x65\0w\0\0\0\x1\xd7\0\0\0\xc4\0\0\0\0\0\0\0\0\xfb\0\0\0\"\0\x43\0o\0o\0r\0\x64\0i\0n\0\x61\0t\0\x65\0\x43\0\x61\0p\0t\0u\0r\0\x65\0\0\0\x1~\0\0\0\xa0\0\0\0\0\0\0\0\0\xfb\0\0\0\b\0U\0n\0\x64\0o\0\0\0\x1\xe4\0\0\0\xdc\0\0\0\0\0\0\0\0\xfb\0\0\0\x10\0\x42\0r\0o\0w\0s\0\x65\0r\0\x32\0\0\0\x2\x13\0\0\0\xad\0\0\0\0\0\0\0\0\xfb\0\0\0\x1c\0G\0P\0S\0I\0n\0\x66\0o\0r\0m\0\x61\0t\0i\0o\0n\0\0\0\x1\xbb\0\0\x1\x5\0\0\0\0\0\0\0\0\xfb\0\0\0(\0\x64\0w\0O\0p\0\x65\0n\0l\0\x61\0y\0\x65\0r\0s\0O\0v\0\x65\0r\0v\0i\0\x65\0w\0\0\0\x1\x64\0\0\x1\x37\0\0\0\0\0\0\0\0\xfb\0\0\0\x1c\0u\0n\0\x64\0o\0/\0r\0\x65\0\x64\0o\0 \0\x64\0o\0\x63\0k\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0.\0\x41\0\x64\0v\0\x61\0n\0\x63\0\x65\0\x64\0\x44\0i\0g\0i\0t\0i\0z\0i\0n\0g\0T\0o\0o\0l\0s\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\x34\0S\0t\0\x61\0t\0i\0s\0t\0\x61\0l\0S\0u\0m\0m\0\x61\0r\0y\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0&\0\x42\0o\0o\0k\0m\0\x61\0r\0k\0s\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\x38\0S\0t\0\x61\0t\0i\0s\0t\0i\0\x63\0\x61\0l\0S\0u\0m\0m\0\x61\0r\0y\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\x14\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\0\0\0\x2\xe0\0\0\x1\x1d\0\0\0\0\0\0\0\0\xfb\0\0\0\xe\0L\0\x61\0y\0\x65\0r\0s\0\x32\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\f\0L\0\x61\0y\0\x65\0r\0s\x1\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\x14\0\x41\0l\0l\0\x42\0u\0t\0t\0o\0n\0s\x1\0\0\0\x16\0\0\0R\0\0\0\0\0\0\0\0\xfb\0\0\0\x18\0\x43\0u\0s\0t\0o\0m\0L\0\x61\0y\0\x65\0r\0s\x1\0\0\0n\0\0\x3\xae\0\0\0\0\0\0\0\0\xfb\0\0\0\x18\0V\0\x65\0r\0t\0\x65\0x\0\x45\0\x64\0i\0t\0o\0r\0\0\0\0\0\xff\xff\xff\xff\0\0\0]\0\xff\xff\xff\0\0\0\x1\0\0\x1\xc6\0\0\x3\xb0\xfc\x2\0\0\0\x10\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x19\0\0\x3\xb0\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0=\0\0\x3\x82\0\0\0\0\0\0\0\0\xfb\0\0\0\x1e\0S\0\x65\0x\0t\0\x61\0n\0t\0\x65\0T\0o\0o\0l\0\x62\0o\0x\0\0\0\0g\0\0\x2\x34\0\0\0\0\0\0\0\0\xfc\0\0\0\x64\0\0\x2\x33\0\0\0\0\0\xff\xff\xff\xfa\0\0\0\0\x1\0\0\0\x2\xfb\0\0\0\x18\0L\0\x61\0y\0\x65\0r\0S\0t\0y\0l\0i\0n\0g\0\0\0\x3\xd6\0\0\x1*\0\0\0\0\0\0\0\0\xfb\0\0\0\"\0P\0r\0o\0\x63\0\x65\0s\0s\0i\0n\0g\0T\0o\0o\0l\0\x62\0o\0x\0\0\0\0\0\xff\xff\xff\xff\0\0\0\x46\0\xff\xff\xff\xfb\0\0\0\x14\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\x10\0\x44\0\x65\0v\0T\0o\0o\0l\0s\0\0\0\0\0\xff\xff\xff\xff\0\0\0]\0\xff\xff\xff\xfb\0\0\0\x1a\0R\0\x65\0s\0u\0l\0t\0s\0V\0i\0\x65\0w\0\x65\0r\0\0\0\0\0\xff\xff\xff\xff\0\0\x1\x1d\0\xff\xff\xff\xfb\0\0\0 \0t\0h\0\x65\0T\0i\0l\0\x65\0S\0\x63\0\x61\0l\0\x65\0\x44\0o\0\x63\0k\0\0\0\0\0\xff\xff\xff\xff\0\0\0y\0\xff\xff\xff\0\0\0\x2\0\0\0\0\0\0\0\0\xfc\x1\0\0\0\x1\xfb\0\0\0&\0T\0\x65\0m\0p\0o\0r\0\x61\0l\0 \0\x43\0o\0n\0t\0r\0o\0l\0l\0\x65\0r\0\0\0\0\0\xff\xff\xff\xff\0\0\x2S\0\xff\xff\xff\0\0\0\x3\0\0\a\x80\0\0\x1\x65\xfc\x1\0\0\0\x3\xfb\0\0\0\x14\0M\0\x65\0s\0s\0\x61\0g\0\x65\0L\0o\0g\0\0\0\x1T\0\0\x3\xac\0\0\0\0\0\0\0\0\xfb\0\0\0&\0U\0s\0\x65\0r\0I\0n\0p\0u\0t\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\x2\0\0\0\0\0\0\0\0\0\0\0\xc8\0\0\0\x64\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\x1l\0\0\x6\x14\0\0\0\0\0\0\0\0\0\0\a\x80\0\0\x3\xc3\0\0\0\x1\0\0\0\x2\0\0\0\x1\0\0\0\x2\xfc\0\0\0\x2\0\0\0\x1\0\0\0\0\0\0\0\x2\0\0\0\x1\0\0\0&\0m\0\x41\0n\0n\0o\0t\0\x61\0t\0i\0o\0n\0s\0T\0o\0o\0l\0\x42\0\x61\0r\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0)" + +[Windows] +AttributeDialog\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\n\xa8\0\0\x1\x62\0\0\v\xc3\0\0\x2\x86\0\0\n\xa9\0\0\x1\x84\0\0\v\xc2\0\0\x2\x85\0\0\0\0\0\0\0\0\a\x80\0\0\n\xa9\0\0\x1\x84\0\0\v\xc2\0\0\x2\x85) +Bookmarks\headerstate=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\t\x1\0\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\x3 \0\0\0\t\x1\x1\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\t\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64) +Bookmarks\headerstateV2=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x3\x9d\0\0\0\t\x1\x1\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\t\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0}\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64) +BookmarksDockWidget\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\a\x80\0\0\0\x1c\0\0\t)\0\0\x1\x8c\0\0\a\x81\0\0\0>\0\0\t(\0\0\x1\x8b\0\0\0\0\0\0\0\0\a\x80\0\0\a\x81\0\0\0>\0\0\t(\0\0\x1\x8b) +DatumTransformDialog\columnWidths\0=241 +DatumTransformDialog\columnWidths\1=119 +DatumTransformDialog\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\0\0\0\0\0\x1c\0\0\x2k\0\0\x2\x5\0\0\0\0\0\0\0\x1c\0\0\x2k\0\0\x2\x5\0\0\0\0\0\0\0\0\a\x80) +DatumTransformDialog\hideDeprecated=false +MessageViewer\geometry="@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\n<\0\0\x1Y\0\0\xe\t\0\0\x2\x90\0\0\n=\0\0\x1u\0\0\xe\b\0\0\x2\x8f\0\0\0\x2\0\0\0\0\a\x80)" +Options\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x1\x81\0\0\0?\0\0\x5\x87\0\0\x3\xcc\0\0\x1\x82\0\0\0^\0\0\x5\x86\0\0\x3\xcb\0\0\0\0\0\0\0\0\a\x80\0\0\x1\x82\0\0\0^\0\0\x5\x86\0\0\x3\xcb) +Options\splitState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\x96\0\0\x2H\0\xff\xff\xff\xff\x1\0\0\0\x1\0) +Options\tab=21 +PluginManager\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x4\x16\0\0\0\x1c\0\0\a\x7f\0\0\x1\xf2\0\0\x4\x16\0\0\0\x1c\0\0\a\x7f\0\0\x1\xf2\0\0\0\0\0\0\0\0\a\x80\0\0\x4\x16\0\0\0\x1c\0\0\a\x7f\0\0\x1\xf2) +PluginManager\option=1 +PluginManager\secondSplitterState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xc8\0\0\x1\xb2\0\xff\xff\xff\xff\x1\0\0\0\x1\0) +PluginManager\splitState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\x8c\0\0\x2\x83\0\0\0\0\a\x1\0\0\0\x1\x1) +PluginManager\tab=0 +ProjectProperties\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\t\x89\0\0\0G\0\0\f\xe3\0\0\x3\xa1\0\0\t\x8a\0\0\0\x63\0\0\f\xe2\0\0\x3\xa0\0\0\0\x2\0\0\0\0\a\x80) +ProjectProperties\splitState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\x96\0\0\x2\x63\0\xff\xff\xff\xff\x1\0\0\0\x1\0) +ProjectProperties\tab=2 +QWidget\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\0\0\0\0\0\0\0\0\0\x63\0\0\0\x1d\0\0\0\0\0\0\0\0\0\0\0\x63\0\0\0\x1d\0\0\0\0\0\0\0\0\a\x80) +QgsCustomProjectionDialogBase\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\n&\0\0\0\xa1\0\0\fE\0\0\x3G\0\0\n'\0\0\0\xbd\0\0\fD\0\0\x3\x46\0\0\0\x2\0\0\0\0\a\x80) +QgsCustomizationDialogBase\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\0\0\0\0\0\0\0\0\x3\x9a\0\0\x3+\0\0\0\x1\0\0\0\x1c\0\0\x3\x99\0\0\x3*\0\0\0\0\0\0\0\0\a\x80) +QgsMessageViewer\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\t`\0\0\x1V\0\0\xe\x9f\0\0\x3\x82\0\0\ta\0\0\x1x\0\0\xe\x9e\0\0\x3\x81\0\0\0\0\0\0\0\0\a\x80\0\0\ta\0\0\x1x\0\0\xe\x9e\0\0\x3\x81) +QgsPluginInstallerFetchingDialogBase\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\n\x1c\xff\xff\xff\xfa\0\0\f&\0\0\x1h\0\0\n\x1d\0\0\0\x1c\0\0\f%\0\0\x1g\0\0\0\0\0\0\0\0\a\x80\0\0\n\x1d\0\0\0\x1c\0\0\f%\0\0\x1g) +RasterLayerProperties\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\t\x9e\0\0\0\x62\0\0\f\xce\0\0\x3\x87\0\0\t\x9f\0\0\0~\0\0\f\xcd\0\0\x3\x86\0\0\0\x2\0\0\0\0\a\x80) +RasterLayerProperties\splitState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\x96\0\0\x2\x63\0\xff\xff\xff\xff\x1\0\0\0\x1\0) +RasterLayerProperties\tab=7 +SnappingWidget\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x3\x41\0\0\0\x14\0\0\a\x7f\0\0\0?\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\a\x80\0\0\x3\x41\0\0\0\x14\0\0\a\x7f\0\0\0?) +StyleV2Manager\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\t\xcd\0\0\x1\x19\0\0\f\x9e\0\0\x2\xcf\0\0\t\xce\0\0\x1\x35\0\0\f\x9d\0\0\x2\xce\0\0\0\x2\0\0\0\0\a\x80) +StyleV2Manager\splitter=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xd6\0\0\x2\x1c\0\0\0\0\x3\x1\0\0\0\x1\0) +CodeEditorOptions\splitterState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\x93\0\0\0S\x1\xff\xff\xff\xff\x1\0\0\0\x2\0) +DatumTransformTable\headerState=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1\xc1\0\0\0\x4\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x84\0\0\0\0\0\0\0\x4\0\0\0J\0\0\0\x1\0\0\0\0\0\0\0}\0\0\0\x1\0\0\0\0\0\0\0}\0\0\0\x1\0\0\0\0\0\0\0}\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\0) + +[app] +Windows\WelcomePage\SplitState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xce\0\0\0\xbe\x1\xff\xff\xff\xff\x1\0\0\0\x1\0) +news-feed\items\httpsfeedqgisorg\entries\items\49\content="

A message of peace from the QGIS Community: We, the developers, contributors and community members of the QGIS Project view the ongoing world events in Ukraine and other conflict areas around the world with great sadness. Our aim in developing QGIS has always been to provide a powerful tool to support the creation of a just and humane society. We want to enable a world where every person has a voice, the ability to express, and be secure in, their tenure in their homes, villages, towns, cities and countries. We hope tools like QGIS are used to the benefit of all citizens on earth, to support a sustainable environment, an orderly society and, in particular, to establish and preserve sovereign dignity, security and freedom from oppression.

\r\n

We ask the leaders of the world to resolve their disputes peacefully, through negotiation and compromise, humility and deference to the citizens who are placed in your care. To the members of the QGIS Community that are caught up in this conflict, our thoughts and support are with you, and we hope that you and your families are safe and that this conflict comes to a speedy end.

" +news-feed\items\httpsfeedqgisorg\entries\items\49\image-url=https://feed.qgis.org/media/feedimages/2022/02/25/Flag_of_Ukraine.jpg +news-feed\items\httpsfeedqgisorg\entries\items\49\link=https://www.qgis.org/en/site/getinvolved/governance/codeofconduct/codeofconduct.html +news-feed\items\httpsfeedqgisorg\entries\items\49\sticky=false +news-feed\items\httpsfeedqgisorg\entries\items\49\title=QGIS for Peace +news-feed\items\httpsfeedqgisorg\last-fetch-time=1706102377 +plugin_installer\checkOnStart=false +plugin_installer\checkOnStartInterval=0 +plugin_installer\checkOnStartLastDate=@Variant(\0\0\0\xe\0%\x84&) +plugin_installer\seen_plugins=db_manager, IHK, MetaSearch, paolo_test2, processing, zzz, QuickWKT, MemoryLayerSaver, valuetool, GeoCoding, GroupStats, timemanager, menu_from_project, Hotlink, GarminCustomMap, loadthemall, RemoveEmptyLayers, mask, lizmap, profiletool, midvatten, qNote, mmqgis, pgversion, inasafe, qgsAzimuth, qgiscloud, qgSurf, DirectionalSlope, pstimeseries, VectorFieldCalc, pointsamplingtool, contour, LecoS, crayfish, pdokservicesplugin, Cxf_in, flowTrace, geospatialsimulation, plaingeometryeditor, kuw_filter, SemiAutomaticClassificationPlugin, splitmultipart, DistroMap, zoomrc, qProf, BulkVectorExport, DataDrivenInputMask, ZoomToPostcode, DigitizingTools, LandXml, qchainage, VoGisProfilTool, send2google_earth, BufferByPercentage, pgRoutingLayer, htpgeoprocessor, cadastre, geopunt4Qgis, shp_to_obs, Qgis2threejs, Video_UAV_Tracker, realcentroid, b4udignl2, ViewshedAnalysis, joinmultiplelines, lrs, SLD4raster, opeNoise, go2streetview, attributePainter, StreetView, CalcArea, Vgi2ShpConverter, EasyCustomLabeling, AreaAlongVector, IDECanarias, VectorBender, interlis, autoSaver, zoomtopaste, SVG2ColoR, clipper, ConstraintChecker, PointConnector, MapsPrinter, QuickOSM, alkisplugin, DissolveWithStats, svir, NNJoin, SwapVectorDirection, AzimuthDistanceCalculator, temporalprofiletool, pickLayer, ProfileFromPoints, TomBio, networks, refFunctions, MBTiles2img, concavehull, quick_map_services, scpplugin, MultiDistanceBuffer, FeatureGridCreator, OSTranslatorII, instantprint, xyToPoint, tiss, beePen, OSMDownloader, LineDirectionHistogram, LocatePoints, IPyConsole, qgis2web, PostNAS_Search, LoadQSS, ThinGreyscale, MagneticDeclination, dataexplorer, ClipMultipleLayers, SpreadsheetLayers, CustomToolBar, toggleactivelayer_plugin, MongoConnector, cluz, EqHazard, Multi_Ring_Buffer, catalogpl_plugin, bulkvectorexportwithstyle, maps2winbugs, MenuBuilder, QBano, QPackage, SelectWithin, gmsh, DEMto3D, inspireNL, PosiView, qgis-amigocloud-plugin, changeDataSource, mapswipetool_plugin, geosearch_dk, OnlineRoutingMapper, Discovery, BackupLayer, firstaid, LayerMetadataSearch, rivergis, PostTelemac, PlaceMarker, minkowskiDimCalculator, Serval, AzimuthMeasurement, qgisgbifapi, QlrBrowser, ImportEpanetInpFiles, Socrata, tuflow, disconnected-islands, M150XML, DiviPlugin, attributeBasedClustering, QGISSortAndNumber-master, report, devnull, dzetsaka, SDEllipse, qgeric, qdraw, CaigosConnector, FreehandRasterGeoreferencer, latlontools, Kortforsyningen, QEsg, gimpselectionfeature_plugin, gml_application_schema_toolbox, AnotherDXF2Shape, LmOpenData, Projestions, d3datavis, qfieldsync, poiexport, gban, annotationManager, Converter, LinearTheoryOrographicPrecipitation, QMarxanToolbox, CloudMasking, qgis_hats, qgis-stereonet, ClusterPoints, pluginbuilder3, PluginLoadTimes, mysqlimport, cartogram3, TurnGray, InvisibleLayersAndGroups, SplitPolygonShowingAreas, MTOPOpenData, tempus_qgis, shapetools, projectgenerator, batch_gps_importer, Highlighter, SpzBuilder, NITK_RS-GIS_17, vector_tiles_reader, icsm_ntv2_transformer, QuickPrint, go2mapillary, DataPlotly, SuperLabeling, RuimtelijkePlannen, BGTImport, Coordtransform, Spanish_Inspire_Catastral_Downloader, Check_defined_Convert_CRS, qpals, polystrip, CSMapMaker, qepanet, xplanung, SaxonyCadastralParcels, CalidadCAR, CDAUDownloader, location_lab, quick_attribution, scriptrunner3, JapanElevation, GeodesicDensifier, Mascaret, searchlayers, QRealTime, ZoomToBelgium, vrtbuilderplugin, ale, UMEP, SentinelHub, powerpan, ZebToolbox, GpxSegmentImporter, TlugProcessing, SRTM-Downloader, batch_hillshader-master, parcel_plugin, asistente_ladm_col, Physiocap3, CalculateGeometry, CoordGuesser, iso4app, ImportPhotos, geodatafarm, pgChainage, BivariateLegend, AcATaMa, Beeline, AttributeAssignment, RoadEmissionCalculator, karika, HCMGIS, AustrianElevation, squad-plugin-qgis3, natusferaqgis3, road_inspection_viewer, AppendFeaturesToLayer, QGIS3-getWKT, nominatim_locator_filter, geoportail_lu, layerfromclipboard, timeseriesviewerplugin, pdok_locatieserver_locator_filter, geomapfish_locator, QNEAT3, db-style-manager, QWeather, arrayplus, FS3, DotMap, swiss_locator, gis4wrf, layerGroupFilter, qgis2mapea4, QWater, QGIS_FMV, Offline-MapMatching, AnimateOsm, LAStools, StandardDistance, dist_cartogram, Label2Attr, popgis-plugin, cartolinegen, kmltools, LCCS3basicCoder3-v_1_0, SpeciesExplorer, geoscience, imajnet-qgis-plugin, DDG_Street_Images, rastervision_qgis, grukos, debug_vs, BioDispersal, QuickMultiAttributeEdit3, finddataset, polygonclusterreducer, batchvectorlayersaver, myfiber, linz-data-importer, QVisualize, agknow_qgis, geometry_paster, EquirectangularViewer, istacqgis, geohey_toolbox, leastcostpath, layout_loader, QgisModelBaker, processing_r, Hqgis, FastVersion, HeightmapExport, pca4cd, ImageServerConnector, awap, interfacecatchment, QCopycanvas, SocialActivity, ThToolBox, NavTable, oscars-georaster-qgis-plugin, maplibrary, ORStools, PeliasGeocoding, gribdownloader, Climb, enmapboxplugin, XYZHubConnector, rastertimeseriesmanager, FragScape, geobarcelona, group_transparency, travel_time_platform_plugin, rasterdataplotting, QLocklayers, trackable_project_files, processing_fusion, profileexport, Mergin, visualist, GeoPriv, tiles_xyz, sigrdap, excel_sync, create_bathymetry, SSAM, zoomview, profileAAR, BezierEditing, QRectangleCreator, color_attribute, track_profile_2_web, kontrollblatt_sh, geosys-plugin, QGYF, AttributesJoinByLine, ThRasE, moFa4Q_plugin, plus_mops, PPConverter_20, qgisnetworklogger, poiexportColorHash +plugin_repositories\Offizielles%20QGIS-Erweiterungsrepositorium\url=https://plugins.qgis.org/plugins/plugins.xml +news-feed\items\httpsfeedqgisorg\entries\items\64\content="

OpenStreetMap (OSM) is free to use, but not free to run. The QGIS user experience is tremendously improved thanks to OSM data, tiles, geocoding, and other services. OSM depends on donations from people like you! Double-click this entry to learn how to support OSM's continued stability, quality, and independence.

" +news-feed\items\httpsfeedqgisorg\entries\items\64\expiry=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8b\xd1\x3\xb5\xc0\xb8\0) +news-feed\items\httpsfeedqgisorg\entries\items\64\image-url=https://feed.qgis.org/media/feedimages/2023/11/08/osm-funding.jpg +news-feed\items\httpsfeedqgisorg\entries\items\64\link=https://supporting.openstreetmap.org +news-feed\items\httpsfeedqgisorg\entries\items\64\sticky=false +news-feed\items\httpsfeedqgisorg\entries\items\64\title=It\x2019s OSM\x2019s Birthday! Please donate to support its future. +news-feed\items\httpsfeedqgisorg\entries\items\65\content="

The Cyber Resilience Act will, by design, place considerable strain on the Open Source Geospatial Foundation and the service providers who power so much of our ecosystem. The OSGeo community has been active during this process lending their voice of concern, feedback, and moral objection (not everything is a product!) and support. We encourage you to get informed and lend your voice of support to ensure that these laws do not jeopardise or impact projects like QGIS. Double-click this entry to learn more.

" +news-feed\items\httpsfeedqgisorg\entries\items\65\expiry=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8b\xd1\x3\xba\xe1\x38\0) +news-feed\items\httpsfeedqgisorg\entries\items\65\image-url=https://feed.qgis.org/media/feedimages/2023/11/09/europe.jpg +news-feed\items\httpsfeedqgisorg\entries\items\65\link=https://www.osgeo.org/foundation-news/eu-cyber-resilience-act/ +news-feed\items\httpsfeedqgisorg\entries\items\65\sticky=false +news-feed\items\httpsfeedqgisorg\entries\items\65\title=OSGeo Statement: EU Cyber Resilience Act +fontPointSize=8.3 +map3d\defaultNavigation=TerrainBased +map3d\axisInversion=WhenDragging +map3d\defaultProjection=1 +map3d\defaultMovementSpeed=5 +map3d\defaultFieldOfView=45 +map3d\gpuMemoryLimit=500 +projections\crsAccuracyWarningThreshold=0 + +[browser] +expandedPaths=favorites: +hiddenPaths=@Invalid() +propertiesWidgetEnabled=false +propertiesWidgetHeight=@Variant(\0\0\0\x87\0\0\0\0) + +[browser2] +propertiesWidgetEnabled=false +propertiesWidgetHeight=@Variant(\0\0\0\x87\0\0\0\0) + +[cache] +size=@Variant(\0\0\0\x81\0\0\0\0\x3 \0\0) + +[connections] +xyz\items\Mapzen%20Global%20Terrain\hidden=false +xyz\items\Mapzen%20Global%20Terrain\http-header=@Variant(\0\0\0\b\0\0\0\0) +xyz\items\Mapzen%20Global%20Terrain\tile-pixel-ratio=0 +xyz\items\OpenStreetMap\hidden=false +xyz\items\OpenStreetMap\http-header=@Variant(\0\0\0\b\0\0\0\0) +xyz\items\OpenStreetMap\interpretation= +xyz\items\OpenStreetMap\tile-pixel-ratio=0 + +[core] +Layout\searchPathsForTemplates=@Invalid() +OpenClDefaultDevice= +OpenClEnabled=true +gps\data_bits=Data8 +gps\flow_control=NoFlowControl +gps\parity=NoParity +gps\stop_bits=OneStop +layer-tree\show_feature_count_for_new_layers=false +httpsfeedqgisorg\disabled=true + +[digitizing] +auto-popup-vertex-editor-dock=true +cad-snapping-prioritize-feature=false +convert-to-curve=false +convert-to-curve-angle-tolerance=1e-06 +convert-to-curve-distance-tolerance=1e-06 +default-m-value=0 +default-snap-mode=AllLayers +default-z-value=0 +disable-enter-attribute-values-dialog=false +fill-color=@Variant(\0\0\0\x43\x1\x1e\x1e\xff\xff\0\0\0\0\0\0) +line-color=@Variant(\0\0\0\x43\x1\xc8\xc8\xff\xff\0\0\0\0\0\0) +line-color-alpha-scale=0.75 +line-ghost=false +line-width=1 +marker-only-for-selected=true +marker-size-mm=2 +marker-style=Cross +offset-cap-style=Round +offset-join-style=JoinStyleRound +offset-miter-limit=5 +offset-quad-seg=8 +offset-show-advanced=false +reuse-last-values=false +search-radius-vertex-edit=10 +search-radius-vertex-edit-unit=Pixels +shape-map-tools\categories\items\Circle\default=circle-from-2-points +shape-map-tools\categories\items\Curve\default=circular-string-by-radius +shape-map-tools\categories\items\Ellipse\default=ellipse-center-2-points +shape-map-tools\categories\items\Rectangle\default=rectangle-from-center-and-a-point +shape-map-tools\categories\items\RegularPolygon\default=regular-polygon-from-2-points +snap-color=@Variant(\0\0\0\x43\x1\xff\xff\xff\xff\0\0\xff\xff\0\0) +snap-tooltip=false +technique=StraightSegments +tracing-max-feature-count=10000 +validate-geometries=1 +default-snapping-tolerance=12 + +[gps] +acquisitionInterval=0 +autoAddVertices=false +autoCommit=false +distanceThreshold=0 +gpsdDevice= +gpsdHost=localhost +gpsdPort=2947 +lastPort=localhost:2947: +mapExtentMultiplier=50 +markerSize=12 +panMode=recenterWhenNeeded +portMode=scanPorts +showMarker=true +trackColor=@Variant(\0\0\0\x43\x1\xff\xff\xff\xff\0\0\0\0\0\0) +trackWidth=2 +acquisition-interval=0 +apply-leap-seconds-correction=true +bearing-line-symbol="\n\n\n\n\n\n\n\n\n\n\n" +calculate-bearing-from-travel=false +distance-threshold=0 +gps-connection-type=Automatic +gpsbabelPath=gpsbabel +gpsd-device-name= +gpsd-host-name=localhost +gpsd-port=2947 +gpsd-serial-device=localhost:2947: +leap-seconds=18 +location-marker-symbol="\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" +map-recentering-threshold=50 +map-rotate-interval=0 +rotate-location-marker=true +store-attribute-in-m-values=false +timestamp-offset-from-utc=0 +timestamp-time-spec=LocalTime +timestamp-time-zone=Europe/Berlin +track-line-symbol="\n\n\n\n\n\n\n\n\n\n\n" +babel-devices\items\Garmin%20serial\rtedownload=%babel -r -i garmin -o gpx %in %out +babel-devices\items\Garmin%20serial\rteupload=%babel -r -i gpx -o garmin %in %out +babel-devices\items\Garmin%20serial\trkdownload=%babel -t -i garmin -o gpx %in %out +babel-devices\items\Garmin%20serial\trkupload=%babel -t -i gpx -o garmin %in %out +babel-devices\items\Garmin%20serial\wptdownload=%babel -w -i garmin -o gpx %in %out +babel-devices\items\Garmin%20serial\wptupload=%babel -w -i gpx -o garmin %in %out + +[gui] +LayoutDesigner\defaultSnapGridOffsetX=0 +LayoutDesigner\defaultSnapGridOffsetY=0 +LayoutDesigner\defaultSnapGridResolution=10 +LayoutDesigner\defaultSnapTolerancePixels=5 +LayoutDesigner\gridAlpha=100 +LayoutDesigner\gridBlue=190 +LayoutDesigner\gridGreen=190 +LayoutDesigner\gridRed=190 +LayoutDesigner\gridStyle=Dots +UI\queryLogger\treeState=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x2\xba\0\0\0\x2\x1\x1\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x2\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\x2V\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64) +UI\symbolsList\lastIconView=0 +Windows\StyleV2Manager\lastIconView=0 +codeEditor\caretLineColor=#efefef +codeEditor\classFontColor=#4271ae +codeEditor\commentBlockFontColor=#8e908c +codeEditor\commentFontColor=#8e908c +codeEditor\commentLineFontColor=#8e908c +codeEditor\cursorColor=#636363 +codeEditor\decoratorFontColor=#3e999f +codeEditor\defaultFontColor=#4d4d4c +codeEditor\doubleQuoteFontColor=#718c00 +codeEditor\edgeColor=#efefef +codeEditor\foldColor=#efefef +codeEditor\foldIconForeground=#ffffff +codeEditor\foldIconHalo=#000000 +codeEditor\identifierFontColor=#4271ae +codeEditor\indentationGuide=#d5d5d5 +codeEditor\keywordFontColor=#8959a8 +codeEditor\marginBackgroundColor=#efefef +codeEditor\marginForegroundColor=#636363 +codeEditor\matchedBraceBackground=#b7f907 +codeEditor\matchedBraceColor=#303030 +codeEditor\methodFontColor=#4271ae +codeEditor\numberFontColor=#c82829 +codeEditor\operatorFontColor=#8959a8 +codeEditor\overrideColors=false +codeEditor\paperBackgroundColor=#ffffff +codeEditor\quotedIdentifierFontColor=#4271ae +codeEditor\quotedOperatorFontColor=#8959a8 +codeEditor\selectionBackgroundColor=#0078d7 +codeEditor\selectionForegroundColor=#ffffff +codeEditor\singleQuoteFontColor=#718c00 +codeEditor\stderrBackgroundColor=#ffffff +codeEditor\stderrFontColor=#e31a1c +codeEditor\tagFontColor=#4271ae +codeEditor\tripleDoubleQuoteFontColor=#eab700 +codeEditor\tripleSingleQuoteFontColor=#eab700 +codeEditor\unknownTagFontColor=#4271ae +codeEditor\colorScheme= +respect-screen-dpi=false +code-editor\python\autopep8-level=1 +code-editor\python\black-normalize-quotes=true +code-editor\python\formatter=autopep8 +code-editor\python\max-line-length=80 +code-editor\python\sort-imports=true + +[layer-tree] +show-feature-count-for-new-layers=false + +[layout] +search-paths-for-templates=@Invalid() + +[locale] +globalLocale=de_DE +overrideFlag=false +showGroupSeparator=false +userLocale=de_DE + +[network] +network-timeout=60000 + +[plugin-manager] +automatically-check-for-updates=true +check-on-start-last-date=@Variant(\0\0\0\xe\0%\x8a') +seen-plugins=db_manager, grassprovider, MetaSearch, otbprovider, processing, moFa4Q_plugin, plugin_reloader, QuickWKT, MemoryLayerSaver, simplesvg, valuetool, GeoCoding, GroupStats, timemanager, menu_from_project, Hotlink, GarminCustomMap, loadthemall, RemoveEmptyLayers, mask, dimensioning, lizmap, MultiEdit, profiletool, midvatten, qNote, mmqgis, wfsclient, multiqml, quicksaveqml, dumploadfield, joinlines, osmpoly_export, pgversion, inasafe, qgsAzimuth, qgiscloud, qgSurf, DirectionalSlope, pstimeseries, VectorFieldCalc, pointsamplingtool, numericalDigitize, contour, LecoS, crayfish, pdokservicesplugin, Cxf_in, flowTrace, qtiles, sextante_animove, geospatialsimulation, plaingeometryeditor, tmsforkorea, kuw_filter, SemiAutomaticClassificationPlugin, splitmultipart, DistroMap, shapefile_encoding_fixer, zoomrc, qProf, BulkVectorExport, DataDrivenInputMask, ContrastHomogenizer, ZoomToPostcode, DigitizingTools, nominatim, LandXml, qchainage, VoGisProfilTool, copy_coords, send2google_earth, BufferByPercentage, pgRoutingLayer, htpgeoprocessor, cadastre, geopunt4Qgis, shp_to_obs, PPConverter_20, Qgis2threejs, Video_UAV_Tracker, realcentroid, b4udignl2, simplereports, ViewshedAnalysis, joinmultiplelines, lrs, spline, SLD4raster, opeNoise, go2streetview, attributePainter, StreetView, Vgi2ShpConverter, EasyCustomLabeling, AreaAlongVector, stationlines, clickfu, postgisQueryBuilder, IDECanarias, StreamFeatureExtractor, VectorBender, interlis, SGDiagramDownloader, autoSaver, zoomtopaste, SVG2ColoR, clipper, ConstraintChecker, PointConnector, MapsPrinter, QuickOSM, alkisplugin, shortcut_manager, ArcheoCAD, DissolveWithStats, svir, NNJoin, SwapVectorDirection, AzimuthDistanceCalculator, temporalprofiletool, pickLayer, MultipleLayerSelection, QgsWcpsClient1, VectorMCDA, ProfileFromPoints, TomBio, networks, processing_workflow, MBTiles2img, ClipToHemisphere, Redistricting, concavehull, quick_map_services, survey_design, scpplugin, MultiDistanceBuffer, FeatureGridCreator, OSTranslatorII, postgis_geoprocessing, instantprint, ntv2_transformations, tiss, DsgTools, catalogotf_plugin, beePen, OSMDownloader, LineDirectionHistogram, LocatePoints, IPyConsole, reconstruct_line, qgis2web, PostNAS_Search, LoadQSS, ThinGreyscale, MagneticDeclination, redLayer, dataexplorer, ClipMultipleLayers, LayerBoard, SpreadsheetLayers, CustomToolBar, toggleactivelayer_plugin, MongoConnector, esstoolkit, qgis_versioning, cluz, Multi_Ring_Buffer, catalogpl_plugin, bulkvectorexportwithstyle, maps2winbugs, MenuBuilder, rasterstats, QBano, QPackage, SelectWithin, gmsh, DEMto3D, inspireNL, PosiView, qgis-amigocloud-plugin, changeDataSource, mapswipetool_plugin, geosearch_dk, OnlineRoutingMapper, Discovery, BackupLayer, firstaid, LayerMetadataSearch, rivergis, QMetaTiles, PostTelemac, osminfo, PlaceMarker, minkowskiDimCalculator, Serval, sdna, CKANBrowser, AzimuthMeasurement, qgisgbifapi, QlrBrowser, ImportEpanetInpFiles, wincan2qgep, Socrata, GeODinQGIS, tuflow, disconnected-islands, qad, attributeBasedClustering, QGISSortAndNumber-master, report, dzetsaka, SDEllipse, qgeric, qdraw, VetEpiGIS-Tool, nextgis_connect, CaigosConnector, FreehandRasterGeoreferencer, latlontools, GroundwaterVulnerability, QEsg, gimpselectionfeature_plugin, gml_application_schema_toolbox, PghydroTools, AnotherDXF2Shape, Projestions, isogeo_search_engine, d3datavis, qgis_resource_sharing, qfieldsync, connect_points, VetEpiGIS-Group, poiexport, gban, annotationManager, table2style, LinzSnap, wfsOutputExtension, LayerStyleLoader, Converter, LinearTheoryOrographicPrecipitation, QMarxanToolbox, pg_history_viewer, CloudMasking, qgis_hats, qgis-stereonet, postgis_sampling_tool, layer2kmz, pluginbuilder3, PotentialSlopeFailure, PluginLoadTimes, mysqlimport, cartogram3, TurnGray, InvisibleLayersAndGroups, SplitPolygonShowingAreas, MTOPOpenData, tempus_qgis, shapetools, MPAPostHocAccounting, FeatureIterator, Submission, batch_gps_importer, BoundingBox, SpzBuilder, NITK_RS-GIS_17, SelectByRelationship, vector_tiles_reader, icsm_ntv2_transformer, BoundaryDelineation, morpheo, QuickPrint, DataPlotly, SuperLabeling, RuimtelijkePlannen, digitizr, Anaximandre, BGTImport, Coordtransform, Spanish_Inspire_Catastral_Downloader, qpals, polystrip, CSMapMaker, isochrones, qepanet, xplanung, SaxonyCadastralParcels, CalidadCAR, CDAUDownloader, AGT, location_lab, quick_attribution, LDMP, scriptrunner3, JapanElevation, Paprika, GeodesicDensifier, Mascaret, searchlayers, PisteCreator, QRealTime, ZoomToBelgium, vrtbuilderplugin, ale, UMEP, SentinelHub, powerpan, ZebToolbox, GpxSegmentImporter, TlugProcessing, SRTM-Downloader, batch_hillshader-master, parcel_plugin, SplitPolygon-master, asistente_ladm_col, Physiocap3, CalculateGeometry, CoordGuesser, EasyTemplatePrint, iso4app, ImportPhotos, geodatafarm, forestroaddesigner, pgChainage, BreederMap, BivariateLegend, AcATaMa, Beeline, AttributeAssignment, RoadEmissionCalculator, karika, HCMGIS, AustrianElevation, squad-plugin-qgis3, natusferaqgis3, road_inspection_viewer, AppendFeaturesToLayer, QGIS3-getWKT, nominatim_locator_filter, geoportail_lu, layerfromclipboard, timeseriesviewerplugin, pdok_locatieserver_locator_filter, geomapfish_locator, QNEAT3, db-style-manager, QWeather, arrayplus, FS3, DotMap, swiss_locator, gis4wrf, layerGroupFilter, qgis2mapea4, QWater, QGIS_FMV, Offline-MapMatching, map-coords-plugin, MzSTools, AnimateOsm, LAStools, StandardDistance, dist_cartogram, CanadianWebServices, Label2Attr, popgis-plugin, cartolinegen, kmltools, qproto, LandSurveyCodesImport, LCCS3basicCoder3-v_1_0, SpeciesExplorer, geoscience, CityJSON-loader, DICT, imajnet-qgis-plugin, DDG_Street_Images, rastervision_qgis, debug_vs, BioDispersal, QuickMultiAttributeEdit3, finddataset, StreetAnalysis, polygonclusterreducer, Go2NextFeature3, batchvectorlayersaver, myfiber, linz-data-importer, QVisualize, agknow_qgis, geometry_paster, EquirectangularViewer, istacqgis, geohey_toolbox, leastcostpath, layout_loader, QgisModelBaker, processing_r, Hqgis, HeightmapExport, ibamaprocessing, pca4cd, pat, ImageServerConnector, awap, interfacecatchment, aderyn, QCopycanvas, SocialActivity, QWeb, ThToolBox, NavTable, ibama_expressions, oscars-georaster-qgis-plugin, maplibrary, ORStools, PeliasGeocoding, gribdownloader, Add_a_point_road_sign, Climb, processing_saga_nextgen, OpenICGC, togglegroupvisibility, enmapboxplugin, XYZHubConnector, rastertimeseriesmanager, FragScape, geobarcelona, group_transparency, travel_time_platform_plugin, QLocklayers, coord_list, trackable_project_files, processing_fusion, profileexport, Mergin, visualist, GeoPriv, excel_sync, create_bathymetry, SSAM, CLETools, zoomview, profileAAR, BezierEditing, QRectangleCreator, color_attribute, track_profile_2_web, kontrollblatt_sh, geosys-plugin, coordinator, QGYF, uldk_gugik, AttributesJoinByLine, SampleByArea, ParCatGML, modis_nitk, vx_integration, ThRasE, qgisnetworklogger, cctv_mapper, mos_adeupa_ce, AusMap, SampleByFeatures, themeselector, wnt, trail_elevation_stats, QGISRed, ForestRoadsNetworksUPLOAD, MagicWand-master, tc_tlag, floodrisk2, toggle_labels_widget, FormatConsistency, easy_processing_tool, WaterNetAnalyzer-master, landxml2qgis, getthemfiltered, radolan2map, mapbiomascollection, geometric_attributes, snail, openeo-qgis-plugin-master, network_gt, rastertool, odktrace2wkt, AddressToolsDK, cdu_creator-master, french_locator_filter, solocator, qgis-ruian-plugin, stripchart, nmt_gugik, geocatbridge, qgisSpectre, VectorFieldLayerManager, ObliczWysokosc, buienradar_plugin, shlocator, Generalizer3, gpi_import, GeoAtlasQGIS, Radiotrack, atlasprint, ee_plugin, planet_explorer, deactivate_active_labels, BatchHeatmaps-master, ezprinter, GeofabrykaToolbox, raster_tracer, export_to_sql_server, BitFlagRenderer, qgepplugin, ToRadians, TerrainShading, qgis3redistricter-master, geokodowanie_adresow, m150xml, AutomaticBackup-master, delete_null_fields, Nuclear-Energy-Plant-Radiations-, LatlonDecimal, oneatlas-qgis-plugin-1_0_1, localmaxfilter, tmd, GlobeBuilder, BOS, cruisetools, gissupport_plugin, zoom_level, qwatermodel, relation_batchinsert, gis_cloud_publisher, mappia_publisher, mgrs, KP_find, FilterLayersAtOnce-master, active_fire, lockzoom, sentinel2_download, covid19_tracker, agis, QGeoloGIS, archiwalna_ortofotomapa, ESDL_loader, clusterpoints, mon_parcellaire, tomtom_locator_filter, closest_points, lnns, los_tools, huntregister, usgs_stream_mapper, french_address, frms_downloader, EuroDataCube, rectanglify, qgis_server_render_geojson, GSI-VTDownloader-master, SgmVertex2NodeByAtt, qveg, layertreeicons, qgis2fds, BDOT10k_GML_SHP_Loader, ImaerPlugin, qgis_gee_data_catalog, qgis2wegue, processing_umep, curve_number_generator, qgis-maptiler-plugin, geograndest, layertilesmapcanvas, bkggeocoder, camino-flux-QGIS-master, israeli_opendata_loader, autocurve, flight_planner, seismic_importer, felt_tegn, sentinel2_removed_cloud_rec, land_productivity_analysis_tool, CriarPontosRios, mtf_estimator, territorial_control, SMC, ana_data_acquisition, lines_ranking, slyr_community, projektcheck, pobieracz_danych_gugik, json_to_waterbodies_for_qgis, localcoordinates, gistools, wetland_vulnerability_analysis_tool, coordinate_capture, wiscsims_tool, multilayerselect, idev_visor, navarra_cadastre-master, FlightSimulatorTools, corrector_vector, EnviroCat, OpenTripPlannerPlugin, poi_visibility_network, galiciasustentable, JSONEater-master, ClusterMap, nafi, qlyrx, eKMap-Publisher-For-QGIS, synthwave, geobretagne, pathfinder, UrbanSARCA-master, moving_feature, wtyczka_qgis_app, volume_calculation_tool, force4qgis, promaides_gis_tools, SpatialDataPackageExport, cwsi, bgtinlooptool, Qaava, cartography_tools, oneclickrasterstacking, monokai, plot_boundary, terminus_processing, qgeo, qgis-plugin-findreplace-main, cbers4a, google_maps_geocoder, SgmExpressionFunctions, FMI2QGIS, inde, QGIS3_Delft3D_FM, TocTable-main, CalcOnField-main, HTML_Generator-main, msdc_client, thematics, configurable_search, arearatio, Cadastral_Divisions-main, geoCore, actions_for_relations, placekey, multiple_layers_tools, dineof, FlyFotosDK, GTFS-GO-master, fitgeometrybyarea, SaraphiGetConnect, valhalla, qrbarcodeitem, PreCourlis, line_profile, qquake, medsens, napkingis-prepare-plugin, qgistim, GeometryShapes, graphab4qgis, RadAgro-master, rvt-qgis, Layman, topojson_writer, anyways_impact_toolbox, CZMLBillboardMaker, point_selection, Smart_Map, pml_geopackager, PotentialSlopeFailure-processing, MultiMaps, addresssearch, BDOO_GML_Loader, html_table_exporter, QGISDigitransitGeocoding-master, NLSgpkgloader-master, GTFS_Loader, inclinometry_calc, path_sorting, LightPollutionToolbox, czech_slovak_freegeodata, geomelwatershed-master, monokaiprospectrum, alloysearchhere, weissflaechenkartierung, itemmap_cropper, easy_raster_splitter, tro_api, perimetre_asa, partial_histogram, area_weighted_average, geocat_export, MISLAND, QNeighborhood, QuickStepGeobia, pibc, polsar_tools, road_slope_calculator, lftools, geetimeseriesexplorer, shoreline, ReverseFlow, mapbiomas-api, RenameField, canflood, Unfolded, hidroweb_downloader, ordered_relation_editor, exportDBmapper, firehunter, qgis-igc-importer, geo_sim_processing, Dataforsyningen, terrabrasilis_datasource, spiutilityraster, spiutilityforcsv, datetimetools, vertex_compare, vector_correction, selectThemes, conversor_nomes_comuns, qgissprp, orkamv-data-api-plugin-main, sentera_6x_processing, RasterAttributeTable, vallaris, TAF-to-CSV-main, gio_import, flexigis, coordinates_converter, pg_metadata, create_custom_projection, mercicor, simple_tools, swissgeodownloader, andalusianpopulation, document_management_system, open_lidar_tools, doner, Catchment, qgis-nowcast-tool-plugin-master, QuickDEM4JP, ICRA, Assisted-MapMatching, ElevationTile4JP, pg_raster_import, terra_antiqua, veloroutes_voies_vertes, iso_19157, create_layer_from_selected_features, licareascraper, mapflow, precisioncursor4qgis-main, generate_swmm_inp, timezone_expressions, oiv, dados_censo, qgis2rasterlite, in_ads, thematic_accuracy, polygonclickmap, avaframeConnector, spatialite_converter, SolrSearch, orientation, GeoKKP-GIS, movecost, GIAP-PolaMap-lite, rdi, ellipsis-connect, grdata, BivariateRenderer, pcraster_tools, vertical_photo_placer, xtflog_checker, ibge_cartography_index_map, qsoccer, qgis-fit-plugin, totalopenstationToQgis, QompliGIS, Coregistration, deg_2_dms, dms_2_deg, fractaliadj, heliware_plugin, qLidar, Opendatasoft, imodqgis, pylusatq, speckle-qgis, jaltol-main, servizi_ecosistemici, AttributesOfBritishAndIrishPlants, AtlasExportFunction, wind_forecast_routing, quick_layer, easy_print_menu, numerator, ProjectPackager, HouseNumbering3, AutoLayoutTool, lidar_campania, QHadoopTools, openads, buildseg, kart, optileloader, azimuth_distance_measurement, p190_import, MonetDB-QGIS, mobilityareas, magnetic_bearing_measurement, amil, calcarea2, merge_selected_features, qgis_report_wizard, qgs-gazetteer-bb, qgis_geonode, ICEtool, qgis_stac, geoeasin, datagrandest, qmapshaper, flurstuecksfinder-nrw, OpenTopography-DEM-Downloader, raster_divider, Cluster-Analysis-plugin-main, layout_panel-main, Cadastral_Classifier, inundation_calculator, prg_dig, gprlp_metadata_search, noise_prediction, dissolve_adjacent_polygons, survex_import, convert_heights, encoded-polyline, sigpac_downloader, tree-belt-designer, Modzy-QGIS-Plugin-main, geographical-detector, spatialanalysistoolbox, testadalotes, dissolve_related, SGS, Palapa, wody_polskie_wms, articulacaosistematica, linking_relation_editor, peel_orange, buffer_without_overlaps, tile_network_order, illini_drainage_tools, osm_sidewalkreator, spanners_plugin, what3words, clear_null_geometry, CivilEng, GeoINCRA, smooth_geometry, DaumAPI, wbt_for_qgis, als_downloader, Importer2OSMbasemap, downloadgeostatportugal, Cronometro, mapmaker, annotation_labels, smarty, google-street-view-layer-master, h3_toolkit, Group_and_Sort_Layers, Geographical_Fetch, PLUGIN, medir_distancia_entre, kimu, thyrsis, lizmap_server, qgis_easy_query, easy_labeling, easy_right_angle_draw, map_tile_loader, custom_news_feed, SEBCS-master, q_scs, return_pyqgis_algorithm, StackComposed, QNSPECT, ArrNorm, naficp, fooodk, roof_draw, Topographical_profiles, st_lucas_download_manager, vdip, densityanalysis, ProcessX, qgis-jaxa-earth-plugin-master, raster_cutter, canvas_coordinates, dissect_dissolve_overlaps, MultiJoin, qgis-here-api-plugin, geodata2envimet, qtribu, numerar_lote, QMapa, diachronix, QgisTDC, topo_tijdreis, qgis-subset-expression-plugin, CheckDefConv, GEO-search-plugin-main, xplan-reader, maxent_model, STL_Generator, qgis-project-as-utm, odkconnector2, qgis_nearest_greater, secquery, pec_avalia, co2_sequestration, Groundwater-Buffer-Raster, geotuileur, sense_detection, becagis, wfs_qgis-previsioni-plugin-out, drone_path, Sentinel-5p_data_explorer, qgis_richdem, zone_label, ndff_connector_plugin, nnmlf, replace_geometry, qgis-gmsh, ibgedatadownloader, point_on_arc_intersection, deepness, selection-sets-reloaded, flintpro_datacheck, identifyplus, q5pfes, GBFS-NOW, segment_reshape_plugin, gps_replay, koordinates, Tieosoitetyokalu, layertree2json, qgis_points2one, road2qgis, DMI_Open_Data, bdot10k, soil_moisture, OsmAnd_bridge, spatial_filter, uddmanager, geocsv-main, AdressesFr, indice_ndwi, mopst, QGIS-legendView-main, quick-geojson, map-units-per-pixel, shootpointswebplotter-main, QgisGLViewer, polygon_from_map_extent, sensehawk_qc, kartverket_adresse, project_report, PlanCreator-3, Kauko, get_nib-main, equi_processing, fullmce_Sarah-main, magic_map_loader, qkan, minded_fba, e_tracability, cartodruid_sync, gatherconnect, japangeology3, ThreePointMethod, cigeoe_attribute_copy, Save-DXF, indiana_lidar, plot_grid, reloader, QChatGPT, Check4SEC-master, sewerage_designer, QRestart, cigeoe_feature_nodes_z_tag, craig, infas_lt_geocoder, Walidator_plikow_gml, limburg_flood_impact_plugin, dp_checker, GamepadNavigation, extractor, lrseditor, science_flight_planner, custom_titlebar, mojxml_plugin, remote_db, CPR, delete-all, cigeoe_converge_lines, austria_weather_api, pyqgis_resource_browser, estonian-address-search, CCD_Plugin, people_flow_visualization, datasud, qgis_sea_level_tool, tile_index_generator, address_search, indiana_ortho, Bestagon-master, dmpcatalogue, opencage_geocoder, tianditu-tools, opencratertool, LidarManager, wms_wfs_dera, green_view_index, AemetOpenDataDownloader, cigeoe_holes_3d, earthsunmoon, thermal, fuzzy_join, qaequilibrae, qgis_adjust_style, gistda_sphere_basemap, pixel_calculator, StyleLoadSave, gpkg_creator, gistda_sphere_opendata, transparency_setter, qgis_templates_symbology, hrisk-noisemodelling-master, DiscordRPC-Plugin-for-QGIS, citydb-tools, xplan-umring, location_finder, Delete_Duplicates, cigeoe_identify_dangles, AzureMapsCreator, Terraform, Qpositional, segmenter, panorama_viewer, feature_space, qdrawEVT, Siwei_Earth, jilin1tiles, felt, infrao, FilePath, StreetSmart, fast_kernel_density_analysis, SaveAllScript, UA_XML_importer, cigeoe_circumvent_polygon, LinearReferencing, qgis_hub_plugin, csv_batch_import, SPAN, twodistancesintersectionplugin, DAI, usm_calculator-main, opacity_set_01, qgis-plugin-upload-satupeta-main, locationiq-qgis, getbaseline, plugin_exporter, soar, SelectionFilter, cigeoe_merge_lines, cigeoe_merge_multiple_lines, japanese_grids + +[proxy] +authcfg= +proxyEnabled=false +proxyExcludedUrls=@Invalid() +proxyHost= +proxyPassword= +proxyPort= +proxyType=DefaultProxy +proxyUser= +noProxyUrls=@Invalid() + +[pythonConsole] +splitterConsole=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0x\0\0\0\x1e\0\0\0\0\x3\x1\0\0\0\x2\0) +splitterEditor=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\x1\0\0\0\0\0\x1\0\0\0\x6\x1\0\0\0\x1\0) +splitterObj=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\0\0\0\0U\x1\0\0\0\x3\x1\0\0\0\x1\0) +preloadAPI=true +autoSaveScript=false +accessTokenGithub= +userAPI=@Invalid() +autoCompThreshold=2 +autoCompleteEnabled=true +usePreparedAPIFile=false +preparedAPIFile= +autoCompleteSource=fromAPI +enableObjectInsp=false +autoCloseBracket=false +autoInsertionImport=true +autoSurround=true +autoInsertImport=false +formatOnSave=false + +[qgis] +WMSSearchUrl="http://geopole.org/wms/search?search=%1&type=rss" +addOracleDC=false +addPostgisDC=false +askToDeleteLayers=true +askToSaveProjectChanges=false +attributeTableBehavior=ShowAll +attributeTableRowCache=10000 +attributeTableView=-1 +compileExpressions=true +configuration\default-output-raster-layer-ext=38 +configuration\default-output-vector-layer-ext=30 +configuration\prefer-filename-as-layer-name=true +configuration\temp-path= +connections-xyz\Mapzen%20Global%20Terrain\authcfg= +connections-xyz\Mapzen%20Global%20Terrain\hidden=false +connections-xyz\Mapzen%20Global%20Terrain\interpretation=terrariumterrain +connections-xyz\Mapzen%20Global%20Terrain\password= +connections-xyz\Mapzen%20Global%20Terrain\tilePixelRatio=0 +connections-xyz\Mapzen%20Global%20Terrain\url=https://s3.amazonaws.com/elevation-tiles-prod/terrarium/{z}/{x}/{y}.png +connections-xyz\Mapzen%20Global%20Terrain\username= +connections-xyz\Mapzen%20Global%20Terrain\zmax=15 +connections-xyz\Mapzen%20Global%20Terrain\zmin=0 +connections-xyz\OpenStreetMap\authcfg= +connections-xyz\OpenStreetMap\hidden=false +connections-xyz\OpenStreetMap\interpretation= +connections-xyz\OpenStreetMap\password= +connections-xyz\OpenStreetMap\tilePixelRatio=0 +connections-xyz\OpenStreetMap\url=https://tile.openstreetmap.org/{z}/{x}/{y}.png +connections-xyz\OpenStreetMap\username= +connections-xyz\OpenStreetMap\zmax=19 +connections-xyz\OpenStreetMap\zmin=0 +copyFeatureFormat=AttributesWithWKT +customEnvVars=@Invalid() +customEnvVarsUse=false +dataSourceManagerNonModal=false +defaultCapabilitiesExpiry=24 +defaultLegendGraphicResolution=0 +defaultTileExpiry=24 +defaultTileMaxRetry=3 +default_canvas_color_blue=255 +default_canvas_color_green=255 +default_canvas_color_red=255 +default_measure_color_blue=67 +default_measure_color_green=155 +default_measure_color_red=222 +default_selection_color_alpha=255 +default_selection_color_blue=0 +default_selection_color_green=255 +default_selection_color_red=255 +digitizing\auto_popup_vertex_editor_dock=true +digitizing\cad_snapping_prioritize_feature=false +digitizing\convert_to_curve=false +digitizing\convert_to_curve_angle_tolerance=1e-06 +digitizing\convert_to_curve_distance_tolerance=1e-06 +digitizing\default_m_value=0 +digitizing\default_snap_mode=AllLayers +digitizing\default_snap_type=VertexFlag +digitizing\default_snapping_tolerance=12 +digitizing\default_z_value=0 +digitizing\disable_enter_attribute_values_dialog=false +digitizing\fill_color_alpha=30 +digitizing\fill_color_blue=0 +digitizing\fill_color_green=0 +digitizing\fill_color_red=255 +digitizing\line_color_alpha=200 +digitizing\line_color_alpha_scale=0.75 +digitizing\line_color_blue=0 +digitizing\line_color_green=0 +digitizing\line_color_red=255 +digitizing\line_ghost=false +digitizing\line_width=1 +digitizing\marker_only_for_selected=true +digitizing\marker_size_mm=2 +digitizing\marker_style=Cross +digitizing\offset_cap_style=Round +digitizing\offset_join_style=Round +digitizing\offset_miter_limit=5 +digitizing\offset_quad_seg=8 +digitizing\offset_show_advanced=false +digitizing\reuseLastValues=false +digitizing\search_radius_vertex_edit=10 +digitizing\search_radius_vertex_edit_unit=Pixels +digitizing\snap_color=@Variant(\0\0\0\x43\x1\xff\xff\xff\xff\0\0\xff\xff\0\0) +digitizing\snap_tooltip=false +digitizing\stream_tolerance=2 +digitizing\technique=StraightSegments +digitizing\tracing_max_feature_count=10000 +digitizing\validate_geometries=1 +dockAttributeTable=false +enableMacros=Always +enableMapTips=true +enable_anti_aliasing=true +enable_render_caching=true +hideSplash=false +iconSize=24 +ignoreShapeEncoding=true +legendDoubleClickAction=0 +localized_data_paths=@Invalid() +magnifier_factor_default=1 +mainSnappingWidgetMode=dialog +main_canvas_preview_jobs=true +mapTipsDelay=850 +map_update_interval=250 +max_threads=-1 +measure\angleunits=degrees +measure\areaunits=m2 +measure\decimalplaces=3 +measure\displayunits=meters +measure\keepbaseunit=true +messageTimeout=5 +native_color_dialogs=false +networkAndProxy\networkTimeout=60000 +networkAndProxy\userAgent=Mozilla/5.0 +newProjectDefault=false +new_layers_visible=true +parallel_rendering=true +projOpenAtLaunch=2 +projOpenAtLaunchPath=%PROFILE_FOLDER%/mofa4q.qgz +projOpenedOKAtLaunch=true +projectTemplateDir=%PROFILE_FOLDER%/project_templates +promptForRasterSublayers=0 +promptForSublayers=AlwaysAsk +scanItemsInBrowser2=extension +scanZipInBrowser2=basic +segmentationTolerance=0.017453292519943295 +segmentationToleranceType=MaximumAngle +showLegendClassifiers=false +simplifyAlgorithm=Distance +simplifyDrawingHints=GeometrySimplification +simplifyDrawingTol=1 +simplifyLocal=true +simplifyMaxScale=1 +style=Fusion +symbolsListGroupsIndex=0 +toolbarIconSize=24 +warnOldProjectVersion=false +zoom_factor=2 +legendsymbolMinimumSize=0.1 +legendsymbolMaximumSize=20 +defaultProjectFileFormat=Qgz +checkVersion=false +digitizing\shape-map-tools\Circle\default=circle-from-2-points +digitizing\shape-map-tools\Curve\default=circular-string-by-radius +digitizing\shape-map-tools\Ellipse\default=ellipse-center-2-points +digitizing\shape-map-tools\Rectangle\default=rectangle-from-center-and-a-point +digitizing\shape-map-tools\RegularPolygon\default=regular-polygon-from-2-points +layerTreeInsertionMethod=AboveInsertionPoint +reverse_wheel_zoom=false + +[rendering] +pal\label-candidates-limit-lines=0 +pal\label-candidates-limit-points=0 +pal\label-candidates-limit-polygons=0 + +[svg] +searchPathsForSVG=%PROFILE_FOLDER%/svg/, C:/PROGRA~1/QGIS33~1.1/apps/qgis/./svg/ + +[qgsbrowserwidgetbase] +propertiesWidgetEnabled=false +propertiesWidgetHeight=@Variant(\0\0\0\x87\0\0\0\0) + +[defaults] +bearing_format\decimal_separator=@Invalid() +bearing_format\decimals=6 +bearing_format\direction_format=0 +bearing_format\rounding_type=0 +bearing_format\show_plus=false +bearing_format\show_thousand_separator=true +bearing_format\show_trailing_zeros=false +bearing_format\thousand_separator=@Invalid() +coordinate_format\angle_format=DecimalDegrees +coordinate_format\decimal_separator=@Invalid() +coordinate_format\decimals=6 +coordinate_format\rounding_type=0 +coordinate_format\show_leading_degree_zeros=false +coordinate_format\show_leading_zeros=false +coordinate_format\show_plus=false +coordinate_format\show_suffix=false +coordinate_format\show_thousand_separator=true +coordinate_format\show_trailing_zeros=false +coordinate_format\thousand_separator=@Invalid() + +[elevation-profile] +background-color=@Variant(\0\0\0\x43\0\xff\xff\0\0\0\0\0\0\0\0) + +[fonts] +downloadMissingFonts=true +fontFamilyReplacements=@Invalid() + +[measure] +clipboard-header=false +clipboard-separator=\t +clipboard-use-decimal-point=false diff --git a/QGIS/QGISCUSTOMIZATION3.ini b/QGIS/QGISCUSTOMIZATION3.ini new file mode 100644 index 0000000..ad16003 --- /dev/null +++ b/QGIS/QGISCUSTOMIZATION3.ini @@ -0,0 +1,2271 @@ +[Customization] +Browser=true +Browser\AFS=true +Browser\GPKG=true +Browser\GRASS=true +Browser\GeoNode=true +Browser\MSSQL=true +Browser\ORACLE=true +Browser\PostGIS=true +Browser\QLR=true +Browser\QPT=true +Browser\SAP%20HANA=true +Browser\Vector%20Tiles=true +Browser\WCS=true +Browser\WFS=true +Browser\WMS=true +Browser\XYZ%20Tiles=true +Browser\bookmarks_item=true +Browser\files=true +Browser\html=true +Browser\project_item=true +Browser\py=true +Browser\spatialite=true +Browser\special%3ADrives=true +Browser\special%3AFavorites=true +Browser\special%3AHome=true +Browser\special%3AProjectHome=true +Browser\special%3AVolumes=true +Browser\style_xml=true +Docks=true +Docks\AdvancedDigitizingTools=false +Docks\AllButtons=true +Docks\BookmarksDockWidget=false +Docks\Browser=false +Docks\Browser2=false +Docks\CustomLayers=true +Docks\DevTools=true +Docks\DockWidget=true +Docks\GPSInformation=false +Docks\LayerOrder=false +Docks\LayerStyling=false +Docks\Layers=false +Docks\Layers2=false +Docks\MessageLog=false +Docks\Overview=false +Docks\ProcessingToolbox=true +Docks\QgsGeometryValidationDockBase=false +Docks\ResultsViewer=true +Docks\StatisticalSummaryDockWidget=false +Docks\Temporal%20Controller=true +Docks\VertexEditor=true +Docks\undo\redo%20dock=false +Menus=false +Menus\mDatabaseMenu=false +Menus\mDatabaseMenu\dbManager=true +Menus\mEditMenu=false +Menus\mEditMenu\mActionAddFeature=true +Menus\mEditMenu\mActionAddPart=true +Menus\mEditMenu\mActionAddRing=true +Menus\mEditMenu\mActionCircularStringCurvePoint=true +Menus\mEditMenu\mActionCircularStringRadius=true +Menus\mEditMenu\mActionCopyFeatures=true +Menus\mEditMenu\mActionCutFeatures=true +Menus\mEditMenu\mActionDeletePart=true +Menus\mEditMenu\mActionDeleteRing=true +Menus\mEditMenu\mActionDeleteSelected=true +Menus\mEditMenu\mActionFillRing=true +Menus\mEditMenu\mActionMergeFeatureAttributes=true +Menus\mEditMenu\mActionMergeFeatures=true +Menus\mEditMenu\mActionMoveFeature=true +Menus\mEditMenu\mActionMoveFeatureCopy=true +Menus\mEditMenu\mActionMultiEditAttributes=true +Menus\mEditMenu\mActionOffsetCurve=true +Menus\mEditMenu\mActionOffsetPointSymbol=true +Menus\mEditMenu\mActionPasteFeatures=true +Menus\mEditMenu\mActionRedo=true +Menus\mEditMenu\mActionReshapeFeatures=true +Menus\mEditMenu\mActionReverseLine=true +Menus\mEditMenu\mActionRotateFeature=true +Menus\mEditMenu\mActionRotatePointSymbols=true +Menus\mEditMenu\mActionSimplifyFeature=true +Menus\mEditMenu\mActionSplitFeatures=true +Menus\mEditMenu\mActionSplitParts=true +Menus\mEditMenu\mActionTrimExtendFeature=true +Menus\mEditMenu\mActionUndo=true +Menus\mEditMenu\mActionVertexTool=true +Menus\mEditMenu\mMenuAnnotation=true +Menus\mEditMenu\mMenuAnnotation\mActionFormAnnotation=true +Menus\mEditMenu\mMenuAnnotation\mActionHtmlAnnotation=true +Menus\mEditMenu\mMenuAnnotation\mActionSvgAnnotation=true +Menus\mEditMenu\mMenuAnnotation\mActionTextAnnotation=true +Menus\mEditMenu\mMenuCircle=true +Menus\mEditMenu\mMenuCircle\mActionCircle2Points=true +Menus\mEditMenu\mMenuCircle\mActionCircle2TangentsPoint=true +Menus\mEditMenu\mMenuCircle\mActionCircle3Points=true +Menus\mEditMenu\mMenuCircle\mActionCircle3Tangents=true +Menus\mEditMenu\mMenuCircle\mActionCircleCenterPoint=true +Menus\mEditMenu\mMenuEditAttributes=true +Menus\mEditMenu\mMenuEditAttributes\mActionMergeFeatureAttributes=true +Menus\mEditMenu\mMenuEditAttributes\mActionMultiEditAttributes=true +Menus\mEditMenu\mMenuEditGeometry=true +Menus\mEditMenu\mMenuEditGeometry\mActionAddPart=true +Menus\mEditMenu\mMenuEditGeometry\mActionAddRing=true +Menus\mEditMenu\mMenuEditGeometry\mActionDeletePart=true +Menus\mEditMenu\mMenuEditGeometry\mActionDeleteRing=true +Menus\mEditMenu\mMenuEditGeometry\mActionFillRing=true +Menus\mEditMenu\mMenuEditGeometry\mActionMergeFeatures=true +Menus\mEditMenu\mMenuEditGeometry\mActionMoveFeature=true +Menus\mEditMenu\mMenuEditGeometry\mActionMoveFeatureCopy=true +Menus\mEditMenu\mMenuEditGeometry\mActionOffsetCurve=true +Menus\mEditMenu\mMenuEditGeometry\mActionReshapeFeatures=true +Menus\mEditMenu\mMenuEditGeometry\mActionReverseLine=true +Menus\mEditMenu\mMenuEditGeometry\mActionRotateFeature=true +Menus\mEditMenu\mMenuEditGeometry\mActionScaleFeature=true +Menus\mEditMenu\mMenuEditGeometry\mActionSimplifyFeature=true +Menus\mEditMenu\mMenuEditGeometry\mActionSplitFeatures=true +Menus\mEditMenu\mMenuEditGeometry\mActionSplitParts=true +Menus\mEditMenu\mMenuEditGeometry\mActionTrimExtendFeature=true +Menus\mEditMenu\mMenuEditGeometry\mActionVertexTool=true +Menus\mEditMenu\mMenuEllipse=true +Menus\mEditMenu\mMenuEllipse\mActionEllipseCenter2Points=true +Menus\mEditMenu\mMenuEllipse\mActionEllipseCenterPoint=true +Menus\mEditMenu\mMenuEllipse\mActionEllipseExtent=true +Menus\mEditMenu\mMenuEllipse\mActionEllipseFoci=true +Menus\mEditMenu\mMenuPasteAs=true +Menus\mEditMenu\mMenuPasteAs\mActionPasteAsNewMemoryVector=true +Menus\mEditMenu\mMenuPasteAs\mActionPasteAsNewVector=true +Menus\mEditMenu\mMenuRectangle=true +Menus\mEditMenu\mMenuRectangle\mActionRectangle3PointsDistance=true +Menus\mEditMenu\mMenuRectangle\mActionRectangle3PointsProjected=true +Menus\mEditMenu\mMenuRectangle\mActionRectangleCenterPoint=true +Menus\mEditMenu\mMenuRectangle\mActionRectangleExtent=true +Menus\mEditMenu\mMenuRegularPolygon=true +Menus\mEditMenu\mMenuRegularPolygon\mActionRegularPolygon2Points=true +Menus\mEditMenu\mMenuRegularPolygon\mActionRegularPolygonCenterCorner=true +Menus\mEditMenu\mMenuRegularPolygon\mActionRegularPolygonCenterPoint=true +Menus\mEditMenu\mMenuSelect=true +Menus\mEditMenu\mMenuSelect\mActionDeselectActiveLayer=true +Menus\mEditMenu\mMenuSelect\mActionDeselectAll=true +Menus\mEditMenu\mMenuSelect\mActionInvertSelection=true +Menus\mEditMenu\mMenuSelect\mActionReselect=true +Menus\mEditMenu\mMenuSelect\mActionSelectAll=true +Menus\mEditMenu\mMenuSelect\mActionSelectByExpression=true +Menus\mEditMenu\mMenuSelect\mActionSelectByForm=true +Menus\mEditMenu\mMenuSelect\mActionSelectFeatures=true +Menus\mEditMenu\mMenuSelect\mActionSelectFreehand=true +Menus\mEditMenu\mMenuSelect\mActionSelectPolygon=true +Menus\mEditMenu\mMenuSelect\mActionSelectRadius=true +Menus\mEditMenu\menuSelect=true +Menus\mEditMenu\menuSelect\mActionDeselectAll=true +Menus\mEditMenu\menuSelect\mActionInvertSelection=true +Menus\mEditMenu\menuSelect\mActionSelectAll=true +Menus\mEditMenu\menuSelect\mActionSelectByExpression=true +Menus\mEditMenu\menuSelect\mActionSelectByForm=true +Menus\mEditMenu\menuSelect\mActionSelectFeatures=true +Menus\mEditMenu\menuSelect\mActionSelectFreehand=true +Menus\mEditMenu\menuSelect\mActionSelectPolygon=true +Menus\mEditMenu\menuSelect\mActionSelectRadius=true +Menus\mHelpMenu=false +Menus\mHelpMenu\mActionAbout=true +Menus\mHelpMenu\mActionCheckQgisVersion=true +Menus\mHelpMenu\mActionDonate=true +Menus\mHelpMenu\mActionGetInvolved=true +Menus\mHelpMenu\mActionHelpAPI=true +Menus\mHelpMenu\mActionHelpContents=true +Menus\mHelpMenu\mActionHelpPyQgisAPI=true +Menus\mHelpMenu\mActionNeedSupport=true +Menus\mHelpMenu\mActionQgisHomePage=true +Menus\mHelpMenu\mActionReportaBug=true +Menus\mHelpMenu\mActionSponsors=true +Menus\mHelpMenu\mMenuPluginHelp=true +Menus\mLayerMenu=false +Menus\mLayerMenu\AllEditsMenu=true +Menus\mLayerMenu\AllEditsMenu\mActionCancelAllEdits=true +Menus\mLayerMenu\AllEditsMenu\mActionCancelEdits=true +Menus\mLayerMenu\AllEditsMenu\mActionRollbackAllEdits=true +Menus\mLayerMenu\AllEditsMenu\mActionRollbackEdits=true +Menus\mLayerMenu\AllEditsMenu\mActionSaveAllEdits=true +Menus\mLayerMenu\AllEditsMenu\mActionSaveEdits=true +Menus\mLayerMenu\mActionAddAllToOverview=true +Menus\mLayerMenu\mActionAddLayerDefinition=true +Menus\mLayerMenu\mActionAddToOverview=true +Menus\mLayerMenu\mActionCopyLayer=true +Menus\mLayerMenu\mActionCopyStyle=true +Menus\mLayerMenu\mActionDataSourceManager=true +Menus\mLayerMenu\mActionDuplicateLayer=true +Menus\mLayerMenu\mActionEmbedLayers=true +Menus\mLayerMenu\mActionLabeling=true +Menus\mLayerMenu\mActionLayerProperties=true +Menus\mLayerMenu\mActionLayerSaveAs=true +Menus\mLayerMenu\mActionLayerSubsetString=true +Menus\mLayerMenu\mActionOpenTable=true +Menus\mLayerMenu\mActionPasteLayer=true +Menus\mLayerMenu\mActionPasteStyle=true +Menus\mLayerMenu\mActionRemoveAllFromOverview=true +Menus\mLayerMenu\mActionRemoveLayer=true +Menus\mLayerMenu\mActionSaveLayerDefinition=true +Menus\mLayerMenu\mActionSaveLayerEdits=true +Menus\mLayerMenu\mActionSetLayerCRS=true +Menus\mLayerMenu\mActionSetLayerScaleVisibility=true +Menus\mLayerMenu\mActionSetProjectCRSFromLayer=true +Menus\mLayerMenu\mActionShowGeoreferencer=true +Menus\mLayerMenu\mActionToggleEditing=true +Menus\mLayerMenu\mAddLayerMenu=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddAfsLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddAmsLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddDb2Layer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddDelimitedText=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddGpsLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddHanaLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddLayerSeparator=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddMeshLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddMssqlLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddOgrLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddOracleLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddPgLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddPointCloudLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddRasterLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddSpatiaLiteLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddVectorTileLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddVirtualLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddWcsLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddWfsLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddWmsLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddXyzLayer=true +Menus\mLayerMenu\mMenuFilterTable=true +Menus\mLayerMenu\mMenuFilterTable\mActionOpenTableEdited=true +Menus\mLayerMenu\mMenuFilterTable\mActionOpenTableSelected=true +Menus\mLayerMenu\mMenuFilterTable\mActionOpenTableVisible=true +Menus\mLayerMenu\mNewLayerMenu=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewGeoPackageLayer=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewGpxLayer=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewMemoryLayer=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewMeshLayer=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewSpatiaLiteLayer=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewVectorLayer=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewVirtualLayer=true +Menus\mMeshMenu=false +Menus\mMeshMenu\mActionShowMeshCalculator=true +Menus\mPluginMenu=true +Menus\mPluginMenu\GpsMops=false +Menus\mPluginMenu\PluginReloader=true +Menus\mPluginMenu\mActionManagePlugins=true +Menus\mPluginMenu\mActionShowPythonDialog=true +Menus\mProjectMenu=false +Menus\mProjectMenu\mActionCloseProject=true +Menus\mProjectMenu\mActionExit=true +Menus\mProjectMenu\mActionNewPrintLayout=false +Menus\mProjectMenu\mActionNewProject=true +Menus\mProjectMenu\mActionNewReport=true +Menus\mProjectMenu\mActionOpenProject=true +Menus\mProjectMenu\mActionProjectProperties=true +Menus\mProjectMenu\mActionRevertProject=true +Menus\mProjectMenu\mActionSaveProject=true +Menus\mProjectMenu\mActionSaveProjectAs=true +Menus\mProjectMenu\mActionShowLayoutManager=true +Menus\mProjectMenu\mActionSnappingOptions=true +Menus\mProjectMenu\mLayoutsMenu=true +Menus\mProjectMenu\mProjectFromStorageMenu=true +Menus\mProjectMenu\mProjectFromTemplateMenu=true +Menus\mProjectMenu\mProjectToStorageMenu=true +Menus\mProjectMenu\mRecentProjectsMenu=true +Menus\mProjectMenu\menuImport_Export=true +Menus\mProjectMenu\menuImport_Export\mActionDwgImport=true +Menus\mProjectMenu\menuImport_Export\mActionDxfExport=true +Menus\mProjectMenu\menuImport_Export\mActionSaveMapAsImage=true +Menus\mProjectMenu\menuImport_Export\mActionSaveMapAsPdf=true +Menus\mRasterMenu=false +Menus\mRasterMenu\mActionShowAlignRasterTool=true +Menus\mRasterMenu\mActionShowGeoreferencer=true +Menus\mRasterMenu\mActionShowRasterCalculator=true +Menus\mSettingsMenu=true +Menus\mSettingsMenu\mActionConfigureShortcuts=false +Menus\mSettingsMenu\mActionCustomProjection=false +Menus\mSettingsMenu\mActionCustomization=true +Menus\mSettingsMenu\mActionOptions=true +Menus\mSettingsMenu\mActionStyleManager=false +Menus\mSettingsMenu\mUserProfileMenu=true +Menus\mSettingsMenu\mUserProfileMenu\mActionNewProfile=false +Menus\mSettingsMenu\mUserProfileMenu\mActionOpenActiveProfileFolder=true +Menus\mSettingsMenu\mUserProfileMenu\mActionProfile_MoFa4Q=true +Menus\mSettingsMenu\mUserProfileMenu\mActionProfile_default=true +Menus\mVectorMenu=false +Menus\mViewMenu=false +Menus\mViewMenu\m3DMapViewsMenu=true +Menus\mViewMenu\m3DMapViewsMenu\mActionManage3DMapViews=true +Menus\mViewMenu\m3DMapViewsMenu\mActionNew3DMapCanvas=true +Menus\mViewMenu\mActionDraw=true +Menus\mViewMenu\mActionElevationProfile=true +Menus\mViewMenu\mActionHideAllLayers=true +Menus\mViewMenu\mActionHideDeselectedLayers=true +Menus\mViewMenu\mActionHideSelectedLayers=true +Menus\mViewMenu\mActionIdentify=true +Menus\mViewMenu\mActionMapTips=true +Menus\mViewMenu\mActionNew3DMapCanvas=true +Menus\mViewMenu\mActionNewBookmark=true +Menus\mViewMenu\mActionNewMapCanvas=true +Menus\mViewMenu\mActionPan=true +Menus\mViewMenu\mActionPanToSelected=true +Menus\mViewMenu\mActionShowAllLayers=true +Menus\mViewMenu\mActionShowBookmarkManager=true +Menus\mViewMenu\mActionShowBookmarks=true +Menus\mViewMenu\mActionShowSelectedLayers=true +Menus\mViewMenu\mActionStatisticalSummary=true +Menus\mViewMenu\mActionToggleFullScreen=true +Menus\mViewMenu\mActionToggleMapOnly=true +Menus\mViewMenu\mActionTogglePanelsVisibility=true +Menus\mViewMenu\mActionZoomActualSize=true +Menus\mViewMenu\mActionZoomFullExtent=true +Menus\mViewMenu\mActionZoomIn=true +Menus\mViewMenu\mActionZoomLast=true +Menus\mViewMenu\mActionZoomNext=true +Menus\mViewMenu\mActionZoomOut=true +Menus\mViewMenu\mActionZoomToLayer=true +Menus\mViewMenu\mActionZoomToLayers=true +Menus\mViewMenu\mActionZoomToSelected=true +Menus\mViewMenu\mMenuDecorations=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationCopyright=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationGrid=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationImage=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationLayoutExtent=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationNorthArrow=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationScaleBar=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationTitle=true +Menus\mViewMenu\mMenuLayerVisibility=true +Menus\mViewMenu\mMenuLayerVisibility\mActionHideAllLayers=true +Menus\mViewMenu\mMenuLayerVisibility\mActionHideDeselectedLayers=true +Menus\mViewMenu\mMenuLayerVisibility\mActionHideSelectedLayers=true +Menus\mViewMenu\mMenuLayerVisibility\mActionShowAllLayers=true +Menus\mViewMenu\mMenuLayerVisibility\mActionShowSelectedLayers=true +Menus\mViewMenu\mMenuLayerVisibility\mActionToggleSelectedLayers=true +Menus\mViewMenu\mMenuLayerVisibility\mActionToggleSelectedLayersIndependently=true +Menus\mViewMenu\mMenuMeasure=true +Menus\mViewMenu\mMenuMeasure\mActionMeasure=true +Menus\mViewMenu\mMenuMeasure\mActionMeasureAngle=true +Menus\mViewMenu\mMenuMeasure\mActionMeasureArea=true +Menus\mViewMenu\mMenuMeasure\mActionMeasureBearing=true +Menus\mViewMenu\mMenuPreviewMode=true +Menus\mViewMenu\mMenuPreviewMode\mActionPreviewDeuteranope=true +Menus\mViewMenu\mMenuPreviewMode\mActionPreviewModeGrayscale=true +Menus\mViewMenu\mMenuPreviewMode\mActionPreviewModeMono=true +Menus\mViewMenu\mMenuPreviewMode\mActionPreviewModeOff=true +Menus\mViewMenu\mMenuPreviewMode\mActionPreviewProtanope=true +Menus\mViewMenu\mMenuPreviewMode\mActionPreviewTritanope=true +Menus\mViewMenu\mPanelMenu=true +Menus\mViewMenu\mToolbarMenu=true +Menus\mViewMenu\mToolbarMenu\mActionToggleAdvancedDigitizeToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleAnnotationsToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleAttributesToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleDataSourceManagerToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleDatabaseToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleDigitizeToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleFileToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleHelpToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleLabelToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleLayerToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleMapNavToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleMeshToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionTogglePluginToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleRasterToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleSelectionToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleShapeDigitizeToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleSnappingToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleVectorToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleWebToolBar=true +Menus\mViewMenu\menuDecorations=true +Menus\mViewMenu\menuDecorations\mActionDecorationCopyright=true +Menus\mViewMenu\menuDecorations\mActionDecorationGrid=true +Menus\mViewMenu\menuDecorations\mActionDecorationLayoutExtent=true +Menus\mViewMenu\menuDecorations\mActionDecorationNorthArrow=true +Menus\mViewMenu\menuDecorations\mActionDecorationScaleBar=true +Menus\mViewMenu\menuDecorations\mActionDecorationTitle=true +Menus\mViewMenu\menuMeasure=true +Menus\mViewMenu\menuMeasure\mActionMeasure=true +Menus\mViewMenu\menuMeasure\mActionMeasureAngle=true +Menus\mViewMenu\menuMeasure\mActionMeasureArea=true +Menus\mWebMenu=false +Menus\mWebMenu\MetaSearch=true +Menus\processing=false +Menus\processing\editInPlaceFeatures=true +Menus\processing\historyAction=true +Menus\processing\modelerAction=true +Menus\processing\resultsViewer=true +Menus\processing\toolboxAction=true +StatusBar=true +StatusBar\LocatorWidget=true +StatusBar\mCoordsEdit=true +StatusBar\mMagnifierWidget=true +StatusBar\mMessageLogViewerButton=true +StatusBar\mOntheFlyProjectionStatusButton=true +StatusBar\mProgressBar=true +StatusBar\mRenderSuppressionCBox=true +StatusBar\mRotationEdit=true +StatusBar\mRotationLabel=true +StatusBar\mScaleWidget=true +Toolbars=false +Toolbars\mAdvancedDigitizeToolBar=false +Toolbars\mAdvancedDigitizeToolBar\ActionMoveFeatureTool=true +Toolbars\mAdvancedDigitizeToolBar\ActionMoveFeatureTool\mActionMoveFeature=true +Toolbars\mAdvancedDigitizeToolBar\ActionMoveFeatureTool\mActionMoveFeatureCopy=true +Toolbars\mAdvancedDigitizeToolBar\ActionPointSymbolTools=true +Toolbars\mAdvancedDigitizeToolBar\ActionPointSymbolTools\mActionOffsetPointSymbol=true +Toolbars\mAdvancedDigitizeToolBar\ActionPointSymbolTools\mActionRotatePointSymbols=true +Toolbars\mAdvancedDigitizeToolBar\mActionAddPart=true +Toolbars\mAdvancedDigitizeToolBar\mActionAddRing=true +Toolbars\mAdvancedDigitizeToolBar\mActionDeletePart=true +Toolbars\mAdvancedDigitizeToolBar\mActionDeleteRing=true +Toolbars\mAdvancedDigitizeToolBar\mActionFillRing=true +Toolbars\mAdvancedDigitizeToolBar\mActionMergeFeatureAttributes=true +Toolbars\mAdvancedDigitizeToolBar\mActionMergeFeatures=true +Toolbars\mAdvancedDigitizeToolBar\mActionOffsetCurve=true +Toolbars\mAdvancedDigitizeToolBar\mActionReshapeFeatures=true +Toolbars\mAdvancedDigitizeToolBar\mActionReverseLine=true +Toolbars\mAdvancedDigitizeToolBar\mActionRotateFeature=true +Toolbars\mAdvancedDigitizeToolBar\mActionScaleFeature=true +Toolbars\mAdvancedDigitizeToolBar\mActionSimplifyFeature=true +Toolbars\mAdvancedDigitizeToolBar\mActionSplitFeatures=true +Toolbars\mAdvancedDigitizeToolBar\mActionSplitParts=true +Toolbars\mAdvancedDigitizeToolBar\mActionTrimExtendFeature=true +Toolbars\mAdvancedDigitizeToolBar\mEnableAction=true +Toolbars\mAnnotationsToolBar=true +Toolbars\mAnnotationsToolBar\ActionAnnotation=false +Toolbars\mAnnotationsToolBar\ActionAnnotation\mActionAnnotation=false +Toolbars\mAnnotationsToolBar\ActionAnnotation\mActionFormAnnotation=false +Toolbars\mAnnotationsToolBar\ActionAnnotation\mActionHtmlAnnotation=false +Toolbars\mAnnotationsToolBar\ActionAnnotation\mActionSvgAnnotation=false +Toolbars\mAnnotationsToolBar\ActionAnnotation\mActionTextAnnotation=false +Toolbars\mAnnotationsToolBar\mActionModifyAnnotation=false +Toolbars\mAttributesToolBar=false +Toolbars\mAttributesToolBar\ActionAnnotation=false +Toolbars\mAttributesToolBar\ActionFeatureAction=false +Toolbars\mAttributesToolBar\ActionFeatureAction\mActionFeatureAction=true +Toolbars\mAttributesToolBar\ActionMeasure=false +Toolbars\mAttributesToolBar\ActionMeasure\mActionMeasure=true +Toolbars\mAttributesToolBar\ActionMeasure\mActionMeasureAngle=true +Toolbars\mAttributesToolBar\ActionMeasure\mActionMeasureArea=true +Toolbars\mAttributesToolBar\ActionMeasure\mActionMeasureBearing=true +Toolbars\mAttributesToolBar\ActionOpenTable=true +Toolbars\mAttributesToolBar\ActionOpenTable\mActionOpenTable=true +Toolbars\mAttributesToolBar\ActionOpenTable\mActionOpenTableEdited=true +Toolbars\mAttributesToolBar\ActionOpenTable\mActionOpenTableSelected=true +Toolbars\mAttributesToolBar\ActionOpenTable\mActionOpenTableVisible=true +Toolbars\mAttributesToolBar\ActionSelect=false +Toolbars\mAttributesToolBar\ActionSelection=false +Toolbars\mAttributesToolBar\mActionDeselectAll=false +Toolbars\mAttributesToolBar\mActionIdentify=true +Toolbars\mAttributesToolBar\mActionMapTips=false +Toolbars\mAttributesToolBar\mActionOpenFieldCalc=false +Toolbars\mAttributesToolBar\mActionOpenTable=false +Toolbars\mAttributesToolBar\mActionStatisticalSummary=false +Toolbars\mAttributesToolBar\toolboxAction=false +Toolbars\mDataSourceManagerToolBar=false +Toolbars\mDataSourceManagerToolBar\mActionDataSourceManager=false +Toolbars\mDataSourceManagerToolBar\mActionNewGeoPackageLayer=false +Toolbars\mDataSourceManagerToolBar\mActionNewMemoryLayer=false +Toolbars\mDataSourceManagerToolBar\mActionNewMeshLayer=true +Toolbars\mDataSourceManagerToolBar\mActionNewSpatiaLiteLayer=false +Toolbars\mDataSourceManagerToolBar\mActionNewVectorLayer=false +Toolbars\mDataSourceManagerToolBar\mActionNewVirtualLayer=false +Toolbars\mDatabaseToolBar=false +Toolbars\mDatabaseToolBar\dbManager=true +Toolbars\mDigitizeToolBar=false +Toolbars\mDigitizeToolBar\ActionVertexTool=true +Toolbars\mDigitizeToolBar\ActionVertexTool\mActionVertexTool=true +Toolbars\mDigitizeToolBar\ActionVertexTool\mActionVertexToolActiveLayer=true +Toolbars\mDigitizeToolBar\AllEditsMenu=true +Toolbars\mDigitizeToolBar\AllEditsMenu\mActionCancelAllEdits=true +Toolbars\mDigitizeToolBar\AllEditsMenu\mActionCancelEdits=true +Toolbars\mDigitizeToolBar\AllEditsMenu\mActionRollbackAllEdits=true +Toolbars\mDigitizeToolBar\AllEditsMenu\mActionRollbackEdits=true +Toolbars\mDigitizeToolBar\AllEditsMenu\mActionSaveAllEdits=true +Toolbars\mDigitizeToolBar\AllEditsMenu\mActionSaveEdits=true +Toolbars\mDigitizeToolBar\mActionAddFeature=true +Toolbars\mDigitizeToolBar\mActionCopyFeatures=true +Toolbars\mDigitizeToolBar\mActionCutFeatures=true +Toolbars\mDigitizeToolBar\mActionDeleteSelected=true +Toolbars\mDigitizeToolBar\mActionMultiEditAttributes=true +Toolbars\mDigitizeToolBar\mActionPasteFeatures=true +Toolbars\mDigitizeToolBar\mActionRedo=true +Toolbars\mDigitizeToolBar\mActionSaveLayerEdits=true +Toolbars\mDigitizeToolBar\mActionToggleEditing=false +Toolbars\mDigitizeToolBar\mActionUndo=true +Toolbars\mDigitizeToolBar\mActionVertexTool=true +Toolbars\mFileToolBar=false +Toolbars\mFileToolBar\mActionNewPrintLayout=false +Toolbars\mFileToolBar\mActionNewProject=false +Toolbars\mFileToolBar\mActionOpenProject=false +Toolbars\mFileToolBar\mActionSaveProject=false +Toolbars\mFileToolBar\mActionShowLayoutManager=true +Toolbars\mFileToolBar\mActionStyleManager=false +Toolbars\mGpsToolBar=false +Toolbars\mHelpToolBar=false +Toolbars\mHelpToolBar\mActionHelpContents=false +Toolbars\mLabelToolBar=false +Toolbars\mLabelToolBar\mActionChangeLabelProperties=false +Toolbars\mLabelToolBar\mActionDiagramProperties=false +Toolbars\mLabelToolBar\mActionLabeling=false +Toolbars\mLabelToolBar\mActionMoveLabel=false +Toolbars\mLabelToolBar\mActionPinLabels=false +Toolbars\mLabelToolBar\mActionRotateLabel=false +Toolbars\mLabelToolBar\mActionShowHideLabels=false +Toolbars\mLabelToolBar\mActionShowPinnedLabels=false +Toolbars\mLabelToolBar\mActionShowUnplacedLabels=true +Toolbars\mLayerToolBar=false +Toolbars\mLayerToolBar\ActionAddDbLayer=true +Toolbars\mLayerToolBar\ActionAddDbLayer\mActionAddHanaLayer=true +Toolbars\mLayerToolBar\ActionAddDbLayer\mActionAddMssqlLayer=true +Toolbars\mLayerToolBar\ActionAddDbLayer\mActionAddOracleLayer=true +Toolbars\mLayerToolBar\ActionAddDbLayer\mActionAddPgLayer=true +Toolbars\mLayerToolBar\ActionFeatureService=true +Toolbars\mLayerToolBar\ActionMapService=true +Toolbars\mLayerToolBar\ActionNewLayer=true +Toolbars\mLayerToolBar\ActionNewLayer\mActionNewGeoPackageLayer=true +Toolbars\mLayerToolBar\ActionNewLayer\mActionNewMemoryLayer=true +Toolbars\mLayerToolBar\ActionNewLayer\mActionNewSpatiaLiteLayer=true +Toolbars\mLayerToolBar\ActionNewLayer\mActionNewVectorLayer=true +Toolbars\mLayerToolBar\mActionAddDelimitedText=true +Toolbars\mLayerToolBar\mActionAddMeshLayer=true +Toolbars\mLayerToolBar\mActionAddOgrLayer=true +Toolbars\mLayerToolBar\mActionAddRasterLayer=true +Toolbars\mLayerToolBar\mActionAddSpatiaLiteLayer=true +Toolbars\mLayerToolBar\mActionAddVirtualLayer=true +Toolbars\mLayerToolBar\mActionAddWcsLayer=true +Toolbars\mLayerToolBar\mActionAddWfsLayer=true +Toolbars\mLayerToolBar\mActionAddWmsLayer=true +Toolbars\mMapNavToolBar=false +Toolbars\mMapNavToolBar\mActionDraw=true +Toolbars\mMapNavToolBar\mActionNew3DMapCanvas=true +Toolbars\mMapNavToolBar\mActionNewBookmark=false +Toolbars\mMapNavToolBar\mActionNewMapCanvas=false +Toolbars\mMapNavToolBar\mActionPan=false +Toolbars\mMapNavToolBar\mActionPanToSelected=false +Toolbars\mMapNavToolBar\mActionShowBookmarks=false +Toolbars\mMapNavToolBar\mActionTemporalController=true +Toolbars\mMapNavToolBar\mActionZoomActualSize=false +Toolbars\mMapNavToolBar\mActionZoomFullExtent=true +Toolbars\mMapNavToolBar\mActionZoomIn=true +Toolbars\mMapNavToolBar\mActionZoomLast=false +Toolbars\mMapNavToolBar\mActionZoomNext=false +Toolbars\mMapNavToolBar\mActionZoomOut=true +Toolbars\mMapNavToolBar\mActionZoomToLayer=true +Toolbars\mMapNavToolBar\mActionZoomToLayers=true +Toolbars\mMapNavToolBar\mActionZoomToSelected=false +Toolbars\mMeshToolBar=false +Toolbars\mPluginToolBar=false +Toolbars\mPluginToolBar\mActionShowPythonDialog=false +Toolbars\mRasterToolBar=false +Toolbars\mRasterToolBar\mActionDecreaseBrightness=true +Toolbars\mRasterToolBar\mActionDecreaseContrast=true +Toolbars\mRasterToolBar\mActionDecreaseGamma=true +Toolbars\mRasterToolBar\mActionFullCumulativeCutStretch=true +Toolbars\mRasterToolBar\mActionFullHistogramStretch=true +Toolbars\mRasterToolBar\mActionIncreaseBrightness=true +Toolbars\mRasterToolBar\mActionIncreaseContrast=true +Toolbars\mRasterToolBar\mActionIncreaseGamma=true +Toolbars\mRasterToolBar\mActionLocalCumulativeCutStretch=true +Toolbars\mRasterToolBar\mActionLocalHistogramStretch=true +Toolbars\mSelectionToolBar=false +Toolbars\mSelectionToolBar\ActionDeselection=true +Toolbars\mSelectionToolBar\ActionDeselection\mActionDeselectActiveLayer=true +Toolbars\mSelectionToolBar\ActionDeselection\mActionDeselectAll=true +Toolbars\mSelectionToolBar\ActionSelect=true +Toolbars\mSelectionToolBar\ActionSelect\mActionSelectFeatures=true +Toolbars\mSelectionToolBar\ActionSelect\mActionSelectFreehand=true +Toolbars\mSelectionToolBar\ActionSelect\mActionSelectPolygon=true +Toolbars\mSelectionToolBar\ActionSelect\mActionSelectRadius=true +Toolbars\mSelectionToolBar\ActionSelection=true +Toolbars\mSelectionToolBar\ActionSelection\mActionInvertSelection=true +Toolbars\mSelectionToolBar\ActionSelection\mActionSelectAll=true +Toolbars\mSelectionToolBar\ActionSelection\mActionSelectByExpression=true +Toolbars\mSelectionToolBar\ActionSelection\mActionSelectByForm=true +Toolbars\mSelectionToolBar\mProcessingAlg_native%3Aselectbylocation=true +Toolbars\mShapeDigitizeToolBar=false +Toolbars\mShapeDigitizeToolBar\ActionAddCircle=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircle\mActionCircle2Points=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircle\mActionCircle2TangentsPoint=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircle\mActionCircle3Points=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircle\mActionCircle3Tangents=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircle\mActionCircleCenterPoint=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircularString=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircularString\mActionCircularStringCurvePoint=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircularString\mActionCircularStringRadius=true +Toolbars\mShapeDigitizeToolBar\ActionAddEllipse=true +Toolbars\mShapeDigitizeToolBar\ActionAddEllipse\mActionEllipseCenter2Points=true +Toolbars\mShapeDigitizeToolBar\ActionAddEllipse\mActionEllipseCenterPoint=true +Toolbars\mShapeDigitizeToolBar\ActionAddEllipse\mActionEllipseExtent=true +Toolbars\mShapeDigitizeToolBar\ActionAddEllipse\mActionEllipseFoci=true +Toolbars\mShapeDigitizeToolBar\ActionAddRectangle=true +Toolbars\mShapeDigitizeToolBar\ActionAddRectangle\mActionRectangle3PointsDistance=true +Toolbars\mShapeDigitizeToolBar\ActionAddRectangle\mActionRectangle3PointsProjected=true +Toolbars\mShapeDigitizeToolBar\ActionAddRectangle\mActionRectangleCenterPoint=true +Toolbars\mShapeDigitizeToolBar\ActionAddRectangle\mActionRectangleExtent=true +Toolbars\mShapeDigitizeToolBar\ActionAddRegularPolygon=true +Toolbars\mShapeDigitizeToolBar\ActionAddRegularPolygon\mActionRegularPolygon2Points=true +Toolbars\mShapeDigitizeToolBar\ActionAddRegularPolygon\mActionRegularPolygonCenterCorner=true +Toolbars\mShapeDigitizeToolBar\ActionAddRegularPolygon\mActionRegularPolygonCenterPoint=true +Toolbars\mSnappingToolBar=false +Toolbars\mSnappingToolBar\EnableSnappingAction=true +Toolbars\mSnappingToolBar\IntersectionSnappingAction=true +Toolbars\mSnappingToolBar\SelfSnappingAction=true +Toolbars\mSnappingToolBar\TopologicalEditingAction=true +Toolbars\mVectorToolBar=false +Toolbars\mWebToolBar=false +Widgets=true +Widgets\MainWindow=true +Widgets\MainWindow\centralwidget=true +Widgets\QgsAbout=true +Widgets\QgsAbout\buttonBox=true +Widgets\QgsAbout\tabWidget=true +Widgets\QgsAbout\tabWidget\TabPage=true +Widgets\QgsAbout\tabWidget\TabPage\txtProviders=true +Widgets\QgsAbout\tabWidget\TabPage\txtProviders\qt_scrollarea_hcontainer=true +Widgets\QgsAbout\tabWidget\TabPage\txtProviders\qt_scrollarea_vcontainer=true +Widgets\QgsAbout\tabWidget\TabPage\txtProviders\qt_scrollarea_viewport=true +Widgets\QgsAbout\tabWidget\Widget2=true +Widgets\QgsAbout\tabWidget\Widget2\TextLabel4=true +Widgets\QgsAbout\tabWidget\Widget2\btnQgisHome=true +Widgets\QgsAbout\tabWidget\Widget2\btnQgisUser=true +Widgets\QgsAbout\tabWidget\Widget2\label=true +Widgets\QgsAbout\tabWidget\Widget2\label_2=true +Widgets\QgsAbout\tabWidget\Widget2\qgisIcon=true +Widgets\QgsAbout\tabWidget\Widget3=true +Widgets\QgsAbout\tabWidget\Widget3\txtWhatsNew=true +Widgets\QgsAbout\tabWidget\Widget3\txtWhatsNew\qt_scrollarea_hcontainer=true +Widgets\QgsAbout\tabWidget\Widget3\txtWhatsNew\qt_scrollarea_vcontainer=true +Widgets\QgsAbout\tabWidget\Widget3\txtWhatsNew\qt_scrollarea_viewport=true +Widgets\QgsAbout\tabWidget\tab=true +Widgets\QgsAbout\tabWidget\tab\label_3=true +Widgets\QgsAbout\tabWidget\tab\label_4=true +Widgets\QgsAbout\tabWidget\tab_3=true +Widgets\QgsAbout\tabWidget\tab_4=true +Widgets\QgsAbout\tabWidget\tab_4\txtDonors=true +Widgets\QgsAbout\tabWidget\tab_4\txtDonors\qt_scrollarea_hcontainer=true +Widgets\QgsAbout\tabWidget\tab_4\txtDonors\qt_scrollarea_vcontainer=true +Widgets\QgsAbout\tabWidget\tab_4\txtDonors\qt_scrollarea_viewport=true +Widgets\QgsAbout\tabWidget\tab_5=true +Widgets\QgsAddAttrDialogBase=true +Widgets\QgsAddAttrDialogBase\buttonBox=true +Widgets\QgsAddAttrDialogBase\mCommentEdit=true +Widgets\QgsAddAttrDialogBase\mLength=true +Widgets\QgsAddAttrDialogBase\mLength\qt_spinbox_lineedit=true +Widgets\QgsAddAttrDialogBase\mNameEdit=true +Widgets\QgsAddAttrDialogBase\mPrec=true +Widgets\QgsAddAttrDialogBase\mPrec\qt_spinbox_lineedit=true +Widgets\QgsAddAttrDialogBase\mTypeBox=true +Widgets\QgsAddAttrDialogBase\mTypeName=true +Widgets\QgsAddAttrDialogBase\textLabel1=true +Widgets\QgsAddAttrDialogBase\textLabel1_2=true +Widgets\QgsAddAttrDialogBase\textLabel2=true +Widgets\QgsAddAttrDialogBase\textLabel2_2=true +Widgets\QgsAddAttrDialogBase\textLabel2_3=true +Widgets\QgsAddJoinDialogBase=true +Widgets\QgsAddJoinDialogBase\buttonBox=true +Widgets\QgsAddJoinDialogBase\mCacheInMemoryCheckBox=true +Widgets\QgsAddJoinDialogBase\mCreateIndexCheckBox=true +Widgets\QgsAddJoinDialogBase\mJoinFieldComboBox=true +Widgets\QgsAddJoinDialogBase\mJoinFieldLabel=true +Widgets\QgsAddJoinDialogBase\mJoinLayerComboBox=true +Widgets\QgsAddJoinDialogBase\mJoinLayerLabel=true +Widgets\QgsAddJoinDialogBase\mTargetFieldComboBox=true +Widgets\QgsAddJoinDialogBase\mTargetFieldLabel=true +Widgets\QgsAddTabOrGroupBase=true +Widgets\QgsAddTabOrGroupBase\buttonBox=true +Widgets\QgsAddTabOrGroupBase\label=true +Widgets\QgsAddTabOrGroupBase\label_2=true +Widgets\QgsAddTabOrGroupBase\mGroupButton=true +Widgets\QgsAddTabOrGroupBase\mName=true +Widgets\QgsAddTabOrGroupBase\mTabButton=true +Widgets\QgsAddTabOrGroupBase\mTabList=true +Widgets\QgsAnnotationWidgetBase=true +Widgets\QgsAnnotationWidgetBase\mBackgroundColorLabel=true +Widgets\QgsAnnotationWidgetBase\mFrameColorLabel=true +Widgets\QgsAnnotationWidgetBase\mFrameWidthLabel=true +Widgets\QgsAnnotationWidgetBase\mMapMarkerButton=true +Widgets\QgsAnnotationWidgetBase\mMapMarkerLabel=true +Widgets\QgsAnnotationWidgetBase\mMapPositionFixedCheckBox=true +Widgets\QgsAtlasCompositionWidgetBase=true +Widgets\QgsAttributeActionDialogBase=true +Widgets\QgsAttributeLoadValues=true +Widgets\QgsAttributeLoadValues\buttonBox=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\keyComboBox=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\keyLabel=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\layerComboBox=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\layerLabel=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\previewButton=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\valueComboBox=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\valueLabel=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\valueTableLabel=true +Widgets\QgsAttributeSelectionDialogBase=true +Widgets\QgsAttributeSelectionDialogBase\buttonBox=true +Widgets\QgsAttributeSelectionDialogBase\mClearButton=true +Widgets\QgsAttributeSelectionDialogBase\mSelectAllButton=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox\mAddPushButton=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox\mDownPushButton=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox\mOrderComboBox=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox\mRemovePushButton=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox\mSortColumnComboBox=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox\mUpPushButton=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mAliasLabel=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mAttributeLabel=true +Widgets\QgsAttributeTypeDialog=true +Widgets\QgsAttributeTypeDialog\buttonBox=true +Widgets\QgsAttributeTypeDialog\isFieldEditableCheckBox=true +Widgets\QgsAttributeTypeDialog\labelOnTopCheckBox=true +Widgets\QgsAttributeTypeDialog\stackedWidget=true +Widgets\QgsAttributeTypeDialog\stackedWidget\calendarPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\calendarPage\label_10=true +Widgets\QgsAttributeTypeDialog\stackedWidget\calendarPage\label_11=true +Widgets\QgsAttributeTypeDialog\stackedWidget\calendarPage\label_4=true +Widgets\QgsAttributeTypeDialog\stackedWidget\calendarPage\leDateFormat=true +Widgets\QgsAttributeTypeDialog\stackedWidget\checkBoxPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\checkBoxPage\label_2=true +Widgets\QgsAttributeTypeDialog\stackedWidget\checkBoxPage\label_3=true +Widgets\QgsAttributeTypeDialog\stackedWidget\checkBoxPage\leCheckedState=true +Widgets\QgsAttributeTypeDialog\stackedWidget\checkBoxPage\leUncheckedState=true +Widgets\QgsAttributeTypeDialog\stackedWidget\classificationPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\classificationPage\classificationLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\colorPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\colorPage\label_15=true +Widgets\QgsAttributeTypeDialog\stackedWidget\enumerationPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\enumerationPage\enumerationLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\enumerationPage\enumerationWarningLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\fileNamePage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\fileNamePage\fileNameLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\hiddenPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\hiddenPage\hiddenLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\immutablePage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\immutablePage\immutableLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\lineEditPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\lineEditPage\lineEditLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\label_12=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\label_13=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\pictureOrUrlLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\sbWidgetHeight=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\sbWidgetHeight\qt_spinbox_lineedit=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\sbWidgetWidth=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\sbWidgetWidth\qt_spinbox_lineedit=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\maximumLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\minimumLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\doublePage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage\maximumSpinBox=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage\maximumSpinBox\qt_spinbox_lineedit=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage\minimumSpinBox=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage\minimumSpinBox\qt_spinbox_lineedit=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage\stepSpinBox=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage\stepSpinBox\qt_spinbox_lineedit=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeWidget=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\stepLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\valuesLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\textEditPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\textEditPage\hiddenLabel_3=true +Widgets\QgsAttributeTypeDialog\stackedWidget\uniqueValuesPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\uniqueValuesPage\editableUniqueValues=true +Widgets\QgsAttributeTypeDialog\stackedWidget\uniqueValuesPage\label=true +Widgets\QgsAttributeTypeDialog\stackedWidget\uuidGenPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\uuidGenPage\label_9=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueMapPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueMapPage\loadFromCSVButton=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueMapPage\loadFromLayerButton=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueMapPage\removeSelectedButton=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueMapPage\valueMapLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\label_19=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\label_5=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\label_6=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\label_7=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\label_8=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationAllowMulti=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationAllowNull=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationFilterExpression=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationFilterExpression\qt_scrollarea_hcontainer=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationFilterExpression\qt_scrollarea_vcontainer=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationFilterExpression\qt_scrollarea_viewport=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationKeyColumn=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationLayer=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationOrderByValue=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationValueColumn=true +Widgets\QgsBookmarksBase=true +Widgets\QgsBookmarksBase\buttonBox=true +Widgets\QgsBrowserDirectoryPropertiesBase=true +Widgets\QgsBrowserDirectoryPropertiesBase\buttonBox=true +Widgets\QgsBrowserDirectoryPropertiesBase\label_2=true +Widgets\QgsBrowserDirectoryPropertiesBase\leSource=true +Widgets\QgsBrowserDockWidgetBase=true +Widgets\QgsBrowserDockWidgetBase\mContents=true +Widgets\QgsBrowserDockWidgetBase\mContents\mWidgetFilter=true +Widgets\QgsBrowserLayerPropertiesBase=true +Widgets\QgsBrowserLayerPropertiesBase\buttonBox=true +Widgets\QgsBrowserLayerPropertiesBase\label=true +Widgets\QgsBrowserLayerPropertiesBase\label_2=true +Widgets\QgsBrowserLayerPropertiesBase\label_3=true +Widgets\QgsBrowserLayerPropertiesBase\label_4=true +Widgets\QgsBrowserLayerPropertiesBase\lblNotice=true +Widgets\QgsBrowserLayerPropertiesBase\leName=true +Widgets\QgsBrowserLayerPropertiesBase\leProvider=true +Widgets\QgsBrowserLayerPropertiesBase\leSource=true +Widgets\QgsBrowserLayerPropertiesBase\txtbMetadata=true +Widgets\QgsBrowserLayerPropertiesBase\txtbMetadata\qt_scrollarea_hcontainer=true +Widgets\QgsBrowserLayerPropertiesBase\txtbMetadata\qt_scrollarea_vcontainer=true +Widgets\QgsBrowserLayerPropertiesBase\txtbMetadata\qt_scrollarea_viewport=true +Widgets\QgsCategorizedSymbolRendererV2Widget=true +Widgets\QgsCategorizedSymbolRendererV2Widget\btnAddCategories=true +Widgets\QgsCategorizedSymbolRendererV2Widget\btnAddCategory=true +Widgets\QgsCategorizedSymbolRendererV2Widget\btnAdvanced=true +Widgets\QgsCategorizedSymbolRendererV2Widget\btnChangeCategorizedSymbol=true +Widgets\QgsCategorizedSymbolRendererV2Widget\btnDeleteAllCategories=true +Widgets\QgsCategorizedSymbolRendererV2Widget\btnDeleteCategories=true +Widgets\QgsCategorizedSymbolRendererV2Widget\cboCategorizedColumn=true +Widgets\QgsCategorizedSymbolRendererV2Widget\label_10=true +Widgets\QgsCategorizedSymbolRendererV2Widget\label_3=true +Widgets\QgsCategorizedSymbolRendererV2Widget\label_9=true +Widgets\QgsCharacterSelectorBase=true +Widgets\QgsCharacterSelectorBase\mCharSelectButtonBox=true +Widgets\QgsCharacterSelectorBase\mCharSelectLabel=true +Widgets\QgsCharacterSelectorBase\mCharSelectLabelFont=true +Widgets\QgsCharacterSelectorBase\mCharSelectScrollArea=true +Widgets\QgsCharacterSelectorBase\mCharSelectScrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsCharacterSelectorBase\mCharSelectScrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsCharacterSelectorBase\mCharSelectScrollArea\qt_scrollarea_viewport=true +Widgets\QgsCharacterSelectorBase\mCharSelectScrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerArrowWidgetBase=true +Widgets\QgsComposerArrowWidgetBase\label_3=true +Widgets\QgsComposerArrowWidgetBase\scrollArea=true +Widgets\QgsComposerArrowWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerArrowWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerArrowWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerArrowWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerBase=true +Widgets\QgsComposerBase\centralwidget=true +Widgets\QgsComposerBase\centralwidget\mButtonBox=true +Widgets\QgsComposerHtmlWidgetBase=true +Widgets\QgsComposerHtmlWidgetBase\label=true +Widgets\QgsComposerHtmlWidgetBase\scrollArea=true +Widgets\QgsComposerHtmlWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerHtmlWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerHtmlWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerHtmlWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerItemWidgetBase=true +Widgets\QgsComposerLabelWidgetBase=true +Widgets\QgsComposerLabelWidgetBase\label=true +Widgets\QgsComposerLabelWidgetBase\scrollArea=true +Widgets\QgsComposerLabelWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerLabelWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerLabelWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerLabelWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerLegendItemDialogBase=true +Widgets\QgsComposerLegendItemDialogBase\buttonBox=true +Widgets\QgsComposerLegendItemDialogBase\mItemTextLabel=true +Widgets\QgsComposerLegendItemDialogBase\mItemTextLineEdit=true +Widgets\QgsComposerLegendLayersDialogBase=false +Widgets\QgsComposerLegendLayersDialogBase\buttonBox=false +Widgets\QgsComposerLegendWidgetBase=true +Widgets\QgsComposerLegendWidgetBase\label_11=true +Widgets\QgsComposerLegendWidgetBase\scrollArea=true +Widgets\QgsComposerLegendWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerLegendWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerLegendWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerLegendWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerManagerBase=true +Widgets\QgsComposerManagerBase\mButtonBox=true +Widgets\QgsComposerMapWidgetBase=true +Widgets\QgsComposerMapWidgetBase\label_3=true +Widgets\QgsComposerMapWidgetBase\scrollArea=true +Widgets\QgsComposerMapWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerMapWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerMapWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerMapWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerPictureWidgetBase=true +Widgets\QgsComposerPictureWidgetBase\label_2=true +Widgets\QgsComposerPictureWidgetBase\scrollArea=true +Widgets\QgsComposerPictureWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerPictureWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerPictureWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerPictureWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerScaleBarWidgetBase=true +Widgets\QgsComposerScaleBarWidgetBase\label_5=true +Widgets\QgsComposerScaleBarWidgetBase\scrollArea=true +Widgets\QgsComposerScaleBarWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerScaleBarWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerScaleBarWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerScaleBarWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerShapeWidgetBase=true +Widgets\QgsComposerShapeWidgetBase\label_2=true +Widgets\QgsComposerShapeWidgetBase\scrollArea=true +Widgets\QgsComposerShapeWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerShapeWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerShapeWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerShapeWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerTableWidgetBase=true +Widgets\QgsComposerTableWidgetBase\label=true +Widgets\QgsComposerTableWidgetBase\scrollArea=true +Widgets\QgsComposerTableWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerTableWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerTableWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerTableWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerVectorLegendBase=true +Widgets\QgsComposerVectorLegendBase\mFontButton=true +Widgets\QgsComposerVectorLegendBase\mFrameCheckBox=true +Widgets\QgsComposerVectorLegendBase\mMapComboBox=true +Widgets\QgsComposerVectorLegendBase\mPreviewModeComboBox=true +Widgets\QgsComposerVectorLegendBase\mTitleLineEdit=true +Widgets\QgsComposerVectorLegendBase\textLabel1=true +Widgets\QgsComposerVectorLegendBase\textLabel1_2=true +Widgets\QgsComposerVectorLegendBase\textLabel1_5=true +Widgets\QgsCompositionBase=true +Widgets\QgsCompositionBase\groupBox=true +Widgets\QgsCompositionBase\groupBox\mPaperHeightLineEdit=true +Widgets\QgsCompositionBase\groupBox\mPaperOrientationComboBox=true +Widgets\QgsCompositionBase\groupBox\mPaperSizeComboBox=true +Widgets\QgsCompositionBase\groupBox\mPaperUnitsComboBox=true +Widgets\QgsCompositionBase\groupBox\mPaperWidthLineEdit=true +Widgets\QgsCompositionBase\groupBox\textLabel3=true +Widgets\QgsCompositionBase\groupBox\textLabel4=true +Widgets\QgsCompositionBase\groupBox\textLabel5=true +Widgets\QgsCompositionBase\groupBox\textLabel6=true +Widgets\QgsCompositionBase\groupBox\textLabel7=true +Widgets\QgsCompositionWidgetBase=true +Widgets\QgsCompositionWidgetBase\scrollArea=true +Widgets\QgsCompositionWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsCompositionWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsCompositionWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsCompositionWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsConfigureShortcutsDialog=true +Widgets\QgsConfigureShortcutsDialog\btnChangeShortcut=true +Widgets\QgsConfigureShortcutsDialog\btnLoadShortcuts=true +Widgets\QgsConfigureShortcutsDialog\btnResetShortcut=true +Widgets\QgsConfigureShortcutsDialog\btnSaveShortcuts=true +Widgets\QgsConfigureShortcutsDialog\btnSetNoShortcut=true +Widgets\QgsConfigureShortcutsDialog\buttonBox=true +Widgets\QgsCptCityColorRampV2DialogBase=true +Widgets\QgsCptCityColorRampV2DialogBase\buttonBox=true +Widgets\QgsCptCityColorRampV2DialogBase\cboConvertStandard=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\cboVariantName=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\label=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\label_2=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\label_6=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\lblLicensePreview=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\lblPreview=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\lblSchemeName=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\lblSchemePath=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\label_3=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\label_4=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\label_5=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\lblAuthorName=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\lblLicenseName=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\lblLicenseName\qt_scrollarea_hcontainer=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\lblLicenseName\qt_scrollarea_vcontainer=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\lblLicenseName\qt_scrollarea_viewport=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\lblSrcLink=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page_2=true +Widgets\QgsCredentialDialog=true +Widgets\QgsCredentialDialog\buttonBox=true +Widgets\QgsCredentialDialog\label=true +Widgets\QgsCredentialDialog\labelMessage=true +Widgets\QgsCredentialDialog\labelRealm=true +Widgets\QgsCredentialDialog\label_2=true +Widgets\QgsCredentialDialog\label_3=true +Widgets\QgsCredentialDialog\lePassword=true +Widgets\QgsCredentialDialog\leUsername=true +Widgets\QgsCustomProjectionDialogBase=true +Widgets\QgsCustomProjectionDialogBase\buttonBox=true +Widgets\QgsCustomProjectionDialogBase\groupBox=true +Widgets\QgsCustomProjectionDialogBase\groupBox\label=true +Widgets\QgsCustomProjectionDialogBase\groupBox\label_3=true +Widgets\QgsCustomProjectionDialogBase\groupBox\label_4=true +Widgets\QgsCustomProjectionDialogBase\groupBox\leName=true +Widgets\QgsCustomProjectionDialogBase\groupBox\pbnAdd=true +Widgets\QgsCustomProjectionDialogBase\groupBox\pbnCopyCRS=true +Widgets\QgsCustomProjectionDialogBase\groupBox\pbnRemove=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\eastWGS84=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\label_2=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\northWGS84=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\pbnCalculate=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\projectedX=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\projectedY=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\textLabel1_3=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\textLabel2_2=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\textLabel2_2_2=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\textLabel2_3=true +Widgets\QgsCustomizationDialogBase=true +Widgets\QgsCustomizationDialogBase\centralwidget=true +Widgets\QgsCustomizationDialogBase\centralwidget\buttonBox=true +Widgets\QgsCustomizationDialogBase\centralwidget\mCustomizationEnabledCheckBox=true +Widgets\QgsDataDefinedSymbolDialog=true +Widgets\QgsDataDefinedSymbolDialog\mButtonBox=true +Widgets\QgsDbSourceSelectBase=true +Widgets\QgsDbSourceSelectBase\buttonBox=true +Widgets\QgsDbSourceSelectBase\cbxAllowGeometrylessTables=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\btnConnect=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\btnDelete=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\btnEdit=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\btnLoad=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\btnNew=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\btnSave=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\cmbConnections=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox\mSearchColumnComboBox=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox\mSearchColumnsLabel=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox\mSearchLabel=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox\mSearchModeComboBox=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox\mSearchModeLabel=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox\mSearchTableEdit=true +Widgets\QgsDecorationCopyrightDialog=true +Widgets\QgsDecorationCopyrightDialog\buttonBox=true +Widgets\QgsDecorationCopyrightDialog\cboOrientation=true +Widgets\QgsDecorationCopyrightDialog\cboPlacement=true +Widgets\QgsDecorationCopyrightDialog\cboxEnabled=true +Widgets\QgsDecorationCopyrightDialog\label=true +Widgets\QgsDecorationCopyrightDialog\label_2=true +Widgets\QgsDecorationCopyrightDialog\textLabel15=true +Widgets\QgsDecorationCopyrightDialog\textLabel16=true +Widgets\QgsDecorationCopyrightDialog\txtCopyrightText=true +Widgets\QgsDecorationCopyrightDialog\txtCopyrightText\qt_scrollarea_hcontainer=true +Widgets\QgsDecorationCopyrightDialog\txtCopyrightText\qt_scrollarea_vcontainer=true +Widgets\QgsDecorationCopyrightDialog\txtCopyrightText\qt_scrollarea_viewport=true +Widgets\QgsDecorationGridDialog=true +Widgets\QgsDecorationGridDialog\buttonBox=true +Widgets\QgsDecorationGridDialog\chkEnable=true +Widgets\QgsDecorationGridDialog\groupBox=true +Widgets\QgsDecorationGridDialog\groupBox\mPbtnUpdateFromExtents=true +Widgets\QgsDecorationGridDialog\groupBox\mPbtnUpdateFromLayer=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mAnnotationDirectionComboBox=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mAnnotationDirectionLabel=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mAnnotationFontButton=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mCoordinatePrecisionLabel=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mCoordinatePrecisionSpinBox=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mCoordinatePrecisionSpinBox\qt_spinbox_lineedit=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mDistanceToFrameLabel=true +Widgets\QgsDecorationGridDialog\mGridTypeComboBox=true +Widgets\QgsDecorationGridDialog\mGridTypeLabel=true +Widgets\QgsDecorationGridDialog\mIntervalXEdit=true +Widgets\QgsDecorationGridDialog\mIntervalXLabel=true +Widgets\QgsDecorationGridDialog\mIntervalYEdit=true +Widgets\QgsDecorationGridDialog\mIntervalYLabel=true +Widgets\QgsDecorationGridDialog\mLineSymbolButton=true +Widgets\QgsDecorationGridDialog\mLineSymbolLabel=true +Widgets\QgsDecorationGridDialog\mMarkerSymbolButton=true +Widgets\QgsDecorationGridDialog\mMarkerSymbolLabel=true +Widgets\QgsDecorationGridDialog\mOffsetXEdit=true +Widgets\QgsDecorationGridDialog\mOffsetXLabel=true +Widgets\QgsDecorationGridDialog\mOffsetYEdit=true +Widgets\QgsDecorationGridDialog\mOffsetYLabel=true +Widgets\QgsDecorationNorthArrowDialog=true +Widgets\QgsDecorationNorthArrowDialog\buttonBox=true +Widgets\QgsDecorationScaleBarDialog=true +Widgets\QgsDecorationScaleBarDialog\buttonBox=true +Widgets\QgsDecorationScaleBarDialog\cboPlacement=true +Widgets\QgsDecorationScaleBarDialog\cboStyle=true +Widgets\QgsDecorationScaleBarDialog\chkEnable=true +Widgets\QgsDecorationScaleBarDialog\chkSnapping=true +Widgets\QgsDecorationScaleBarDialog\spnSize=true +Widgets\QgsDecorationScaleBarDialog\spnSize\qt_spinbox_lineedit=true +Widgets\QgsDecorationScaleBarDialog\textLabel1=true +Widgets\QgsDecorationScaleBarDialog\textLabel1_2=true +Widgets\QgsDecorationScaleBarDialog\textLabel1_3=true +Widgets\QgsDecorationScaleBarDialog\textLabel1_3_2=true +Widgets\QgsDelAttrDialogBase=true +Widgets\QgsDelAttrDialogBase\buttonBox=true +Widgets\QgsDelimitedTextSourceSelectBase=true +Widgets\QgsDelimitedTextSourceSelectBase\buttonBox=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxPointIsComma=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxSkipEmptyFields=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxSpatialIndex=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxSubsetIndex=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxTrimFields=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxUseHeader=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxWatchFile=true +Widgets\QgsDelimitedTextSourceSelectBase\delimiterCSV=true +Widgets\QgsDelimitedTextSourceSelectBase\delimiterChars=true +Widgets\QgsDelimitedTextSourceSelectBase\delimiterRegexp=true +Widgets\QgsDelimitedTextSourceSelectBase\geomTypeNone=true +Widgets\QgsDelimitedTextSourceSelectBase\geomTypeWKT=true +Widgets\QgsDelimitedTextSourceSelectBase\geomTypeXY=true +Widgets\QgsDelimitedTextSourceSelectBase\labelFileFormat=true +Widgets\QgsDelimitedTextSourceSelectBase\label_2=true +Widgets\QgsDelimitedTextSourceSelectBase\label_3=true +Widgets\QgsDelimitedTextSourceSelectBase\label_4=true +Widgets\QgsDelimitedTextSourceSelectBase\label_6=true +Widgets\QgsDelimitedTextSourceSelectBase\label_8=true +Widgets\QgsDelimitedTextSourceSelectBase\lblStatus=true +Widgets\QgsDelimitedTextSourceSelectBase\rowCounter=true +Widgets\QgsDelimitedTextSourceSelectBase\rowCounter\qt_spinbox_lineedit=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat\swpCSVOptions=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat\swpDelimOptions=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat\swpRegexpOptions=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat\swpRegexpOptions\label_7=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat\swpRegexpOptions\lblRegexpError=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat\swpRegexpOptions\txtDelimiterRegexp=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomNone=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomWKT=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomWKT\cmbGeometryType=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomWKT\cmbWktField=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomWKT\label=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomWKT\label_5=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomXY=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomXY\cbxXyDms=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomXY\cmbXField=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomXY\cmbYField=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomXY\textLabelx=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomXY\textLabely=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\btnBrowseForFile=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\cmbEncoding=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\lblEncoding=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\textLabelFileName=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\textLabelLayerName=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\txtFilePath=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\txtLayerName=true +Widgets\QgsDetailedItemWidgetBase=true +Widgets\QgsDetailedItemWidgetBase\cbx=true +Widgets\QgsDetailedItemWidgetBase\lblCategory=true +Widgets\QgsDetailedItemWidgetBase\lblDetail=true +Widgets\QgsDetailedItemWidgetBase\lblIcon=true +Widgets\QgsDetailedItemWidgetBase\lblTitle=true +Widgets\QgsDetailedItemWidgetBase\widget=true +Widgets\QgsDisplayAngleBase=true +Widgets\QgsDisplayAngleBase\buttonBox=true +Widgets\QgsDisplayAngleBase\mAngleLineEdit=true +Widgets\QgsEngineConfigDialog=true +Widgets\QgsEngineConfigDialog\buttonBox=true +Widgets\QgsEngineConfigDialog\cboSearchMethod=true +Widgets\QgsEngineConfigDialog\chkShowAllLabels=true +Widgets\QgsEngineConfigDialog\chkShowCandidates=true +Widgets\QgsEngineConfigDialog\groupBox=true +Widgets\QgsEngineConfigDialog\groupBox\label_2=true +Widgets\QgsEngineConfigDialog\groupBox\label_3=true +Widgets\QgsEngineConfigDialog\groupBox\label_4=true +Widgets\QgsEngineConfigDialog\groupBox\spinCandLine=true +Widgets\QgsEngineConfigDialog\groupBox\spinCandLine\qt_spinbox_lineedit=true +Widgets\QgsEngineConfigDialog\groupBox\spinCandPoint=true +Widgets\QgsEngineConfigDialog\groupBox\spinCandPoint\qt_spinbox_lineedit=true +Widgets\QgsEngineConfigDialog\groupBox\spinCandPolygon=true +Widgets\QgsEngineConfigDialog\groupBox\spinCandPolygon\qt_spinbox_lineedit=true +Widgets\QgsEngineConfigDialog\label=true +Widgets\QgsEngineConfigDialog\label_6=true +Widgets\QgsEngineConfigDialog\mSaveWithProjectChkBox=true +Widgets\QgsEngineConfigDialog\mShadowDebugRectChkBox=true +Widgets\QgsErrorDialogBase=true +Widgets\QgsErrorDialogBase\buttonBox=true +Widgets\QgsErrorDialogBase\mDetailCheckBox=true +Widgets\QgsErrorDialogBase\mDetailPushButton=true +Widgets\QgsErrorDialogBase\mDetailTextBrowser=true +Widgets\QgsErrorDialogBase\mDetailTextBrowser\qt_scrollarea_hcontainer=true +Widgets\QgsErrorDialogBase\mDetailTextBrowser\qt_scrollarea_vcontainer=true +Widgets\QgsErrorDialogBase\mDetailTextBrowser\qt_scrollarea_viewport=true +Widgets\QgsErrorDialogBase\mIconLabel=true +Widgets\QgsErrorDialogBase\mSummaryTextBrowser=true +Widgets\QgsErrorDialogBase\mSummaryTextBrowser\qt_scrollarea_hcontainer=true +Widgets\QgsErrorDialogBase\mSummaryTextBrowser\qt_scrollarea_vcontainer=true +Widgets\QgsErrorDialogBase\mSummaryTextBrowser\qt_scrollarea_viewport=true +Widgets\QgsExpressionBuilderDialogBase=true +Widgets\QgsExpressionBuilderDialogBase\buttonBox=true +Widgets\QgsExpressionBuilderWidgetBase=true +Widgets\QgsExpressionBuilderWidgetBase\btnLoadAll=true +Widgets\QgsExpressionBuilderWidgetBase\btnLoadSample=true +Widgets\QgsExpressionBuilderWidgetBase\groupBox=true +Widgets\QgsExpressionBuilderWidgetBase\groupBox\txtExpressionString=true +Widgets\QgsExpressionBuilderWidgetBase\groupBox\txtExpressionString\qt_scrollarea_hcontainer=true +Widgets\QgsExpressionBuilderWidgetBase\groupBox\txtExpressionString\qt_scrollarea_vcontainer=true +Widgets\QgsExpressionBuilderWidgetBase\groupBox\txtExpressionString\qt_scrollarea_viewport=true +Widgets\QgsExpressionBuilderWidgetBase\label_2=true +Widgets\QgsExpressionBuilderWidgetBase\lblPreview=true +Widgets\QgsExpressionBuilderWidgetBase\mFunctionHelGroup=true +Widgets\QgsExpressionBuilderWidgetBase\mFunctionHelGroup\txtHelpText=true +Widgets\QgsExpressionBuilderWidgetBase\mFunctionHelGroup\txtHelpText\qt_scrollarea_hcontainer=true +Widgets\QgsExpressionBuilderWidgetBase\mFunctionHelGroup\txtHelpText\qt_scrollarea_vcontainer=true +Widgets\QgsExpressionBuilderWidgetBase\mFunctionHelGroup\txtHelpText\qt_scrollarea_viewport=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnCloseBracketPushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnConcatButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnDividePushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnEqualPushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnExpButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnMinusPushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnMultiplyPushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnOpenBracketPushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnPlusPushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mValueGroupBox=true +Widgets\QgsExpressionBuilderWidgetBase\moperationListGroup=true +Widgets\QgsExpressionSelectionDialogBase=true +Widgets\QgsExpressionSelectionDialogBase\mPbnClose=true +Widgets\QgsFieldCalculatorBase=true +Widgets\QgsFieldCalculatorBase\mButtonBox=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mFieldNameLabel=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldNameLineEdit=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldPrecisionLabel=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldPrecisionSpinBox=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldPrecisionSpinBox\qt_spinbox_lineedit=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldTypeComboBox=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldTypeLabel=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldWidthLabel=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldWidthSpinBox=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldWidthSpinBox\qt_spinbox_lineedit=true +Widgets\QgsFieldCalculatorBase\mOnlyUpdateSelectedCheckBox=true +Widgets\QgsFieldCalculatorBase\mUpdateExistingGroupBox=true +Widgets\QgsFieldCalculatorBase\mUpdateExistingGroupBox\mExistingFieldComboBox=true +Widgets\QgsFieldsPropertiesBase=true +Widgets\QgsFieldsPropertiesBase\label_2=true +Widgets\QgsFieldsPropertiesBase\label_3=true +Widgets\QgsFieldsPropertiesBase\leEditFormInit=true +Widgets\QgsFieldsPropertiesBase\mEditorLayoutComboBox=true +Widgets\QgsFormAnnotationDialogBase=true +Widgets\QgsFormAnnotationDialogBase\mButtonBox=true +Widgets\QgsFormAnnotationDialogBase\mFileLineEdit=true +Widgets\QgsFormAnnotationDialogBase\mStackedWidget=true +Widgets\QgsFormAnnotationDialogBase\mStackedWidget\page=true +Widgets\QgsFormAnnotationDialogBase\mStackedWidget\page_2=true +Widgets\QgsGenericProjectionSelectorBase=true +Widgets\QgsGenericProjectionSelectorBase\buttonBox=true +Widgets\QgsGenericProjectionSelectorBase\textEdit=true +Widgets\QgsGenericProjectionSelectorBase\textEdit\qt_scrollarea_hcontainer=true +Widgets\QgsGenericProjectionSelectorBase\textEdit\qt_scrollarea_vcontainer=true +Widgets\QgsGenericProjectionSelectorBase\textEdit\qt_scrollarea_viewport=true +Widgets\QgsGpsInformationWidgetBase=true +Widgets\QgsGpsInformationWidgetBase\mBtnAddVertex=true +Widgets\QgsGpsInformationWidgetBase\mBtnCloseFeature=true +Widgets\QgsGpsInformationWidgetBase\mConnectButton=true +Widgets\QgsGpsInformationWidgetBase\mLblStatusIndicator=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_hcontainer=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_vcontainer=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblAltitude=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblDirection=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblFixMode=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblFixType=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblHacc=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblHdop=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblLatitude=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblLongitude=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblPdop=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblQuality=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblSatellitesUsed=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblSpeed=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblStatus=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblUtcTime=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblVacc=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblVdop=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtAltitude=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtDateTime=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtDirection=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtFixMode=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtFixType=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtHacc=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtHdop=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtLatitude=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtLongitude=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtPdop=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtQuality=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtSatellitesUsed=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtSpeed=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtStatus=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtVacc=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtVdop=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage2=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage3=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\mSpinMapExtentMultiplier=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\mSpinMapExtentMultiplier\qt_spinbox_lineedit=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\radNeverRecenter=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\radRecenterMap=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\radRecenterWhenNeeded=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\groupBox_3=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\groupBox_3\mBtnTrackColor=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\groupBox_3\mCbxAutoAddVertices=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\groupBox_3\mSpinTrackWidth=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\groupBox_3\mSpinTrackWidth\qt_spinbox_lineedit=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\mCbxAutoCommit=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\label_3=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\label_4=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\label_5=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mCboDevices=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mGpsdDevice=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mGpsdHost=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mGpsdPort=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mRadAutodetect=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mRadGpsd=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mRadInternal=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mRadUserPath=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mGroupShowMarker=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mGroupShowMarker\label=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mGroupShowMarker\label_2=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mGroupShowMarker\mSliderMarkerSize=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mLogFileGroupBox=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mLogFileGroupBox\mBtnLogFile=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mLogFileGroupBox\mTxtLogFile=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage5=true +Widgets\QgsGraduatedSymbolRendererV2Widget=true +Widgets\QgsGraduatedSymbolRendererV2Widget\btnAdvanced=true +Widgets\QgsGraduatedSymbolRendererV2Widget\btnChangeGraduatedSymbol=true +Widgets\QgsGraduatedSymbolRendererV2Widget\btnDeleteAllClasses=true +Widgets\QgsGraduatedSymbolRendererV2Widget\btnGraduatedAdd=true +Widgets\QgsGraduatedSymbolRendererV2Widget\btnGraduatedClassify=true +Widgets\QgsGraduatedSymbolRendererV2Widget\btnGraduatedDelete=true +Widgets\QgsGraduatedSymbolRendererV2Widget\cboGraduatedColumn=true +Widgets\QgsGraduatedSymbolRendererV2Widget\cboGraduatedMode=true +Widgets\QgsGraduatedSymbolRendererV2Widget\label_4=true +Widgets\QgsGraduatedSymbolRendererV2Widget\label_5=true +Widgets\QgsGraduatedSymbolRendererV2Widget\label_6=true +Widgets\QgsGraduatedSymbolRendererV2Widget\label_7=true +Widgets\QgsGraduatedSymbolRendererV2Widget\label_8=true +Widgets\QgsGraduatedSymbolRendererV2Widget\spinGraduatedClasses=true +Widgets\QgsGraduatedSymbolRendererV2Widget\spinGraduatedClasses\qt_spinbox_lineedit=true +Widgets\QgsHandleBadLayersBase=true +Widgets\QgsHandleBadLayersBase\buttonBox=true +Widgets\QgsIdentifyResultsBase=true +Widgets\QgsIdentifyResultsBase\buttonBox=true +Widgets\QgsLUDialogBase=true +Widgets\QgsLUDialogBase\buttonBox=true +Widgets\QgsLUDialogBase\mLowerEdit=true +Widgets\QgsLUDialogBase\mLowerLabel=true +Widgets\QgsLUDialogBase\mUpperEdit=true +Widgets\QgsLUDialogBase\mUpperLabel=true +Widgets\QgsLabelDialogBase=true +Widgets\QgsLabelDialogBase\groupBox5=true +Widgets\QgsLabelDialogBase\groupBox5\lblSample=true +Widgets\QgsLabelDialogBase\tabWidget=true +Widgets\QgsLabelDialogBase\tabWidget\tab=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup10=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup10\cboOffsetUnits=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseBuffer=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseBuffer\cboBufferSizeUnits=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseBuffer\pbnDefaultBufferColor=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseBuffer\spinBufferTransparency=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseBuffer\spinBufferTransparency\qt_spinbox_lineedit=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseBuffer\textLabel4_3_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseScaleDependentRendering=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseScaleDependentRendering\leMaximumScale=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseScaleDependentRendering\leMinimumScale=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseScaleDependentRendering\textLabel1_1=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseScaleDependentRendering\textLabel1_2_2_1=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioAbove=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioAboveLeft=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioAboveRight=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioBelow=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioBelowLeft=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioBelowRight=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioLeft=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioOver=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioRight=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\btnDefaultFont=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\cboFontSizeUnits=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\cboLabelField=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\chkSelectedOnly=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\chkUseMultiline=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\leDefaultLabel=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\pbnDefaultFontColor=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\spinAngle=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\spinAngle\qt_spinbox_lineedit=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\textLabel1=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\textLabel1_2_2_2_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\textLabel5=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\textLabel5_2_2_3_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_hcontainer=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_vcontainer=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboBoldField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboFontColorField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboFontField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboFontSizeField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboFontSizeTypeField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboItalicField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboStrikeOutField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboUnderlineField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\label=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\lblFont=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\textLabel4=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\textLabel4_2_4=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\textLabel4_3=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\textLabel4_3_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\textLabel4_3_2_4=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\textLabel4_3_2_5=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_5=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_5\cboAlignmentField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_5\cboAngleField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_5\textLabel1_2_2_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_5\textLabel1_2_2_2_2_3=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_6=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_6\cboBufferSizeField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_6\cboBufferTransparencyField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_6\textLabel1_3_2_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_6\textLabel4_3_2_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\cboXCoordinateField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\cboXOffsetField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\cboYCoordinateField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\cboYOffsetField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\textLabel1_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\textLabel1_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\textLabel1_2_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\textLabel1_2_3=true +Widgets\QgsLabelPropertyDialogBase=true +Widgets\QgsLabelPropertyDialogBase\buttonBox=true +Widgets\QgsLabelPropertyDialogBase\groupBox=true +Widgets\QgsLabelPropertyDialogBase\groupBox\label=true +Widgets\QgsLabelPropertyDialogBase\groupBox\mAlwaysShowChkbx=true +Widgets\QgsLabelPropertyDialogBase\groupBox\mMaxScaleSpinBox=true +Widgets\QgsLabelPropertyDialogBase\groupBox\mMaxScaleSpinBox\qt_spinbox_lineedit=true +Widgets\QgsLabelPropertyDialogBase\groupBox\mMinScaleSpinBox=true +Widgets\QgsLabelPropertyDialogBase\groupBox\mMinScaleSpinBox\qt_spinbox_lineedit=true +Widgets\QgsLabelPropertyDialogBase\groupBox\mShowLabelChkbx=true +Widgets\QgsLabelPropertyDialogBase\mBufferGroupBox=true +Widgets\QgsLabelPropertyDialogBase\mBufferGroupBox\mBufferSizeLabel=true +Widgets\QgsLabelPropertyDialogBase\mFontGroupBox=true +Widgets\QgsLabelPropertyDialogBase\mFontGroupBox\label_3=true +Widgets\QgsLabelPropertyDialogBase\mFontGroupBox\mFontSizeLabel=true +Widgets\QgsLabelPropertyDialogBase\mFontGroupBox\mFontStyleCmbBx=true +Widgets\QgsLabelPropertyDialogBase\mLabelTextLabel=true +Widgets\QgsLabelPropertyDialogBase\mLabelTextLineEdit=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mHaliComboBox=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mHaliLabel=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mLabelDistanceLabel=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mRotationLabel=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mValiComboBox=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mValiLabel=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mXCoordLabel=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mYCoordLabel=true +Widgets\QgsLoadStyleFromDBDialogLayout=true +Widgets\QgsLoadStyleFromDBDialogLayout\label=true +Widgets\QgsLoadStyleFromDBDialogLayout\label_2=true +Widgets\QgsLoadStyleFromDBDialogLayout\mCancelButton=true +Widgets\QgsLoadStyleFromDBDialogLayout\mLoadButton=true +Widgets\QgsManageConnectionsDialogBase=true +Widgets\QgsManageConnectionsDialogBase\buttonBox=true +Widgets\QgsManageConnectionsDialogBase\label=true +Widgets\QgsMeasureBase=true +Widgets\QgsMeasureBase\buttonBox=true +Widgets\QgsMeasureBase\editTotal=true +Widgets\QgsMeasureBase\textLabel2=true +Widgets\QgsMergeAttributesDialogBase=true +Widgets\QgsMergeAttributesDialogBase\buttonBox=true +Widgets\QgsMergeAttributesDialogBase\mFromSelectedPushButton=true +Widgets\QgsMergeAttributesDialogBase\mRemoveFeatureFromSelectionButton=true +Widgets\QgsMergeAttributesDialogBase\mRemoveFeatureFromSelectionLabel=true +Widgets\QgsMergeAttributesDialogBase\mTakeSelectedAttributesLabel=true +Widgets\QgsMessageLogViewer=true +Widgets\QgsMessageLogViewer\tabWidget=true +Widgets\QgsMessageViewer=true +Widgets\QgsMessageViewer\buttonBox=true +Widgets\QgsMessageViewer\checkBox=true +Widgets\QgsMessageViewer\txtMessage=true +Widgets\QgsMessageViewer\txtMessage\qt_scrollarea_hcontainer=true +Widgets\QgsMessageViewer\txtMessage\qt_scrollarea_vcontainer=true +Widgets\QgsMessageViewer\txtMessage\qt_scrollarea_viewport=true +Widgets\QgsMssqlNewConnectionBase=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\TextLabel1=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\TextLabel1_2=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\TextLabel2=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\TextLabel3=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\TextLabel3_2=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\btnConnect=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\cb_allowGeometrylessTables=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\cb_geometryColumns=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\cb_trustedConnection=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\cb_useEstimatedMetadata=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\chkStorePassword=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\chkStoreUsername=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\label=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\label_2=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\txtDatabase=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\txtHost=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\txtName=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\txtPassword=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\txtService=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\txtUsername=true +Widgets\QgsMssqlNewConnectionBase\buttonBox=true +Widgets\QgsMultiBandColorRendererWidgetBase=true +Widgets\QgsMultiBandColorRendererWidgetBase\label=true +Widgets\QgsMultiBandColorRendererWidgetBase\label_2=true +Widgets\QgsMultiBandColorRendererWidgetBase\mBlueBandComboBox=true +Widgets\QgsMultiBandColorRendererWidgetBase\mBlueBandLabel=true +Widgets\QgsMultiBandColorRendererWidgetBase\mBlueMaxLineEdit=true +Widgets\QgsMultiBandColorRendererWidgetBase\mBlueMinLineEdit=true +Widgets\QgsMultiBandColorRendererWidgetBase\mContrastEnhancementAlgorithmComboBox=true +Widgets\QgsMultiBandColorRendererWidgetBase\mContrastEnhancementAlgorithmLabel=true +Widgets\QgsMultiBandColorRendererWidgetBase\mGreenBandComboBox=true +Widgets\QgsMultiBandColorRendererWidgetBase\mGreenBandLabel=true +Widgets\QgsMultiBandColorRendererWidgetBase\mGreenMaxLineEdit=true +Widgets\QgsMultiBandColorRendererWidgetBase\mGreenMinLineEdit=true +Widgets\QgsMultiBandColorRendererWidgetBase\mMinLabel=true +Widgets\QgsMultiBandColorRendererWidgetBase\mRedBandComboBox=true +Widgets\QgsMultiBandColorRendererWidgetBase\mRedBandLabel=true +Widgets\QgsMultiBandColorRendererWidgetBase\mRedMaxLineEdit=true +Widgets\QgsMultiBandColorRendererWidgetBase\mRedMinLineEdit=true +Widgets\QgsNewHttpConnectionBase=true +Widgets\QgsNewHttpConnectionBase\buttonBox=true +Widgets\QgsNewHttpConnectionBase\mGroupBox=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\TextLabel1=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\TextLabel1_2=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\cbxIgnoreAxisOrientation=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\cbxIgnoreGetFeatureInfoURI=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\cbxIgnoreGetMapURI=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\cbxInvertAxisOrientation=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\cbxSmoothPixmapTransform=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\label=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\label_2=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\label_3=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\lblReferer=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\txtName=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\txtPassword=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\txtReferer=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\txtUrl=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\txtUserName=true +Widgets\QgsNewOgrConnectionBase=true +Widgets\QgsNewOgrConnectionBase\GroupBox1=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\TextLabel1=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\TextLabel1_2=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\TextLabel2=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\TextLabel2_2=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\TextLabel3=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\TextLabel3_2=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\btnConnect=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\chkStorePassword=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\cmbDatabaseTypes=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\label=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\txtDatabase=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\txtHost=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\txtName=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\txtPassword=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\txtPort=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\txtUsername=true +Widgets\QgsNewOgrConnectionBase\buttonBox=true +Widgets\QgsNewSpatialiteLayerDialogBase=true +Widgets\QgsNewSpatialiteLayerDialogBase\buttonBox=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1\mLineRadioButton=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1\mMultilineRadioButton=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1\mMultipointRadioButton=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1\mMultipolygonRadioButton=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1\mPointRadioButton=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1\mPolygonRadioButton=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\checkBoxPrimaryKey=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\mNameEdit=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\mTypeBox=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\textLabel1=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\textLabel2=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\label=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\label_2=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\leGeometryColumn=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\leLayerName=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\leSRID=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDatabaseComboBox=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mFileFormatLabel=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\pbnFindSRID=true +Widgets\QgsNewVectorLayerDialogBase=true +Widgets\QgsNewVectorLayerDialogBase\buttonBox=true +Widgets\QgsNewVectorLayerDialogBase\buttonGroup1=true +Widgets\QgsNewVectorLayerDialogBase\buttonGroup1\mLineRadioButton=true +Widgets\QgsNewVectorLayerDialogBase\buttonGroup1\mPointRadioButton=true +Widgets\QgsNewVectorLayerDialogBase\buttonGroup1\mPolygonRadioButton=true +Widgets\QgsNewVectorLayerDialogBase\groupBox=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\label=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\label_2=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\mNameEdit=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\mPrecision=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\mTypeBox=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\mWidth=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\textLabel1=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\textLabel2=true +Widgets\QgsNewVectorLayerDialogBase\groupBox_2=true +Widgets\QgsNewVectorLayerDialogBase\leSpatialRefSys=true +Widgets\QgsNewVectorLayerDialogBase\mFileFormatComboBox=true +Widgets\QgsNewVectorLayerDialogBase\mFileFormatLabel=true +Widgets\QgsNewVectorLayerDialogBase\pbnChangeSpatialRefSys=true +Widgets\QgsOSMDownloadDialog=true +Widgets\QgsOSMDownloadDialog\buttonBox=true +Widgets\QgsOSMDownloadDialog\editSize=true +Widgets\QgsOSMDownloadDialog\groupBox=true +Widgets\QgsOSMDownloadDialog\groupBox\cboLayers=true +Widgets\QgsOSMDownloadDialog\groupBox\editXMax=true +Widgets\QgsOSMDownloadDialog\groupBox\editXMin=true +Widgets\QgsOSMDownloadDialog\groupBox\editYMax=true +Widgets\QgsOSMDownloadDialog\groupBox\editYMin=true +Widgets\QgsOSMDownloadDialog\groupBox\radExtentCanvas=true +Widgets\QgsOSMDownloadDialog\groupBox\radExtentLayer=true +Widgets\QgsOSMDownloadDialog\groupBox\radExtentManual=true +Widgets\QgsOSMDownloadDialog\groupBox_2=true +Widgets\QgsOSMDownloadDialog\groupBox_2\editFileName=true +Widgets\QgsOSMDownloadDialog\progress=true +Widgets\QgsOSMExportDialog=true +Widgets\QgsOSMExportDialog\buttonBox=true +Widgets\QgsOSMExportDialog\chkLoadWhenFinished=true +Widgets\QgsOSMExportDialog\groupBox=true +Widgets\QgsOSMExportDialog\groupBox\editDbFileName=true +Widgets\QgsOSMExportDialog\groupBox_2=true +Widgets\QgsOSMExportDialog\groupBox_2\editLayerName=true +Widgets\QgsOSMExportDialog\groupBox_3=true +Widgets\QgsOSMExportDialog\groupBox_3\btnLoadTags=true +Widgets\QgsOSMExportDialog\groupBox_4=true +Widgets\QgsOSMExportDialog\groupBox_4\radPoints=true +Widgets\QgsOSMExportDialog\groupBox_4\radPolygons=true +Widgets\QgsOSMExportDialog\groupBox_4\radPolylines=true +Widgets\QgsOSMExportDialog\progressBar=true +Widgets\QgsOSMImportDialog=true +Widgets\QgsOSMImportDialog\buttonBox=true +Widgets\QgsOSMImportDialog\groupBox=true +Widgets\QgsOSMImportDialog\groupBox\editDbFileName=true +Widgets\QgsOSMImportDialog\groupBox_2=true +Widgets\QgsOSMImportDialog\groupBox_2\editXmlFileName=true +Widgets\QgsOSMImportDialog\groupCreateConn=true +Widgets\QgsOSMImportDialog\groupCreateConn\editConnName=true +Widgets\QgsOSMImportDialog\groupCreateConn\label=true +Widgets\QgsOSMImportDialog\progressBar=true +Widgets\QgsOWSSourceSelectBase=true +Widgets\QgsOWSSourceSelectBase\mDialogButtonBox=true +Widgets\QgsOWSSourceSelectBase\mStatusLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayerOrderTab=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayerOrderTab\mLayerDownButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayerOrderTab\mLayerUpButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mAddDefaultButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCRSWidget=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCRSWidget\mCRSLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCRSWidget\mChangeCRSButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCRSWidget\mSelectedCRSLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCacheWidget=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCacheWidget\mCacheComboBox=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCacheWidget\mCacheLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mConnectButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mConnectionsComboBox=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mDeleteButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mEditButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mFormatWidget=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mFormatWidget\mFormatComboBox=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mFormatWidget\mFormatLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mLoadButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mNewButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mSaveButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mTimeWidget=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mTimeWidget\mTimeComboBox=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mTimeWidget\mTimeLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mFeatureCountLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mFeatureCountLineEdit=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mLayerNameLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mLayerNameLineEdit=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mTileHeightLineEdit=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mTileSizeLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mTileWidthLineEdit=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mSearchTab=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mSearchTab\mSearchAddButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mSearchTab\mSearchButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mSearchTab\mSearchTermLineEdit=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mTilesetsTab=true +Widgets\QgsOpenVectorLayerDialogBase=true +Widgets\QgsOpenVectorLayerDialogBase\buttonBox=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\cmbDatabaseTypes=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\groupBox=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\groupBox\btnDelete=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\groupBox\btnEdit=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\groupBox\btnNew=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\groupBox\cmbConnections=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\label_4=true +Widgets\QgsOpenVectorLayerDialogBase\fileGroupBox=true +Widgets\QgsOpenVectorLayerDialogBase\fileGroupBox\buttonSelectSrc=true +Widgets\QgsOpenVectorLayerDialogBase\fileGroupBox\cmbDirectoryTypes=true +Widgets\QgsOpenVectorLayerDialogBase\fileGroupBox\inputSrcDataset=true +Widgets\QgsOpenVectorLayerDialogBase\fileGroupBox\labelDirectoryType=true +Widgets\QgsOpenVectorLayerDialogBase\fileGroupBox\labelSrcDataset=true +Widgets\QgsOpenVectorLayerDialogBase\protocolGroupBox=true +Widgets\QgsOpenVectorLayerDialogBase\protocolGroupBox\cmbProtocolTypes=true +Widgets\QgsOpenVectorLayerDialogBase\protocolGroupBox\label=true +Widgets\QgsOpenVectorLayerDialogBase\protocolGroupBox\label_2=true +Widgets\QgsOpenVectorLayerDialogBase\protocolGroupBox\protocolURI=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2\cmbEncodings=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2\label_3=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2\radioSrcDatabase=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2\radioSrcDirectory=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2\radioSrcFile=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2\radioSrcProtocol=true +Widgets\QgsOptionsBase=true +Widgets\QgsOracleNewConnectionBase=true +Widgets\QgsOracleNewConnectionBase\GroupBox1=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\TextLabel1=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\TextLabel1_2=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\TextLabel2_2=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\TextLabel3=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\TextLabel3_2=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\btnConnect=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\cb_allowGeometrylessTables=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\cb_geometryColumnsOnly=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\cb_onlyExistingTypes=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\cb_useEstimatedMetadata=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\cb_userTablesOnly=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\chkStorePassword=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\chkStoreUsername=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\label=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\txtDatabase=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\txtHost=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\txtName=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\txtPassword=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\txtPort=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\txtUsername=true +Widgets\QgsOracleNewConnectionBase\buttonBox=true +Widgets\QgsPalettedRendererWidgetBase=true +Widgets\QgsPalettedRendererWidgetBase\mBandComboBox=true +Widgets\QgsPalettedRendererWidgetBase\mBandLabel=true +Widgets\QgsPasteTransformationsBase=true +Widgets\QgsPasteTransformationsBase\buttonBox=true +Widgets\QgsPasteTransformationsBase\destinationLayerComboBox=true +Widgets\QgsPasteTransformationsBase\sourceLayerComboBox=true +Widgets\QgsPasteTransformationsBase\textLabel1_2=true +Widgets\QgsPasteTransformationsBase\textLabel3=true +Widgets\QgsPasteTransformationsBase\textLabel4=true +Widgets\QgsPgNewConnectionBase=true +Widgets\QgsPgNewConnectionBase\GroupBox1=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel1=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel1_2=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel2=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel2_2=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel3=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel3_2=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel3_3=true +Widgets\QgsPgNewConnectionBase\GroupBox1\btnConnect=true +Widgets\QgsPgNewConnectionBase\GroupBox1\cb_allowGeometrylessTables=true +Widgets\QgsPgNewConnectionBase\GroupBox1\cb_dontResolveType=true +Widgets\QgsPgNewConnectionBase\GroupBox1\cb_geometryColumnsOnly=true +Widgets\QgsPgNewConnectionBase\GroupBox1\cb_publicSchemaOnly=true +Widgets\QgsPgNewConnectionBase\GroupBox1\cb_useEstimatedMetadata=true +Widgets\QgsPgNewConnectionBase\GroupBox1\cbxSSLmode=true +Widgets\QgsPgNewConnectionBase\GroupBox1\chkStorePassword=true +Widgets\QgsPgNewConnectionBase\GroupBox1\chkStoreUsername=true +Widgets\QgsPgNewConnectionBase\GroupBox1\label=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtDatabase=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtHost=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtName=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtPassword=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtPort=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtService=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtUsername=true +Widgets\QgsPgNewConnectionBase\buttonBox=true +Widgets\QgsPluginManagerBase=true +Widgets\QgsPluginManagerBase\buttonBox=true +Widgets\QgsPointDisplacementRendererWidgetBase=true +Widgets\QgsPointDisplacementRendererWidgetBase\mCenterSymbolLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mCenterSymbolPushButton=true +Widgets\QgsPointDisplacementRendererWidgetBase\mDisplacementCirclesGroupBox=true +Widgets\QgsPointDisplacementRendererWidgetBase\mDisplacementCirclesGroupBox\mCircleColorLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mDisplacementCirclesGroupBox\mCircleRadiusLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mDisplacementCirclesGroupBox\mCircleWidthLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mDisplacementCirclesGroupBox\mDistanceToleranceLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mLabelAttributeLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mLabelColorLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mLabelFieldComboBox=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mLabelFontButton=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mMaxScaleDenominatorEdit=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mMaxScaleLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mScaleDependentLabelsCheckBox=true +Widgets\QgsPointDisplacementRendererWidgetBase\mRendererComboBox=true +Widgets\QgsPointDisplacementRendererWidgetBase\mRendererLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mRendererSettingsButton=true +Widgets\QgsProjectLayerGroupDialogBase=true +Widgets\QgsProjectLayerGroupDialogBase\mButtonBox=true +Widgets\QgsProjectLayerGroupDialogBase\mProjectFileLabel=true +Widgets\QgsProjectLayerGroupDialogBase\mProjectFileLineEdit=true +Widgets\QgsProjectPropertiesBase=true +Widgets\QgsProjectionSelectorBase=true +Widgets\QgsProjectionSelectorBase\label=true +Widgets\QgsProjectionSelectorBase\label_3=true +Widgets\QgsProjectionSelectorBase\label_5=true +Widgets\QgsProjectionSelectorBase\teProjection=true +Widgets\QgsProjectionSelectorBase\teProjection\qt_scrollarea_hcontainer=true +Widgets\QgsProjectionSelectorBase\teProjection\qt_scrollarea_vcontainer=true +Widgets\QgsProjectionSelectorBase\teProjection\qt_scrollarea_viewport=true +Widgets\QgsProjectionSelectorBase\teSelected=true +Widgets\QgsQueryBuilderBase=true +Widgets\QgsQueryBuilderBase\buttonBox=true +Widgets\QgsQueryBuilderBase\groupBox1=true +Widgets\QgsQueryBuilderBase\groupBox1\lstFields=true +Widgets\QgsQueryBuilderBase\groupBox1\lstFields\qt_scrollarea_hcontainer=true +Widgets\QgsQueryBuilderBase\groupBox1\lstFields\qt_scrollarea_vcontainer=true +Widgets\QgsQueryBuilderBase\groupBox1\lstFields\qt_scrollarea_viewport=true +Widgets\QgsQueryBuilderBase\groupBox2=true +Widgets\QgsQueryBuilderBase\groupBox2\btnGetAllValues=true +Widgets\QgsQueryBuilderBase\groupBox2\btnSampleValues=true +Widgets\QgsQueryBuilderBase\groupBox2\lstValues=true +Widgets\QgsQueryBuilderBase\groupBox2\lstValues\qt_scrollarea_hcontainer=true +Widgets\QgsQueryBuilderBase\groupBox2\lstValues\qt_scrollarea_vcontainer=true +Widgets\QgsQueryBuilderBase\groupBox2\lstValues\qt_scrollarea_viewport=true +Widgets\QgsQueryBuilderBase\groupBox2\mUseUnfilteredLayer=true +Widgets\QgsQueryBuilderBase\groupBox3=true +Widgets\QgsQueryBuilderBase\groupBox3\txtSQL=true +Widgets\QgsQueryBuilderBase\groupBox3\txtSQL\qt_scrollarea_hcontainer=true +Widgets\QgsQueryBuilderBase\groupBox3\txtSQL\qt_scrollarea_vcontainer=true +Widgets\QgsQueryBuilderBase\groupBox3\txtSQL\qt_scrollarea_viewport=true +Widgets\QgsQueryBuilderBase\groupBox4=true +Widgets\QgsQueryBuilderBase\groupBox4\btnAnd=true +Widgets\QgsQueryBuilderBase\groupBox4\btnEqual=true +Widgets\QgsQueryBuilderBase\groupBox4\btnGreaterEqual=true +Widgets\QgsQueryBuilderBase\groupBox4\btnGreaterThan=true +Widgets\QgsQueryBuilderBase\groupBox4\btnILike=true +Widgets\QgsQueryBuilderBase\groupBox4\btnIn=true +Widgets\QgsQueryBuilderBase\groupBox4\btnLessEqual=true +Widgets\QgsQueryBuilderBase\groupBox4\btnLessThan=true +Widgets\QgsQueryBuilderBase\groupBox4\btnLike=true +Widgets\QgsQueryBuilderBase\groupBox4\btnNot=true +Widgets\QgsQueryBuilderBase\groupBox4\btnNotEqual=true +Widgets\QgsQueryBuilderBase\groupBox4\btnNotIn=true +Widgets\QgsQueryBuilderBase\groupBox4\btnOr=true +Widgets\QgsQueryBuilderBase\groupBox4\btnPct=true +Widgets\QgsQueryBuilderBase\lblDataUri=true +Widgets\QgsRasterCalcDialogBase=true +Widgets\QgsRasterCalcDialogBase\mButtonBox=true +Widgets\QgsRasterCalcDialogBase\mExpressionTextEdit=true +Widgets\QgsRasterCalcDialogBase\mExpressionTextEdit\qt_scrollarea_hcontainer=true +Widgets\QgsRasterCalcDialogBase\mExpressionTextEdit\qt_scrollarea_vcontainer=true +Widgets\QgsRasterCalcDialogBase\mExpressionTextEdit\qt_scrollarea_viewport=true +Widgets\QgsRasterCalcDialogBase\mExpressionValidLabel=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mACosButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mASinButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mATanButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mAndButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mCloseBracketPushButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mCosButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mDividePushButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mEqualButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mExpButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mGreaterButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mGreaterEqualButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mLessButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mLesserEqualButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mMinusPushButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mMultiplyPushButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mOpenBracketPushButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mOrButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mPlusPushButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mSinButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mSqrtButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mTanButton=true +Widgets\QgsRasterCalcDialogBase\mRasterBandsGroupBox=true +Widgets\QgsRasterCalcDialogBase\mRasterCalculatorExpressionLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mAddResultToProjectCheckBox=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mColumnsLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mCurrentLayerExtentButton=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mNColumnsSpinBox=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mNColumnsSpinBox\qt_spinbox_lineedit=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mNRowsSpinBox=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mNRowsSpinBox\qt_spinbox_lineedit=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mOutputFormatComboBox=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mOutputFormatLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mOutputLayerLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mOutputLayerLineEdit=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mOutputLayerPushButton=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mRowsLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mXMaxLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mXMinLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mYMaxLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mYMinLabel=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page\mOptionsAddButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page\mOptionsDeleteButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page\mOptionsHelpButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page\mOptionsValidateButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page_2=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page_2\mOptionsLineEdit=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mProfileButtons=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mProfileButtons\mProfileDeleteButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mProfileButtons\mProfileNewButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mProfileButtons\mProfileResetButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mProfileComboBox=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mProfileLabel=true +Widgets\QgsRasterHistogramWidgetBase=true +Widgets\QgsRasterHistogramWidgetBase\stackedWidget2=true +Widgets\QgsRasterHistogramWidgetBase\stackedWidget2\page=true +Widgets\QgsRasterHistogramWidgetBase\stackedWidget2\page\btnHistoCompute=true +Widgets\QgsRasterHistogramWidgetBase\stackedWidget2\page1_2=true +Widgets\QgsRasterHistogramWidgetBase\stackedWidget2\page2_2=true +Widgets\QgsRasterHistogramWidgetBase\stackedWidget2\page2_2\mHistogramProgress=true +Widgets\QgsRasterLayerPropertiesBase=true +Widgets\QgsRasterLayerSaveAsDialogBase=true +Widgets\QgsRasterLayerSaveAsDialogBase\label_2=true +Widgets\QgsRasterLayerSaveAsDialogBase\mBrowseButton=true +Widgets\QgsRasterLayerSaveAsDialogBase\mButtonBox=true +Widgets\QgsRasterLayerSaveAsDialogBase\mChangeCrsPushButton=true +Widgets\QgsRasterLayerSaveAsDialogBase\mCrsComboBox=true +Widgets\QgsRasterLayerSaveAsDialogBase\mFormatComboBox=true +Widgets\QgsRasterLayerSaveAsDialogBase\mFormatLabel=true +Widgets\QgsRasterLayerSaveAsDialogBase\mModeLabel=true +Widgets\QgsRasterLayerSaveAsDialogBase\mRawModeRadioButton=true +Widgets\QgsRasterLayerSaveAsDialogBase\mRenderedModeRadioButton=true +Widgets\QgsRasterLayerSaveAsDialogBase\mSaveAsLabel=true +Widgets\QgsRasterLayerSaveAsDialogBase\mSaveAsLineEdit=true +Widgets\QgsRasterLayerSaveAsDialogBase\mScrollArea=true +Widgets\QgsRasterLayerSaveAsDialogBase\mScrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsRasterLayerSaveAsDialogBase\mScrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsRasterLayerSaveAsDialogBase\mScrollArea\qt_scrollarea_viewport=true +Widgets\QgsRasterLayerSaveAsDialogBase\mScrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsRasterLayerSaveAsDialogBase\mTileModeCheckBox=true +Widgets\QgsRasterMinMaxWidgetBase=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\label=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\label_2=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mAccuracyGroupBox=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mAccuracyGroupBox\mActualRadioButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mAccuracyGroupBox\mEstimateRadioButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mCumulativeCutRadioButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mExtentGroupBox=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mExtentGroupBox\mCurrentExtentRadioButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mExtentGroupBox\mFullExtentRadioButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mLoadPushButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mMinMaxRadioButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mStdDevRadioButton=true +Widgets\QgsRasterPyramidsOptionsWidgetBase=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\cboResamplingMethod=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\cbxPyramidsFormat=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\cbxPyramidsLevelsCustom=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\label_2=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\label_4=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\label_5=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\lePyramidsLevels=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\textLabel4_2=true +Widgets\QgsRendererRulePropsDialog=true +Widgets\QgsRendererRulePropsDialog\btnExpressionBuilder=true +Widgets\QgsRendererRulePropsDialog\btnTestFilter=true +Widgets\QgsRendererRulePropsDialog\buttonBox=true +Widgets\QgsRendererRulePropsDialog\editDescription=true +Widgets\QgsRendererRulePropsDialog\editFilter=true +Widgets\QgsRendererRulePropsDialog\editLabel=true +Widgets\QgsRendererRulePropsDialog\groupScale=true +Widgets\QgsRendererRulePropsDialog\groupScale\label_2=true +Widgets\QgsRendererRulePropsDialog\groupScale\label_3=true +Widgets\QgsRendererRulePropsDialog\groupScale\spinMaxScale=true +Widgets\QgsRendererRulePropsDialog\groupScale\spinMaxScale\qt_spinbox_lineedit=true +Widgets\QgsRendererRulePropsDialog\groupScale\spinMinScale=true +Widgets\QgsRendererRulePropsDialog\groupScale\spinMinScale\qt_spinbox_lineedit=true +Widgets\QgsRendererRulePropsDialog\groupSymbol=true +Widgets\QgsRendererRulePropsDialog\label_1=true +Widgets\QgsRendererRulePropsDialog\label_4=true +Widgets\QgsRendererRulePropsDialog\label_5=true +Widgets\QgsRendererV2PropsDialogBase=true +Widgets\QgsRendererV2PropsDialogBase\buttonBox=true +Widgets\QgsRendererV2PropsDialogBase\cboRenderers=true +Widgets\QgsRendererV2PropsDialogBase\stackedWidget=true +Widgets\QgsRendererV2PropsDialogBase\stackedWidget\pageNoWidget=true +Widgets\QgsRendererV2PropsDialogBase\stackedWidget\pageNoWidget\label=true +Widgets\QgsRuleBasedRendererV2Widget=true +Widgets\QgsRuleBasedRendererV2Widget\btnAddRule=true +Widgets\QgsRuleBasedRendererV2Widget\btnCountFeatures=true +Widgets\QgsRuleBasedRendererV2Widget\btnEditRule=true +Widgets\QgsRuleBasedRendererV2Widget\btnRefineRule=true +Widgets\QgsRuleBasedRendererV2Widget\btnRemoveRule=true +Widgets\QgsRuleBasedRendererV2Widget\btnRenderingOrder=true +Widgets\QgsSaveToDBDialog=true +Widgets\QgsSaveToDBDialog\buttonBox=true +Widgets\QgsSaveToDBDialog\descriptionLabel=true +Widgets\QgsSaveToDBDialog\label=true +Widgets\QgsSaveToDBDialog\mFileNameLabel=true +Widgets\QgsSaveToDBDialog\mNameEdit=true +Widgets\QgsSaveToDBDialog\mUILabel=true +Widgets\QgsSaveToDBDialog\mUseAsDefault=true +Widgets\QgsSaveToDBDialog\nameLabel=true +Widgets\QgsSingleBandGrayRendererWidgetBase=true +Widgets\QgsSingleBandGrayRendererWidgetBase\label=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mContrastEnhancementComboBox=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mContrastEnhancementLabel=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mGradientComboBox=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mGrayBandComboBox=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mGrayBandLabel=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mMaxLabel=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mMaxLineEdit=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mMinLabel=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mMinLineEdit=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mMinMaxContainerWidget=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\label_2=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mClassificationModeComboBox=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mClassificationModeLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mClassifyButton=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mInvertCheckBox=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mMaxLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mMaxLineEdit=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mMinLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mMinLineEdit=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mMinMaxOriginLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mNumberOfEntriesLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mNumberOfEntriesSpinBox=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mNumberOfEntriesSpinBox\qt_spinbox_lineedit=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\mBandComboBox=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\mBandLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\mClipCheckBox=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\mColorInterpolationComboBox=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\mColorInterpolationLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\mMinMaxContainerWidget=true +Widgets\QgsSmartGroupConditionWidget=true +Widgets\QgsSmartGroupConditionWidget\label=true +Widgets\QgsSmartGroupConditionWidget\mCondCombo=true +Widgets\QgsSmartGroupConditionWidget\mCondLineEdit=true +Widgets\QgsSmartGroupConditionWidget\mRemoveBtn=true +Widgets\QgsSmartGroupEditorDialogBase=true +Widgets\QgsSmartGroupEditorDialogBase\buttonBox=true +Widgets\QgsSmartGroupEditorDialogBase\label=true +Widgets\QgsSmartGroupEditorDialogBase\label_2=true +Widgets\QgsSmartGroupEditorDialogBase\mAddConditionBtn=true +Widgets\QgsSmartGroupEditorDialogBase\mAndOrCombo=true +Widgets\QgsSmartGroupEditorDialogBase\mConditionsBox=true +Widgets\QgsSmartGroupEditorDialogBase\mNameLineEdit=true +Widgets\QgsSnappingDialogBase=true +Widgets\QgsSnappingDialogBase\cbxEnableIntersectionSnappingCheckBox=true +Widgets\QgsSnappingDialogBase\cbxEnableTopologicalEditingCheckBox=true +Widgets\QgsSnappingDialogBase\mButtonBox=true +Widgets\QgsSpatialiteSridsDialogBase=true +Widgets\QgsSpatialiteSridsDialogBase\buttonBox=true +Widgets\QgsSpatialiteSridsDialogBase\groupBox=true +Widgets\QgsSpatialiteSridsDialogBase\groupBox\radioButtonName=true +Widgets\QgsSpatialiteSridsDialogBase\groupBox\radioButtonSrid=true +Widgets\QgsSpatialiteSridsDialogBase\label=true +Widgets\QgsSpatialiteSridsDialogBase\leSearch=true +Widgets\QgsSpatialiteSridsDialogBase\pbnFilter=true +Widgets\QgsSponsorsBase=true +Widgets\QgsSponsorsBase\buttonBox=true +Widgets\QgsSponsorsBase\qgisIcon=true +Widgets\QgsSponsorsBase\txtSponsors=true +Widgets\QgsSponsorsBase\txtSponsors\qt_scrollarea_hcontainer=true +Widgets\QgsSponsorsBase\txtSponsors\qt_scrollarea_vcontainer=true +Widgets\QgsSponsorsBase\txtSponsors\qt_scrollarea_viewport=true +Widgets\QgsStyleV2ExportImportDialogBase=true +Widgets\QgsStyleV2ExportImportDialogBase\btnBrowse=true +Widgets\QgsStyleV2ExportImportDialogBase\buttonBox=true +Widgets\QgsStyleV2ExportImportDialogBase\fromLabel=true +Widgets\QgsStyleV2ExportImportDialogBase\groupCombo=true +Widgets\QgsStyleV2ExportImportDialogBase\groupLabel=true +Widgets\QgsStyleV2ExportImportDialogBase\importTypeCombo=true +Widgets\QgsStyleV2ExportImportDialogBase\label=true +Widgets\QgsStyleV2ExportImportDialogBase\listItems=true +Widgets\QgsStyleV2ExportImportDialogBase\listItems\qt_scrollarea_hcontainer=true +Widgets\QgsStyleV2ExportImportDialogBase\listItems\qt_scrollarea_vcontainer=true +Widgets\QgsStyleV2ExportImportDialogBase\listItems\qt_scrollarea_viewport=true +Widgets\QgsStyleV2ExportImportDialogBase\locationLabel=true +Widgets\QgsStyleV2ExportImportDialogBase\locationLineEdit=true +Widgets\QgsStyleV2ManagerDialogBase=true +Widgets\QgsSublayersDialogBase=true +Widgets\QgsSublayersDialogBase\buttonBox=true +Widgets\QgsSymbolLevelsDialogBase=true +Widgets\QgsSymbolLevelsDialogBase\buttonBox=true +Widgets\QgsSymbolLevelsDialogBase\chkEnable=true +Widgets\QgsSymbolLevelsDialogBase\label=true +Widgets\QgsSymbolSelectorDialogBase=true +Widgets\QgsSymbolSelectorDialogBase\btnAddLayer=true +Widgets\QgsSymbolSelectorDialogBase\btnDown=true +Widgets\QgsSymbolSelectorDialogBase\btnLock=true +Widgets\QgsSymbolSelectorDialogBase\btnRemoveLayer=true +Widgets\QgsSymbolSelectorDialogBase\btnUp=true +Widgets\QgsSymbolSelectorDialogBase\buttonBox=true +Widgets\QgsSymbolSelectorDialogBase\label_3=true +Widgets\QgsSymbolSelectorDialogBase\lblPreview=true +Widgets\QgsTextAnnotationDialogBase=true +Widgets\QgsTextAnnotationDialogBase\mBoldPushButton=true +Widgets\QgsTextAnnotationDialogBase\mButtonBox=true +Widgets\QgsTextAnnotationDialogBase\mFontSizeSpinBox=true +Widgets\QgsTextAnnotationDialogBase\mFontSizeSpinBox\qt_spinbox_lineedit=true +Widgets\QgsTextAnnotationDialogBase\mItalicsPushButton=true +Widgets\QgsTextAnnotationDialogBase\mStackedWidget=true +Widgets\QgsTextAnnotationDialogBase\mStackedWidget\page=true +Widgets\QgsTextAnnotationDialogBase\mStackedWidget\page_2=true +Widgets\QgsTextAnnotationDialogBase\mTextEdit=true +Widgets\QgsTextAnnotationDialogBase\mTextEdit\qt_scrollarea_hcontainer=true +Widgets\QgsTextAnnotationDialogBase\mTextEdit\qt_scrollarea_vcontainer=true +Widgets\QgsTextAnnotationDialogBase\mTextEdit\qt_scrollarea_viewport=true +Widgets\QgsTileScaleWidget=true +Widgets\QgsTileScaleWidget\mSlider=true +Widgets\QgsTipGuiBase=true +Widgets\QgsTipGuiBase\buttonBox=true +Widgets\QgsTipGuiBase\cbxDisableTips=true +Widgets\QgsTipGuiBase\txtTip=true +Widgets\QgsTipGuiBase\txtTip\qt_scrollarea_hcontainer=true +Widgets\QgsTipGuiBase\txtTip\qt_scrollarea_vcontainer=true +Widgets\QgsTipGuiBase\txtTip\qt_scrollarea_viewport=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\buttonBox=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\cboColors=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\cboSchemeName=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\groupBox=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\groupBox\lblPreview=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\label=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\label_2=true +Widgets\QgsVectorGradientColorRampV2DialogBase=true +Widgets\QgsVectorGradientColorRampV2DialogBase\btnInformation=true +Widgets\QgsVectorGradientColorRampV2DialogBase\buttonBox=true +Widgets\QgsVectorGradientColorRampV2DialogBase\cboType=true +Widgets\QgsVectorGradientColorRampV2DialogBase\groupBox=true +Widgets\QgsVectorGradientColorRampV2DialogBase\groupBox\lblPreview=true +Widgets\QgsVectorGradientColorRampV2DialogBase\groupStops=true +Widgets\QgsVectorGradientColorRampV2DialogBase\groupStops\btnAddStop=true +Widgets\QgsVectorGradientColorRampV2DialogBase\groupStops\btnRemoveStop=true +Widgets\QgsVectorGradientColorRampV2DialogBase\label=true +Widgets\QgsVectorGradientColorRampV2DialogBase\label_2=true +Widgets\QgsVectorGradientColorRampV2DialogBase\label_3=true +Widgets\QgsVectorLayerPropertiesBase=true +Widgets\QgsVectorLayerSaveAsDialogBase=true +Widgets\QgsVectorLayerSaveAsDialogBase\browseCRS=true +Widgets\QgsVectorLayerSaveAsDialogBase\browseFilename=true +Widgets\QgsVectorLayerSaveAsDialogBase\buttonBox=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\label_5=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\label_6=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mAddToCanvas=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrDatasourceOptions=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrDatasourceOptions\qt_scrollarea_hcontainer=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrDatasourceOptions\qt_scrollarea_vcontainer=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrDatasourceOptions\qt_scrollarea_viewport=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrLayerOptions=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrLayerOptions\qt_scrollarea_hcontainer=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrLayerOptions\qt_scrollarea_vcontainer=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrLayerOptions\qt_scrollarea_viewport=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mSkipAttributeCreation=true +Widgets\QgsVectorLayerSaveAsDialogBase\label=true +Widgets\QgsVectorLayerSaveAsDialogBase\label_2=true +Widgets\QgsVectorLayerSaveAsDialogBase\label_3=true +Widgets\QgsVectorLayerSaveAsDialogBase\label_4=true +Widgets\QgsVectorLayerSaveAsDialogBase\leCRS=true +Widgets\QgsVectorLayerSaveAsDialogBase\leFilename=true +Widgets\QgsVectorLayerSaveAsDialogBase\mCRSSelection=true +Widgets\QgsVectorLayerSaveAsDialogBase\mEncodingComboBox=true +Widgets\QgsVectorLayerSaveAsDialogBase\mFormatComboBox=true +Widgets\QgsVectorLayerSaveAsDialogBase\mScaleLabel=true +Widgets\QgsVectorLayerSaveAsDialogBase\mScaleSpinBox=true +Widgets\QgsVectorLayerSaveAsDialogBase\mScaleSpinBox\qt_spinbox_lineedit=true +Widgets\QgsVectorLayerSaveAsDialogBase\mSymbologyExportComboBox=true +Widgets\QgsVectorLayerSaveAsDialogBase\mSymbologyExportLabel=true +Widgets\QgsVectorRandomColorRampV2DialogBase=true +Widgets\QgsVectorRandomColorRampV2DialogBase\buttonBox=true +Widgets\QgsVectorRandomColorRampV2DialogBase\groupBox=true +Widgets\QgsVectorRandomColorRampV2DialogBase\groupBox\lblPreview=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_10=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_2=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_3=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_4=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_5=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_6=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_7=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_8=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_9=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinCount=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinCount\qt_spinbox_lineedit=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinHue1=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinHue1\qt_spinbox_lineedit=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinHue2=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinHue2\qt_spinbox_lineedit=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinSat1=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinSat1\qt_spinbox_lineedit=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinSat2=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinSat2\qt_spinbox_lineedit=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinVal1=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinVal1\qt_spinbox_lineedit=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinVal2=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinVal2\qt_spinbox_lineedit=true +Widgets\QgsWFSSourceSelectBase=true +Widgets\QgsWFSSourceSelectBase\GroupBox1=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\btnConnect=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\btnDelete=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\btnEdit=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\btnLoad=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\btnNew=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\btnSave=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\cmbConnections=true +Widgets\QgsWFSSourceSelectBase\buttonBox=true +Widgets\QgsWFSSourceSelectBase\cbxUseTitleLayerName=true +Widgets\QgsWFSSourceSelectBase\gbCRS=true +Widgets\QgsWFSSourceSelectBase\gbCRS\btnChangeSpatialRefSys=true +Widgets\QgsWFSSourceSelectBase\gbCRS\labelCoordRefSys=true +Widgets\QgsWFSSourceSelectBase\labelFilter=true +Widgets\QgsWFSSourceSelectBase\lineFilter=true +Widgets\QgsWMSSourceSelectBase=true +Widgets\QgsWMSSourceSelectBase\buttonBox=true +Widgets\QgsWMSSourceSelectBase\labelStatus=true +Widgets\QgsWMSSourceSelectBase\tabServers=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayerOrder=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayerOrder\mLayerDownButton=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayerOrder\mLayerUpButton=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnAddDefault=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnConnect=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnDelete=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnEdit=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnGrpImageEncoding=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnLoad=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnNew=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnSave=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\cmbConnections=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\btnChangeSpatialRefSys=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\label=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\labelCoordRefSys=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\label_2=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\label_3=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\label_4=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\leLayerName=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\mFeatureCount=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\mStepHeight=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\mStepWidth=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\mTileHeight=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\mTileWidth=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabServerSearch=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabServerSearch\btnAddWMS=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabServerSearch\btnSearch=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabServerSearch\leSearchTerm=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabTilesets=true +Widgets\QgsWmtsDimensionsBase=true +Widgets\QgsWmtsDimensionsBase\buttonBox=true +Widgets\SimplifyLineDialog=true +Widgets\SimplifyLineDialog\horizontalSlider=true +Widgets\SimplifyLineDialog\label=true +Widgets\SimplifyLineDialog\okButton=true +Widgets\SimplifyLineDialog\spinBox=true +Widgets\SimplifyLineDialog\spinBox\qt_spinbox_lineedit=true +splashpath=%PROFILE_FOLDER%/ +status=1 diff --git a/README.md b/README.md new file mode 100644 index 0000000..7b970b0 --- /dev/null +++ b/README.md @@ -0,0 +1,56 @@ +# Profile MoFa4Q + +MoFa4Q is abbreaviation of the german word "Mobile-Fachschale-QGIS" (mobile application for QGIS) + +## Features +- Designed for offline use +- Reduced QGIS interface and optimized for tablet use, but can also be used in normal desktop use +- Customized layer selection +- Public layers (central management by administrator) +- Integration of local or private geopackages (in private section) +- Search in geopackages + - Address search + - Object search +- Imprint/AppInfo +- Toolbar: + - Zoom in and out + - Zoom to total extent of the geopackages + - Ruler and surface area measuring tool + - Object feature info +- Print dialog: + - Selection of print templates + - Selection of print scale + - Rotation of the print frame + - Export as PDF or direct print to the printer +- Add annotations/notes +- Using a geodata synctool to update the geodata + +## Installation MoFa4Q +The installation can be done with MoFa4Q-Installer (see https://github.com/WhereGroup/qgis_mofa4q_installer) + +## Data structure +* Public geopackages (and their QLR files) are imported by the synctool under the folder geopackages/public +The sequence_qlr.yml file is also imported +* Private geopackages are imported by the user (via the application) under geopackages/private +* The geopackage from the search remains as it was before (imported under geopackages/search) +* the geopackage from the background map is also imported by the installer under geopackages/dop +The background layer is referenced directly in the QGIS project (in the file mofa4q.qgs). + +![alt text](init/data_structure.png) + +### Synctool +MoFa4Q used all offline data, even for the background map. A Synctool has been developed to refresh and update the data. When the PC is connected to a network it is possible to check if new data is available and download it. + + +### Local customization by the user +The user settings are saved in a number of files so that the customized configuration is +is available again the next time the application is started. +The configuration files are: +- prj_conf.yaml: general configuration. For example, whether debug mode is active or whether the background map is switched off. +And it also contains the setting of the private layer +- annotations.yaml: the list of annotations (notes) is stored here +- the public layers are stored in the QLR files + +## Activating debug mode +To activate the debug mode you have to define in the file python/plugins/moFa4Q_plugin +define isDebug: true diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..de4fe4a --- /dev/null +++ b/changelog.md @@ -0,0 +1,160 @@ +# Changelog + +All notable changes to this project will be documented in this file. +For each version important additions, changes and removals are listed here. + +The format is inspired from [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +and the versioning aims to respect [Semantic Versioning](http://semver.org/spec/v2.0.0.html). + +## [v2.1.0] Minor and Feature Release - 2024-01-28 + +### Added +- add MainWindow Function and change icon or title name +- show warning when closing QGIS. Improve popup dialog +- add icon to main window +- add missed improt + +### Changed +- simplify the gpkg_popup.py code +- adjust button dimensions based on resolution +- minor change +- change README.md +- change QGIS projects file +- optimize QGIS3.ini to version 3.34 +- change QGIS Version to 3.34.1 +- improve comments +- move file to the annotation folder +- change zoom to max extent + +### Removed +- remove button function zoom out +- remove comment +- remove unuseful codes + +### Fixed +- fix leftPanel bug on initialization +- fix macros indipendent from process of saving QLR file +- fix position buttons when monitor scale > 125% +- fix position buttons when page resized +- fix rotation for annotations in print +- fix and change main titel and icon path fix +- fix title of the main window +- fix bug log private geopackages + +## [v2.0.2] Fix and Change - 2023-12-29 + +### Added +- add _initCheckGeopackagesLayer and change gpkg_popup.py to dynamic strings +- add new deployment +- add close qgis windows event to close btn of openSynchTool def +- add marco to gpkg_popup +- add alphabetically layers of a new private gpkg file + +### Changed +- change manifest.txt +- change marco path +- change again height els in layer tree +- minor change +- increase width based on text in layer tree + +### Removed +- remove horizontal scrollbar in layer tree +- remove unuseful resources, othe minor changes +- remove red symbol from text annotation +- remove fake geopackage + +### Fixed +- fix gpkgPopup +- fix bugs +- fix marco and qgis project: Save automatic layertree to sequence.yml +- fix gpkgPopup.show mit custom text + +## [v2.0.0] Minor and Feature Release - 2023-11-08 + +### Added +- improvement comments of annotations.py + +### Changed +- change north-arrow to print templates +- improve print and pdf export +- change splash.png +- change projectfile to qgz basename + +### Removed +- remove old qgis ltr version +- remove time info to print templates +- remove unused file +- optimze python code + +### Fixed +- fix bug a4_hoch.qpt +- fix backgroundlayer +- fix problem dim frame of text notation +- fix mFeature.attribute id String of search dialog +- fix height of layer page in left panel +- fix extent of luftbilder layer and optimize view + +## [v1.3.3] Change and Fix - 2023-10-13 + +### Added +- add more variable to manifest file + +### Fixed +- fix path Server_folder + +## [v1.3.2] Change and Fix - 2023-06-22 + +### Changed +- change and update qgis-ltr to 3.22.16 + +### Fixed +- fixed run msi installer + +## [v1.3.1] Change and Fix - 2023-03-24 + +### Added + +### Changed +- change and update to QGIS 3.28.4 + +### Removed + +### Fixed +- bugfix qgis style + +## [v1.3.0] Minor Release - 2022-07-01 + +### Added + +### Changed +- toolbar disable + +### Removed + +### Fixed +- fix bug if info geopackage is corrupt + +## [v1.2.6] Minor Release - 2022-05-31 + +### Added +- set visibility background image +- improve warning for search +- add empty folder to git + +### Changed + +### Removed + +### Fixed + +## [v1.2.5] Minor Release - 2021-11-19 + +### Added +- Improvement plot + +### Changed + +### Removed +- remove warning for some gpkgs + +### Fixed \ No newline at end of file diff --git a/composer_templates/a0_quer.qpt b/composer_templates/a0_quer.qpt new file mode 100644 index 0000000..1f05688 --- /dev/null +++ b/composer_templates/a0_quer.qpt @@ -0,0 +1,1705 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/composer_templates/a1_quer.qpt b/composer_templates/a1_quer.qpt new file mode 100644 index 0000000..be12d92 --- /dev/null +++ b/composer_templates/a1_quer.qpt @@ -0,0 +1,1736 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/composer_templates/a2_quer.qpt b/composer_templates/a2_quer.qpt new file mode 100644 index 0000000..45a5da6 --- /dev/null +++ b/composer_templates/a2_quer.qpt @@ -0,0 +1,1507 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/composer_templates/a3_quer.qpt b/composer_templates/a3_quer.qpt new file mode 100644 index 0000000..b0e7ffc --- /dev/null +++ b/composer_templates/a3_quer.qpt @@ -0,0 +1,1175 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/composer_templates/a4_hoch.qpt b/composer_templates/a4_hoch.qpt new file mode 100644 index 0000000..2470e9a --- /dev/null +++ b/composer_templates/a4_hoch.qpt @@ -0,0 +1,1300 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/composer_templates/a4_quer.qpt b/composer_templates/a4_quer.qpt new file mode 100644 index 0000000..11d4021 --- /dev/null +++ b/composer_templates/a4_quer.qpt @@ -0,0 +1,1122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/geopackages/dop/.gitkeep b/geopackages/dop/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/geopackages/private/.gitkeep b/geopackages/private/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/geopackages/public/.gitkeep b/geopackages/public/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/geopackages/search/.gitkeep b/geopackages/search/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/init/QGIS3.ini b/init/QGIS3.ini new file mode 100644 index 0000000..fcaae15 --- /dev/null +++ b/init/QGIS3.ini @@ -0,0 +1,667 @@ +[Cad] +AngleShowInFloater=true +DistanceShowInFloater=true +Floater=false +MCoordinateShowInFloater=true +XCoordinateShowInFloater=true +YCoordinateShowInFloater=true +ZCoordinateShowInFloater=true + +[Map] +highlight\buffer=0.5 +highlight\color=#ff0000 +highlight\colorAlpha=128 +highlight\minWidth=1 +logCanvasRefreshEvent=false +scales="1:1000000,1:500000,1:250000,1:100000,1:50000,1:25000,1:10000,1:5000,1:2500,1:1000,1:500" +searchRadiusMM=2 +default_scales=1:1000000, 1:500000, 1:250000, 1:100000, 1:50000, 1:25000, 1:10000, 1:5000, 1:2500, 1:1000, 1:500 + +[Plugin-GPS] +devices\deviceList=@Invalid() + +[PluginReloader] +plugin=moFa4Q_plugin + +[Plugins] +libtopolplugin=false +searchPathsForPlugins=@Invalid() + +[Processing] +Configuration\ACTIVATE_GDAL=true +Configuration\ACTIVATE_GRASS7=true +Configuration\ACTIVATE_SAGA=true +Configuration\DefaultOutputRasterLayerExt=-1 +Configuration\DefaultOutputVectorLayerExt=-1 +Configuration\FILTER_INVALID_GEOMETRIES=2 +Configuration\GRASS7_LOG_COMMANDS=false +Configuration\GRASS7_LOG_CONSOLE=false +Configuration\GRASS_HELP_PATH=/usr/share/doc/grass-doc/html +Configuration\GRASS_USE_VEXTERNAL=false +Configuration\KEEP_DIALOG_OPEN=true +Configuration\MODELS_FOLDER=%PROFILE_FOLDER%/processing/models +Configuration\OUTPUTS_FOLDER=%PROFILE_FOLDER%/processing/outputs +Configuration\POST_EXECUTION_SCRIPT= +Configuration\PREFER_FILENAME_AS_LAYER_NAME=true +Configuration\PRE_EXECUTION_SCRIPT= +Configuration\RASTER_STYLE= +Configuration\SAGA_IMPORT_EXPORT_OPTIMIZATION=false +Configuration\SAGA_LOG_COMMANDS=true +Configuration\SAGA_LOG_CONSOLE=true +Configuration\SCRIPTS_FOLDERS=%PROFILE_FOLDER%/processing/scripts +Configuration\SHOW_ALGORITHMS_KNOWN_ISSUES=false +Configuration\SHOW_CRS_DEF=true +Configuration\SHOW_PROVIDERS_TOOLTIP=true +Configuration\TEMP_PATH2= +Configuration\USE_FILENAME_AS_LAYER_NAME=false +Configuration\VECTOR_LINE_STYLE= +Configuration\VECTOR_POINT_STYLE= +Configuration\VECTOR_POLYGON_STYLE= +Configuration\WARN_UNMATCHING_CRS=true +hasPortedOldLog=true +Configuration\MAX_THREADS=16 +Configuration\RESULTS_GROUP_NAME= +Configuration\VECTOR_FEATURE_COUNT=false +Configuration\GRASS_HELP_URL= +Configuration\GRASS_USE_REXTERNAL=false + +[Projections] +defaultBehavior=prompt +layerDefaultCrs=EPSG:4326 +projectDefaultCrs=EPSG:4326 +showDatumTransformDialog=false + +[PythonPlugins] +GdalTools=true +MetaSearch=true +db_manager=true +grassprovider=true +moFa4Q_plugin=true +plugin_reloader=true +plus_mops=false +processing=true + +[QgsCollapsibleGroupBox] +QgsCustomProjectionDialogBase\groupBox\collapsed=false +QgsCustomProjectionDialogBase\groupBox_2\collapsed=true +QgsOptionsBase\groupBox\collapsed=false +QgsOptionsBase\groupBox_10\collapsed=false +QgsOptionsBase\groupBox_11\collapsed=false +QgsOptionsBase\groupBox_12\collapsed=false +QgsOptionsBase\groupBox_14\collapsed=false +QgsOptionsBase\groupBox_15\collapsed=false +QgsOptionsBase\groupBox_18\collapsed=false +QgsOptionsBase\groupBox_19\collapsed=false +QgsOptionsBase\groupBox_2\collapsed=false +QgsOptionsBase\groupBox_21\collapsed=false +QgsOptionsBase\groupBox_22\collapsed=false +QgsOptionsBase\groupBox_23\collapsed=false +QgsOptionsBase\groupBox_24\collapsed=false +QgsOptionsBase\groupBox_27\collapsed=false +QgsOptionsBase\groupBox_28\collapsed=false +QgsOptionsBase\groupBox_29\collapsed=false +QgsOptionsBase\groupBox_3\collapsed=false +QgsOptionsBase\groupBox_4\collapsed=false +QgsOptionsBase\groupBox_5\collapsed=false +QgsOptionsBase\groupBox_6\collapsed=false +QgsOptionsBase\groupBox_7\collapsed=false +QgsOptionsBase\groupBox_8\collapsed=false +QgsOptionsBase\groupBox_9\collapsed=false +QgsOptionsBase\grpLocale\collapsed=false +QgsOptionsBase\grpProjectionBehavior\collapsed=false +QgsOptionsBase\grpProxy\collapsed=false +QgsOptionsBase\mCurrentVariablesGrpBx\collapsed=false +QgsOptionsBase\mDefaultDatumTransformGroupBox\collapsed=false +QgsOptionsBase\mEnterAttributeValuesGroupBox\collapsed=false +QgsOptionsBase\mEnvironmentGrpBx\collapsed=false +QgsOptionsBase\mIdentifyGroupBox\collapsed=false +QgsOptionsBase\mLegendGrpBx\collapsed=false +QgsOptionsBase\mQSettingsGrpBx\collapsed=false +QgsOptionsBase\mRubberBandGroupBox\collapsed=false +QgsOptionsBase\mSegmentationGroupBox\collapsed=false +QgsOptionsBase\mSimplifyDrawingGroupBox\collapsed=false +QgsOptionsBase\mSnappingGroupBox\collapsed=false +QgsOptionsBase\mVertexMarkerGroupBox\collapsed=false +QgsProjectPropertiesBase\mDatumTransformGroupBox\collapsed=false +QgsRasterLayerPropertiesBase\mBandRenderingGrpBx\collapsed=false +QgsRasterLayerPropertiesBase\mColorRenderingGrpBox\collapsed=false +QgsRasterLayerPropertiesBase\mMetaAttributionGrpBx\collapsed=false +QgsRasterLayerPropertiesBase\mMetaDescriptionGrpBx\collapsed=false +QgsRasterLayerPropertiesBase\mMetaLegendGrpBx\collapsed=false +QgsRasterLayerPropertiesBase\mMetaMetaUrlGrpBx\collapsed=false +QgsRasterLayerPropertiesBase\mResamplingGroupBox\checked=false +QgsRasterLayerPropertiesBase\mResamplingGroupBox\collapsed=false +QgsRasterLayerPropertiesBase\mWMSPrintGroupBox\collapsed=false +QgsOptionsBase\groupBox_32\collapsed=false +QgsOptionsBase\mCoordinateDisplayGroup\collapsed=false +QgsOptionsBase\mMeasureToolCopySettingsGroupBox\collapsed=false +QgsOptionsBase\mMeasureToolGroupBox\collapsed=false +QgsOptionsBase\mPredefinedScalesGroupBox\collapsed=false +QgsOptionsBase\mZoomingGroupBox\collapsed=false + +[QgsVariableEditorTree] +globalOptions\column0width=100 +projectProperties\column0width=100 + +[Raster] +cumulativeCutLower=0.02 +cumulativeCutUpper=0.98 +defaultBlueBand=3 +defaultContrastEnhancementAlgorithm\multiBandMultiByte=StretchToMinimumMaximum +defaultContrastEnhancementAlgorithm\multiBandSingleByte=NoEnhancement +defaultContrastEnhancementAlgorithm\singleBand=StretchToMinimumMaximum +defaultContrastEnhancementLimits\multiBandMultiByte=CumulativeCut +defaultContrastEnhancementLimits\multiBandSingleByte=MinMax +defaultContrastEnhancementLimits\singleBand=MinMax +defaultGreenBand=2 +defaultRedBand=1 +defaultStandardDeviation=2 +default-oversampling=2 +default-early-resampling=false +defaultZoomedInResampling=nearest neighbour +defaultZoomedOutResampling=nearest neighbour + +[UI] +Customization\enabled=true +UITheme=default +annotationTool=0 +geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\a\x7f\xff\xff\xff\xf8\0\0\xf\0\0\0\x4\b\0\0\b3\0\0\x1)\0\0\f<\0\0\x3Y\0\0\0\x1\x2\0\0\0\a\x80\0\0\a\x80\0\0\0\x17\0\0\xe\xff\0\0\x4\a) +lastCustomizationDir=%PROFILE_FOLDER%/ +lastFileNameWidgetDir= +lastProjectDir=%PROFILE_FOLDER%/ +recentProjections=3452 +recentProjectionsAuthId=EPSG:4326 +recentProjectionsProj4="+proj=longlat +datum=WGS84 +no_defs" +recentProjects\1\crs=EPSG:25832 +recentProjects\1\path=%PROFILE_FOLDER%/mofa4q.qgz +recentProjects\1\pin=false +recentProjects\1\previewImage=%PROFILE_FOLDER%//previewImages/846e98397e4081c585470dea1afb13ae.png +recentProjects\1\title=mofa4q +state="@ByteArray(\0\0\0\xff\0\0\0\0\xfd\0\0\0\x4\0\0\0\0\0\0\x1\xae\0\0\x4\x6\xfc\x2\0\0\0\x15\xfb\0\0\0\f\0L\0\x61\0y\0\x65\0r\0s\x1\0\0\0\x16\0\0\0\x89\0\0\0\0\0\0\0\0\xfc\0\0\0\xa5\0\0\x2\xcd\0\0\0\0\0\xff\xff\xff\xfa\0\0\0\0\x1\0\0\0\x4\xfb\0\0\0\f\0L\0\x65\0g\0\x65\0n\0\x64\x1\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\x14\0L\0\x61\0y\0\x65\0r\0O\0r\0\x64\0\x65\0r\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\xe\0L\0\x61\0y\0\x65\0r\0s\0\x32\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\f\0L\0\x61\0y\0\x65\0r\0s\x1\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\f\0L\0\x61\0y\0\x65\0r\0s\0\0\0\0Q\0\0\0x\0\0\0\0\0\0\0\0\xfb\0\0\0\xe\0\x42\0r\0o\0w\0s\0\x65\0r\0\0\0\x1\x45\0\0\x2-\0\0\0\0\0\0\0\0\xfb\0\0\0\x10\0O\0v\0\x65\0r\0v\0i\0\x65\0w\0\0\0\x1\xd7\0\0\0\xc4\0\0\0\0\0\0\0\0\xfb\0\0\0\"\0\x43\0o\0o\0r\0\x64\0i\0n\0\x61\0t\0\x65\0\x43\0\x61\0p\0t\0u\0r\0\x65\0\0\0\x1~\0\0\0\xa0\0\0\0\0\0\0\0\0\xfb\0\0\0\b\0U\0n\0\x64\0o\0\0\0\x1\xe4\0\0\0\xdc\0\0\0\0\0\0\0\0\xfb\0\0\0\x10\0\x42\0r\0o\0w\0s\0\x65\0r\0\x32\0\0\0\x2\x13\0\0\0\xad\0\0\0\0\0\0\0\0\xfb\0\0\0\x1c\0G\0P\0S\0I\0n\0\x66\0o\0r\0m\0\x61\0t\0i\0o\0n\0\0\0\x1\xbb\0\0\x1\x5\0\0\0\0\0\0\0\0\xfb\0\0\0(\0\x64\0w\0O\0p\0\x65\0n\0l\0\x61\0y\0\x65\0r\0s\0O\0v\0\x65\0r\0v\0i\0\x65\0w\0\0\0\x1\x64\0\0\x1\x37\0\0\0\0\0\0\0\0\xfb\0\0\0\x1c\0u\0n\0\x64\0o\0/\0r\0\x65\0\x64\0o\0 \0\x64\0o\0\x63\0k\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0.\0\x41\0\x64\0v\0\x61\0n\0\x63\0\x65\0\x64\0\x44\0i\0g\0i\0t\0i\0z\0i\0n\0g\0T\0o\0o\0l\0s\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\x34\0S\0t\0\x61\0t\0i\0s\0t\0\x61\0l\0S\0u\0m\0m\0\x61\0r\0y\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0&\0\x42\0o\0o\0k\0m\0\x61\0r\0k\0s\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\x38\0S\0t\0\x61\0t\0i\0s\0t\0i\0\x63\0\x61\0l\0S\0u\0m\0m\0\x61\0r\0y\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\x14\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\0\0\0\x2\xe0\0\0\x1\x1d\0\0\0\0\0\0\0\0\xfb\0\0\0\xe\0L\0\x61\0y\0\x65\0r\0s\0\x32\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\f\0L\0\x61\0y\0\x65\0r\0s\x1\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\x14\0\x41\0l\0l\0\x42\0u\0t\0t\0o\0n\0s\x1\0\0\0\x16\0\0\0R\0\0\0\0\0\0\0\0\xfb\0\0\0\x18\0\x43\0u\0s\0t\0o\0m\0L\0\x61\0y\0\x65\0r\0s\x1\0\0\0n\0\0\x3\xae\0\0\0\0\0\0\0\0\xfb\0\0\0\x18\0V\0\x65\0r\0t\0\x65\0x\0\x45\0\x64\0i\0t\0o\0r\0\0\0\0\0\xff\xff\xff\xff\0\0\0]\0\xff\xff\xff\0\0\0\x1\0\0\x1\xc6\0\0\x3\xb0\xfc\x2\0\0\0\x10\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x19\0\0\x3\xb0\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0\x16\0\0\x3\xa9\0\0\0\0\0\0\0\0\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\0=\0\0\x3\x82\0\0\0\0\0\0\0\0\xfb\0\0\0\x1e\0S\0\x65\0x\0t\0\x61\0n\0t\0\x65\0T\0o\0o\0l\0\x62\0o\0x\0\0\0\0g\0\0\x2\x34\0\0\0\0\0\0\0\0\xfc\0\0\0\x64\0\0\x2\x33\0\0\0\0\0\xff\xff\xff\xfa\0\0\0\0\x1\0\0\0\x2\xfb\0\0\0\x18\0L\0\x61\0y\0\x65\0r\0S\0t\0y\0l\0i\0n\0g\0\0\0\x3\xd6\0\0\x1*\0\0\0\0\0\0\0\0\xfb\0\0\0\"\0P\0r\0o\0\x63\0\x65\0s\0s\0i\0n\0g\0T\0o\0o\0l\0\x62\0o\0x\0\0\0\0\0\xff\xff\xff\xff\0\0\0\x46\0\xff\xff\xff\xfb\0\0\0\x14\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0\xfb\0\0\0\x10\0\x44\0\x65\0v\0T\0o\0o\0l\0s\0\0\0\0\0\xff\xff\xff\xff\0\0\0]\0\xff\xff\xff\xfb\0\0\0\x1a\0R\0\x65\0s\0u\0l\0t\0s\0V\0i\0\x65\0w\0\x65\0r\0\0\0\0\0\xff\xff\xff\xff\0\0\x1\x1d\0\xff\xff\xff\xfb\0\0\0 \0t\0h\0\x65\0T\0i\0l\0\x65\0S\0\x63\0\x61\0l\0\x65\0\x44\0o\0\x63\0k\0\0\0\0\0\xff\xff\xff\xff\0\0\0y\0\xff\xff\xff\0\0\0\x2\0\0\0\0\0\0\0\0\xfc\x1\0\0\0\x1\xfb\0\0\0&\0T\0\x65\0m\0p\0o\0r\0\x61\0l\0 \0\x43\0o\0n\0t\0r\0o\0l\0l\0\x65\0r\0\0\0\0\0\xff\xff\xff\xff\0\0\x2S\0\xff\xff\xff\0\0\0\x3\0\0\a\x80\0\0\x1\x65\xfc\x1\0\0\0\x3\xfb\0\0\0\x14\0M\0\x65\0s\0s\0\x61\0g\0\x65\0L\0o\0g\0\0\0\x1T\0\0\x3\xac\0\0\0\0\0\0\0\0\xfb\0\0\0&\0U\0s\0\x65\0r\0I\0n\0p\0u\0t\0\x44\0o\0\x63\0k\0W\0i\0\x64\0g\0\x65\0t\x2\0\0\0\0\0\0\0\0\0\0\0\xc8\0\0\0\x64\xfb\0\0\0\x1a\0P\0y\0t\0h\0o\0n\0\x43\0o\0n\0s\0o\0l\0\x65\x1\0\0\x1l\0\0\x6\x14\0\0\0\0\0\0\0\0\0\0\a\x80\0\0\x3\xc3\0\0\0\x1\0\0\0\x2\0\0\0\x1\0\0\0\x2\xfc\0\0\0\x2\0\0\0\x1\0\0\0\0\0\0\0\x2\0\0\0\x1\0\0\0&\0m\0\x41\0n\0n\0o\0t\0\x61\0t\0i\0o\0n\0s\0T\0o\0o\0l\0\x42\0\x61\0r\0\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0)" + +[Windows] +AttributeDialog\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\n\xa8\0\0\x1\x62\0\0\v\xc3\0\0\x2\x86\0\0\n\xa9\0\0\x1\x84\0\0\v\xc2\0\0\x2\x85\0\0\0\0\0\0\0\0\a\x80\0\0\n\xa9\0\0\x1\x84\0\0\v\xc2\0\0\x2\x85) +Bookmarks\headerstate=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\t\x1\0\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\x3 \0\0\0\t\x1\x1\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\t\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64) +Bookmarks\headerstateV2=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x3\x9d\0\0\0\t\x1\x1\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\t\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\0}\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64) +BookmarksDockWidget\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\a\x80\0\0\0\x1c\0\0\t)\0\0\x1\x8c\0\0\a\x81\0\0\0>\0\0\t(\0\0\x1\x8b\0\0\0\0\0\0\0\0\a\x80\0\0\a\x81\0\0\0>\0\0\t(\0\0\x1\x8b) +DatumTransformDialog\columnWidths\0=241 +DatumTransformDialog\columnWidths\1=119 +DatumTransformDialog\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\0\0\0\0\0\x1c\0\0\x2k\0\0\x2\x5\0\0\0\0\0\0\0\x1c\0\0\x2k\0\0\x2\x5\0\0\0\0\0\0\0\0\a\x80) +DatumTransformDialog\hideDeprecated=false +MessageViewer\geometry="@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\n<\0\0\x1Y\0\0\xe\t\0\0\x2\x90\0\0\n=\0\0\x1u\0\0\xe\b\0\0\x2\x8f\0\0\0\x2\0\0\0\0\a\x80)" +Options\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x1\x81\0\0\0?\0\0\x5\x87\0\0\x3\xcc\0\0\x1\x82\0\0\0^\0\0\x5\x86\0\0\x3\xcb\0\0\0\0\0\0\0\0\a\x80\0\0\x1\x82\0\0\0^\0\0\x5\x86\0\0\x3\xcb) +Options\splitState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\x96\0\0\x2H\0\xff\xff\xff\xff\x1\0\0\0\x1\0) +Options\tab=21 +PluginManager\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x4\x16\0\0\0\x1c\0\0\a\x7f\0\0\x1\xf2\0\0\x4\x16\0\0\0\x1c\0\0\a\x7f\0\0\x1\xf2\0\0\0\0\0\0\0\0\a\x80\0\0\x4\x16\0\0\0\x1c\0\0\a\x7f\0\0\x1\xf2) +PluginManager\option=1 +PluginManager\secondSplitterState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xc8\0\0\x1\xb2\0\xff\xff\xff\xff\x1\0\0\0\x1\0) +PluginManager\splitState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\x8c\0\0\x2\x83\0\0\0\0\a\x1\0\0\0\x1\x1) +PluginManager\tab=0 +ProjectProperties\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\t\x89\0\0\0G\0\0\f\xe3\0\0\x3\xa1\0\0\t\x8a\0\0\0\x63\0\0\f\xe2\0\0\x3\xa0\0\0\0\x2\0\0\0\0\a\x80) +ProjectProperties\splitState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\x96\0\0\x2\x63\0\xff\xff\xff\xff\x1\0\0\0\x1\0) +ProjectProperties\tab=2 +QWidget\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\0\0\0\0\0\0\0\0\0\x63\0\0\0\x1d\0\0\0\0\0\0\0\0\0\0\0\x63\0\0\0\x1d\0\0\0\0\0\0\0\0\a\x80) +QgsCustomProjectionDialogBase\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\n&\0\0\0\xa1\0\0\fE\0\0\x3G\0\0\n'\0\0\0\xbd\0\0\fD\0\0\x3\x46\0\0\0\x2\0\0\0\0\a\x80) +QgsCustomizationDialogBase\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\0\0\0\0\0\0\0\0\x3\x9a\0\0\x3+\0\0\0\x1\0\0\0\x1c\0\0\x3\x99\0\0\x3*\0\0\0\0\0\0\0\0\a\x80) +QgsMessageViewer\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\t`\0\0\x1V\0\0\xe\x9f\0\0\x3\x82\0\0\ta\0\0\x1x\0\0\xe\x9e\0\0\x3\x81\0\0\0\0\0\0\0\0\a\x80\0\0\ta\0\0\x1x\0\0\xe\x9e\0\0\x3\x81) +QgsPluginInstallerFetchingDialogBase\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\n\x1c\xff\xff\xff\xfa\0\0\f&\0\0\x1h\0\0\n\x1d\0\0\0\x1c\0\0\f%\0\0\x1g\0\0\0\0\0\0\0\0\a\x80\0\0\n\x1d\0\0\0\x1c\0\0\f%\0\0\x1g) +RasterLayerProperties\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\t\x9e\0\0\0\x62\0\0\f\xce\0\0\x3\x87\0\0\t\x9f\0\0\0~\0\0\f\xcd\0\0\x3\x86\0\0\0\x2\0\0\0\0\a\x80) +RasterLayerProperties\splitState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\x96\0\0\x2\x63\0\xff\xff\xff\xff\x1\0\0\0\x1\0) +RasterLayerProperties\tab=7 +SnappingWidget\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x3\x41\0\0\0\x14\0\0\a\x7f\0\0\0?\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\a\x80\0\0\x3\x41\0\0\0\x14\0\0\a\x7f\0\0\0?) +StyleV2Manager\geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x2\0\0\0\0\t\xcd\0\0\x1\x19\0\0\f\x9e\0\0\x2\xcf\0\0\t\xce\0\0\x1\x35\0\0\f\x9d\0\0\x2\xce\0\0\0\x2\0\0\0\0\a\x80) +StyleV2Manager\splitter=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xd6\0\0\x2\x1c\0\0\0\0\x3\x1\0\0\0\x1\0) +CodeEditorOptions\splitterState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\x93\0\0\0S\x1\xff\xff\xff\xff\x1\0\0\0\x2\0) +DatumTransformTable\headerState=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1\xc1\0\0\0\x4\0\x1\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x84\0\0\0\0\0\0\0\x4\0\0\0J\0\0\0\x1\0\0\0\0\0\0\0}\0\0\0\x1\0\0\0\0\0\0\0}\0\0\0\x1\0\0\0\0\0\0\0}\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\0) + +[app] +Windows\WelcomePage\SplitState=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\xce\0\0\0\xbe\x1\xff\xff\xff\xff\x1\0\0\0\x1\0) +news-feed\items\httpsfeedqgisorg\entries\items\49\content="

A message of peace from the QGIS Community: We, the developers, contributors and community members of the QGIS Project view the ongoing world events in Ukraine and other conflict areas around the world with great sadness. Our aim in developing QGIS has always been to provide a powerful tool to support the creation of a just and humane society. We want to enable a world where every person has a voice, the ability to express, and be secure in, their tenure in their homes, villages, towns, cities and countries. We hope tools like QGIS are used to the benefit of all citizens on earth, to support a sustainable environment, an orderly society and, in particular, to establish and preserve sovereign dignity, security and freedom from oppression.

\r\n

We ask the leaders of the world to resolve their disputes peacefully, through negotiation and compromise, humility and deference to the citizens who are placed in your care. To the members of the QGIS Community that are caught up in this conflict, our thoughts and support are with you, and we hope that you and your families are safe and that this conflict comes to a speedy end.

" +news-feed\items\httpsfeedqgisorg\entries\items\49\image-url=https://feed.qgis.org/media/feedimages/2022/02/25/Flag_of_Ukraine.jpg +news-feed\items\httpsfeedqgisorg\entries\items\49\link=https://www.qgis.org/en/site/getinvolved/governance/codeofconduct/codeofconduct.html +news-feed\items\httpsfeedqgisorg\entries\items\49\sticky=false +news-feed\items\httpsfeedqgisorg\entries\items\49\title=QGIS for Peace +news-feed\items\httpsfeedqgisorg\last-fetch-time=1706102377 +plugin_installer\checkOnStart=false +plugin_installer\checkOnStartInterval=0 +plugin_installer\checkOnStartLastDate=@Variant(\0\0\0\xe\0%\x84&) +plugin_installer\seen_plugins=db_manager, IHK, MetaSearch, paolo_test2, processing, zzz, QuickWKT, MemoryLayerSaver, valuetool, GeoCoding, GroupStats, timemanager, menu_from_project, Hotlink, GarminCustomMap, loadthemall, RemoveEmptyLayers, mask, lizmap, profiletool, midvatten, qNote, mmqgis, pgversion, inasafe, qgsAzimuth, qgiscloud, qgSurf, DirectionalSlope, pstimeseries, VectorFieldCalc, pointsamplingtool, contour, LecoS, crayfish, pdokservicesplugin, Cxf_in, flowTrace, geospatialsimulation, plaingeometryeditor, kuw_filter, SemiAutomaticClassificationPlugin, splitmultipart, DistroMap, zoomrc, qProf, BulkVectorExport, DataDrivenInputMask, ZoomToPostcode, DigitizingTools, LandXml, qchainage, VoGisProfilTool, send2google_earth, BufferByPercentage, pgRoutingLayer, htpgeoprocessor, cadastre, geopunt4Qgis, shp_to_obs, Qgis2threejs, Video_UAV_Tracker, realcentroid, b4udignl2, ViewshedAnalysis, joinmultiplelines, lrs, SLD4raster, opeNoise, go2streetview, attributePainter, StreetView, CalcArea, Vgi2ShpConverter, EasyCustomLabeling, AreaAlongVector, IDECanarias, VectorBender, interlis, autoSaver, zoomtopaste, SVG2ColoR, clipper, ConstraintChecker, PointConnector, MapsPrinter, QuickOSM, alkisplugin, DissolveWithStats, svir, NNJoin, SwapVectorDirection, AzimuthDistanceCalculator, temporalprofiletool, pickLayer, ProfileFromPoints, TomBio, networks, refFunctions, MBTiles2img, concavehull, quick_map_services, scpplugin, MultiDistanceBuffer, FeatureGridCreator, OSTranslatorII, instantprint, xyToPoint, tiss, beePen, OSMDownloader, LineDirectionHistogram, LocatePoints, IPyConsole, qgis2web, PostNAS_Search, LoadQSS, ThinGreyscale, MagneticDeclination, dataexplorer, ClipMultipleLayers, SpreadsheetLayers, CustomToolBar, toggleactivelayer_plugin, MongoConnector, cluz, EqHazard, Multi_Ring_Buffer, catalogpl_plugin, bulkvectorexportwithstyle, maps2winbugs, MenuBuilder, QBano, QPackage, SelectWithin, gmsh, DEMto3D, inspireNL, PosiView, qgis-amigocloud-plugin, changeDataSource, mapswipetool_plugin, geosearch_dk, OnlineRoutingMapper, Discovery, BackupLayer, firstaid, LayerMetadataSearch, rivergis, PostTelemac, PlaceMarker, minkowskiDimCalculator, Serval, AzimuthMeasurement, qgisgbifapi, QlrBrowser, ImportEpanetInpFiles, Socrata, tuflow, disconnected-islands, M150XML, DiviPlugin, attributeBasedClustering, QGISSortAndNumber-master, report, devnull, dzetsaka, SDEllipse, qgeric, qdraw, CaigosConnector, FreehandRasterGeoreferencer, latlontools, Kortforsyningen, QEsg, gimpselectionfeature_plugin, gml_application_schema_toolbox, AnotherDXF2Shape, LmOpenData, Projestions, d3datavis, qfieldsync, poiexport, gban, annotationManager, Converter, LinearTheoryOrographicPrecipitation, QMarxanToolbox, CloudMasking, qgis_hats, qgis-stereonet, ClusterPoints, pluginbuilder3, PluginLoadTimes, mysqlimport, cartogram3, TurnGray, InvisibleLayersAndGroups, SplitPolygonShowingAreas, MTOPOpenData, tempus_qgis, shapetools, projectgenerator, batch_gps_importer, Highlighter, SpzBuilder, NITK_RS-GIS_17, vector_tiles_reader, icsm_ntv2_transformer, QuickPrint, go2mapillary, DataPlotly, SuperLabeling, RuimtelijkePlannen, BGTImport, Coordtransform, Spanish_Inspire_Catastral_Downloader, Check_defined_Convert_CRS, qpals, polystrip, CSMapMaker, qepanet, xplanung, SaxonyCadastralParcels, CalidadCAR, CDAUDownloader, location_lab, quick_attribution, scriptrunner3, JapanElevation, GeodesicDensifier, Mascaret, searchlayers, QRealTime, ZoomToBelgium, vrtbuilderplugin, ale, UMEP, SentinelHub, powerpan, ZebToolbox, GpxSegmentImporter, TlugProcessing, SRTM-Downloader, batch_hillshader-master, parcel_plugin, asistente_ladm_col, Physiocap3, CalculateGeometry, CoordGuesser, iso4app, ImportPhotos, geodatafarm, pgChainage, BivariateLegend, AcATaMa, Beeline, AttributeAssignment, RoadEmissionCalculator, karika, HCMGIS, AustrianElevation, squad-plugin-qgis3, natusferaqgis3, road_inspection_viewer, AppendFeaturesToLayer, QGIS3-getWKT, nominatim_locator_filter, geoportail_lu, layerfromclipboard, timeseriesviewerplugin, pdok_locatieserver_locator_filter, geomapfish_locator, QNEAT3, db-style-manager, QWeather, arrayplus, FS3, DotMap, swiss_locator, gis4wrf, layerGroupFilter, qgis2mapea4, QWater, QGIS_FMV, Offline-MapMatching, AnimateOsm, LAStools, StandardDistance, dist_cartogram, Label2Attr, popgis-plugin, cartolinegen, kmltools, LCCS3basicCoder3-v_1_0, SpeciesExplorer, geoscience, imajnet-qgis-plugin, DDG_Street_Images, rastervision_qgis, grukos, debug_vs, BioDispersal, QuickMultiAttributeEdit3, finddataset, polygonclusterreducer, batchvectorlayersaver, myfiber, linz-data-importer, QVisualize, agknow_qgis, geometry_paster, EquirectangularViewer, istacqgis, geohey_toolbox, leastcostpath, layout_loader, QgisModelBaker, processing_r, Hqgis, FastVersion, HeightmapExport, pca4cd, ImageServerConnector, awap, interfacecatchment, QCopycanvas, SocialActivity, ThToolBox, NavTable, oscars-georaster-qgis-plugin, maplibrary, ORStools, PeliasGeocoding, gribdownloader, Climb, enmapboxplugin, XYZHubConnector, rastertimeseriesmanager, FragScape, geobarcelona, group_transparency, travel_time_platform_plugin, rasterdataplotting, QLocklayers, trackable_project_files, processing_fusion, profileexport, Mergin, visualist, GeoPriv, tiles_xyz, sigrdap, excel_sync, create_bathymetry, SSAM, zoomview, profileAAR, BezierEditing, QRectangleCreator, color_attribute, track_profile_2_web, kontrollblatt_sh, geosys-plugin, QGYF, AttributesJoinByLine, ThRasE, moFa4Q_plugin, plus_mops, PPConverter_20, qgisnetworklogger, poiexportColorHash +plugin_repositories\Offizielles%20QGIS-Erweiterungsrepositorium\url=https://plugins.qgis.org/plugins/plugins.xml +news-feed\items\httpsfeedqgisorg\entries\items\64\content="

OpenStreetMap (OSM) is free to use, but not free to run. The QGIS user experience is tremendously improved thanks to OSM data, tiles, geocoding, and other services. OSM depends on donations from people like you! Double-click this entry to learn how to support OSM's continued stability, quality, and independence.

" +news-feed\items\httpsfeedqgisorg\entries\items\64\expiry=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8b\xd1\x3\xb5\xc0\xb8\0) +news-feed\items\httpsfeedqgisorg\entries\items\64\image-url=https://feed.qgis.org/media/feedimages/2023/11/08/osm-funding.jpg +news-feed\items\httpsfeedqgisorg\entries\items\64\link=https://supporting.openstreetmap.org +news-feed\items\httpsfeedqgisorg\entries\items\64\sticky=false +news-feed\items\httpsfeedqgisorg\entries\items\64\title=It\x2019s OSM\x2019s Birthday! Please donate to support its future. +news-feed\items\httpsfeedqgisorg\entries\items\65\content="

The Cyber Resilience Act will, by design, place considerable strain on the Open Source Geospatial Foundation and the service providers who power so much of our ecosystem. The OSGeo community has been active during this process lending their voice of concern, feedback, and moral objection (not everything is a product!) and support. We encourage you to get informed and lend your voice of support to ensure that these laws do not jeopardise or impact projects like QGIS. Double-click this entry to learn more.

" +news-feed\items\httpsfeedqgisorg\entries\items\65\expiry=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x8b\xd1\x3\xba\xe1\x38\0) +news-feed\items\httpsfeedqgisorg\entries\items\65\image-url=https://feed.qgis.org/media/feedimages/2023/11/09/europe.jpg +news-feed\items\httpsfeedqgisorg\entries\items\65\link=https://www.osgeo.org/foundation-news/eu-cyber-resilience-act/ +news-feed\items\httpsfeedqgisorg\entries\items\65\sticky=false +news-feed\items\httpsfeedqgisorg\entries\items\65\title=OSGeo Statement: EU Cyber Resilience Act +fontPointSize=8.3 +map3d\defaultNavigation=TerrainBased +map3d\axisInversion=WhenDragging +map3d\defaultProjection=1 +map3d\defaultMovementSpeed=5 +map3d\defaultFieldOfView=45 +map3d\gpuMemoryLimit=500 +projections\crsAccuracyWarningThreshold=0 + +[browser] +expandedPaths=favorites: +hiddenPaths=@Invalid() +propertiesWidgetEnabled=false +propertiesWidgetHeight=@Variant(\0\0\0\x87\0\0\0\0) + +[browser2] +propertiesWidgetEnabled=false +propertiesWidgetHeight=@Variant(\0\0\0\x87\0\0\0\0) + +[cache] +size=@Variant(\0\0\0\x81\0\0\0\0\x3 \0\0) + +[connections] +xyz\items\Mapzen%20Global%20Terrain\hidden=false +xyz\items\Mapzen%20Global%20Terrain\http-header=@Variant(\0\0\0\b\0\0\0\0) +xyz\items\Mapzen%20Global%20Terrain\tile-pixel-ratio=0 +xyz\items\OpenStreetMap\hidden=false +xyz\items\OpenStreetMap\http-header=@Variant(\0\0\0\b\0\0\0\0) +xyz\items\OpenStreetMap\interpretation= +xyz\items\OpenStreetMap\tile-pixel-ratio=0 + +[core] +Layout\searchPathsForTemplates=@Invalid() +OpenClDefaultDevice= +OpenClEnabled=true +gps\data_bits=Data8 +gps\flow_control=NoFlowControl +gps\parity=NoParity +gps\stop_bits=OneStop +layer-tree\show_feature_count_for_new_layers=false +httpsfeedqgisorg\disabled=true + +[digitizing] +auto-popup-vertex-editor-dock=true +cad-snapping-prioritize-feature=false +convert-to-curve=false +convert-to-curve-angle-tolerance=1e-06 +convert-to-curve-distance-tolerance=1e-06 +default-m-value=0 +default-snap-mode=AllLayers +default-z-value=0 +disable-enter-attribute-values-dialog=false +fill-color=@Variant(\0\0\0\x43\x1\x1e\x1e\xff\xff\0\0\0\0\0\0) +line-color=@Variant(\0\0\0\x43\x1\xc8\xc8\xff\xff\0\0\0\0\0\0) +line-color-alpha-scale=0.75 +line-ghost=false +line-width=1 +marker-only-for-selected=true +marker-size-mm=2 +marker-style=Cross +offset-cap-style=Round +offset-join-style=JoinStyleRound +offset-miter-limit=5 +offset-quad-seg=8 +offset-show-advanced=false +reuse-last-values=false +search-radius-vertex-edit=10 +search-radius-vertex-edit-unit=Pixels +shape-map-tools\categories\items\Circle\default=circle-from-2-points +shape-map-tools\categories\items\Curve\default=circular-string-by-radius +shape-map-tools\categories\items\Ellipse\default=ellipse-center-2-points +shape-map-tools\categories\items\Rectangle\default=rectangle-from-center-and-a-point +shape-map-tools\categories\items\RegularPolygon\default=regular-polygon-from-2-points +snap-color=@Variant(\0\0\0\x43\x1\xff\xff\xff\xff\0\0\xff\xff\0\0) +snap-tooltip=false +technique=StraightSegments +tracing-max-feature-count=10000 +validate-geometries=1 +default-snapping-tolerance=12 + +[gps] +acquisitionInterval=0 +autoAddVertices=false +autoCommit=false +distanceThreshold=0 +gpsdDevice= +gpsdHost=localhost +gpsdPort=2947 +lastPort=localhost:2947: +mapExtentMultiplier=50 +markerSize=12 +panMode=recenterWhenNeeded +portMode=scanPorts +showMarker=true +trackColor=@Variant(\0\0\0\x43\x1\xff\xff\xff\xff\0\0\0\0\0\0) +trackWidth=2 +acquisition-interval=0 +apply-leap-seconds-correction=true +bearing-line-symbol="\n\n\n\n\n\n\n\n\n\n\n" +calculate-bearing-from-travel=false +distance-threshold=0 +gps-connection-type=Automatic +gpsbabelPath=gpsbabel +gpsd-device-name= +gpsd-host-name=localhost +gpsd-port=2947 +gpsd-serial-device=localhost:2947: +leap-seconds=18 +location-marker-symbol="\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" +map-recentering-threshold=50 +map-rotate-interval=0 +rotate-location-marker=true +store-attribute-in-m-values=false +timestamp-offset-from-utc=0 +timestamp-time-spec=LocalTime +timestamp-time-zone=Europe/Berlin +track-line-symbol="\n\n\n\n\n\n\n\n\n\n\n" +babel-devices\items\Garmin%20serial\rtedownload=%babel -r -i garmin -o gpx %in %out +babel-devices\items\Garmin%20serial\rteupload=%babel -r -i gpx -o garmin %in %out +babel-devices\items\Garmin%20serial\trkdownload=%babel -t -i garmin -o gpx %in %out +babel-devices\items\Garmin%20serial\trkupload=%babel -t -i gpx -o garmin %in %out +babel-devices\items\Garmin%20serial\wptdownload=%babel -w -i garmin -o gpx %in %out +babel-devices\items\Garmin%20serial\wptupload=%babel -w -i gpx -o garmin %in %out + +[gui] +LayoutDesigner\defaultSnapGridOffsetX=0 +LayoutDesigner\defaultSnapGridOffsetY=0 +LayoutDesigner\defaultSnapGridResolution=10 +LayoutDesigner\defaultSnapTolerancePixels=5 +LayoutDesigner\gridAlpha=100 +LayoutDesigner\gridBlue=190 +LayoutDesigner\gridGreen=190 +LayoutDesigner\gridRed=190 +LayoutDesigner\gridStyle=Dots +UI\queryLogger\treeState=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x2\xba\0\0\0\x2\x1\x1\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x2\0\0\0\x64\0\0\0\x1\0\0\0\0\0\0\x2V\0\0\0\x1\0\0\0\0\0\0\x3\xe8\0\0\0\0\x64) +UI\symbolsList\lastIconView=0 +Windows\StyleV2Manager\lastIconView=0 +codeEditor\caretLineColor=#efefef +codeEditor\classFontColor=#4271ae +codeEditor\commentBlockFontColor=#8e908c +codeEditor\commentFontColor=#8e908c +codeEditor\commentLineFontColor=#8e908c +codeEditor\cursorColor=#636363 +codeEditor\decoratorFontColor=#3e999f +codeEditor\defaultFontColor=#4d4d4c +codeEditor\doubleQuoteFontColor=#718c00 +codeEditor\edgeColor=#efefef +codeEditor\foldColor=#efefef +codeEditor\foldIconForeground=#ffffff +codeEditor\foldIconHalo=#000000 +codeEditor\identifierFontColor=#4271ae +codeEditor\indentationGuide=#d5d5d5 +codeEditor\keywordFontColor=#8959a8 +codeEditor\marginBackgroundColor=#efefef +codeEditor\marginForegroundColor=#636363 +codeEditor\matchedBraceBackground=#b7f907 +codeEditor\matchedBraceColor=#303030 +codeEditor\methodFontColor=#4271ae +codeEditor\numberFontColor=#c82829 +codeEditor\operatorFontColor=#8959a8 +codeEditor\overrideColors=false +codeEditor\paperBackgroundColor=#ffffff +codeEditor\quotedIdentifierFontColor=#4271ae +codeEditor\quotedOperatorFontColor=#8959a8 +codeEditor\selectionBackgroundColor=#0078d7 +codeEditor\selectionForegroundColor=#ffffff +codeEditor\singleQuoteFontColor=#718c00 +codeEditor\stderrBackgroundColor=#ffffff +codeEditor\stderrFontColor=#e31a1c +codeEditor\tagFontColor=#4271ae +codeEditor\tripleDoubleQuoteFontColor=#eab700 +codeEditor\tripleSingleQuoteFontColor=#eab700 +codeEditor\unknownTagFontColor=#4271ae +codeEditor\colorScheme= +respect-screen-dpi=false +code-editor\python\autopep8-level=1 +code-editor\python\black-normalize-quotes=true +code-editor\python\formatter=autopep8 +code-editor\python\max-line-length=80 +code-editor\python\sort-imports=true + +[layer-tree] +show-feature-count-for-new-layers=false + +[layout] +search-paths-for-templates=@Invalid() + +[locale] +globalLocale=de_DE +overrideFlag=false +showGroupSeparator=false +userLocale=de_DE + +[network] +network-timeout=60000 + +[plugin-manager] +automatically-check-for-updates=true +check-on-start-last-date=@Variant(\0\0\0\xe\0%\x8a') +seen-plugins=db_manager, grassprovider, MetaSearch, otbprovider, processing, moFa4Q_plugin, plugin_reloader, QuickWKT, MemoryLayerSaver, simplesvg, valuetool, GeoCoding, GroupStats, timemanager, menu_from_project, Hotlink, GarminCustomMap, loadthemall, RemoveEmptyLayers, mask, dimensioning, lizmap, MultiEdit, profiletool, midvatten, qNote, mmqgis, wfsclient, multiqml, quicksaveqml, dumploadfield, joinlines, osmpoly_export, pgversion, inasafe, qgsAzimuth, qgiscloud, qgSurf, DirectionalSlope, pstimeseries, VectorFieldCalc, pointsamplingtool, numericalDigitize, contour, LecoS, crayfish, pdokservicesplugin, Cxf_in, flowTrace, qtiles, sextante_animove, geospatialsimulation, plaingeometryeditor, tmsforkorea, kuw_filter, SemiAutomaticClassificationPlugin, splitmultipart, DistroMap, shapefile_encoding_fixer, zoomrc, qProf, BulkVectorExport, DataDrivenInputMask, ContrastHomogenizer, ZoomToPostcode, DigitizingTools, nominatim, LandXml, qchainage, VoGisProfilTool, copy_coords, send2google_earth, BufferByPercentage, pgRoutingLayer, htpgeoprocessor, cadastre, geopunt4Qgis, shp_to_obs, PPConverter_20, Qgis2threejs, Video_UAV_Tracker, realcentroid, b4udignl2, simplereports, ViewshedAnalysis, joinmultiplelines, lrs, spline, SLD4raster, opeNoise, go2streetview, attributePainter, StreetView, Vgi2ShpConverter, EasyCustomLabeling, AreaAlongVector, stationlines, clickfu, postgisQueryBuilder, IDECanarias, StreamFeatureExtractor, VectorBender, interlis, SGDiagramDownloader, autoSaver, zoomtopaste, SVG2ColoR, clipper, ConstraintChecker, PointConnector, MapsPrinter, QuickOSM, alkisplugin, shortcut_manager, ArcheoCAD, DissolveWithStats, svir, NNJoin, SwapVectorDirection, AzimuthDistanceCalculator, temporalprofiletool, pickLayer, MultipleLayerSelection, QgsWcpsClient1, VectorMCDA, ProfileFromPoints, TomBio, networks, processing_workflow, MBTiles2img, ClipToHemisphere, Redistricting, concavehull, quick_map_services, survey_design, scpplugin, MultiDistanceBuffer, FeatureGridCreator, OSTranslatorII, postgis_geoprocessing, instantprint, ntv2_transformations, tiss, DsgTools, catalogotf_plugin, beePen, OSMDownloader, LineDirectionHistogram, LocatePoints, IPyConsole, reconstruct_line, qgis2web, PostNAS_Search, LoadQSS, ThinGreyscale, MagneticDeclination, redLayer, dataexplorer, ClipMultipleLayers, LayerBoard, SpreadsheetLayers, CustomToolBar, toggleactivelayer_plugin, MongoConnector, esstoolkit, qgis_versioning, cluz, Multi_Ring_Buffer, catalogpl_plugin, bulkvectorexportwithstyle, maps2winbugs, MenuBuilder, rasterstats, QBano, QPackage, SelectWithin, gmsh, DEMto3D, inspireNL, PosiView, qgis-amigocloud-plugin, changeDataSource, mapswipetool_plugin, geosearch_dk, OnlineRoutingMapper, Discovery, BackupLayer, firstaid, LayerMetadataSearch, rivergis, QMetaTiles, PostTelemac, osminfo, PlaceMarker, minkowskiDimCalculator, Serval, sdna, CKANBrowser, AzimuthMeasurement, qgisgbifapi, QlrBrowser, ImportEpanetInpFiles, wincan2qgep, Socrata, GeODinQGIS, tuflow, disconnected-islands, qad, attributeBasedClustering, QGISSortAndNumber-master, report, dzetsaka, SDEllipse, qgeric, qdraw, VetEpiGIS-Tool, nextgis_connect, CaigosConnector, FreehandRasterGeoreferencer, latlontools, GroundwaterVulnerability, QEsg, gimpselectionfeature_plugin, gml_application_schema_toolbox, PghydroTools, AnotherDXF2Shape, Projestions, isogeo_search_engine, d3datavis, qgis_resource_sharing, qfieldsync, connect_points, VetEpiGIS-Group, poiexport, gban, annotationManager, table2style, LinzSnap, wfsOutputExtension, LayerStyleLoader, Converter, LinearTheoryOrographicPrecipitation, QMarxanToolbox, pg_history_viewer, CloudMasking, qgis_hats, qgis-stereonet, postgis_sampling_tool, layer2kmz, pluginbuilder3, PotentialSlopeFailure, PluginLoadTimes, mysqlimport, cartogram3, TurnGray, InvisibleLayersAndGroups, SplitPolygonShowingAreas, MTOPOpenData, tempus_qgis, shapetools, MPAPostHocAccounting, FeatureIterator, Submission, batch_gps_importer, BoundingBox, SpzBuilder, NITK_RS-GIS_17, SelectByRelationship, vector_tiles_reader, icsm_ntv2_transformer, BoundaryDelineation, morpheo, QuickPrint, DataPlotly, SuperLabeling, RuimtelijkePlannen, digitizr, Anaximandre, BGTImport, Coordtransform, Spanish_Inspire_Catastral_Downloader, qpals, polystrip, CSMapMaker, isochrones, qepanet, xplanung, SaxonyCadastralParcels, CalidadCAR, CDAUDownloader, AGT, location_lab, quick_attribution, LDMP, scriptrunner3, JapanElevation, Paprika, GeodesicDensifier, Mascaret, searchlayers, PisteCreator, QRealTime, ZoomToBelgium, vrtbuilderplugin, ale, UMEP, SentinelHub, powerpan, ZebToolbox, GpxSegmentImporter, TlugProcessing, SRTM-Downloader, batch_hillshader-master, parcel_plugin, SplitPolygon-master, asistente_ladm_col, Physiocap3, CalculateGeometry, CoordGuesser, EasyTemplatePrint, iso4app, ImportPhotos, geodatafarm, forestroaddesigner, pgChainage, BreederMap, BivariateLegend, AcATaMa, Beeline, AttributeAssignment, RoadEmissionCalculator, karika, HCMGIS, AustrianElevation, squad-plugin-qgis3, natusferaqgis3, road_inspection_viewer, AppendFeaturesToLayer, QGIS3-getWKT, nominatim_locator_filter, geoportail_lu, layerfromclipboard, timeseriesviewerplugin, pdok_locatieserver_locator_filter, geomapfish_locator, QNEAT3, db-style-manager, QWeather, arrayplus, FS3, DotMap, swiss_locator, gis4wrf, layerGroupFilter, qgis2mapea4, QWater, QGIS_FMV, Offline-MapMatching, map-coords-plugin, MzSTools, AnimateOsm, LAStools, StandardDistance, dist_cartogram, CanadianWebServices, Label2Attr, popgis-plugin, cartolinegen, kmltools, qproto, LandSurveyCodesImport, LCCS3basicCoder3-v_1_0, SpeciesExplorer, geoscience, CityJSON-loader, DICT, imajnet-qgis-plugin, DDG_Street_Images, rastervision_qgis, debug_vs, BioDispersal, QuickMultiAttributeEdit3, finddataset, StreetAnalysis, polygonclusterreducer, Go2NextFeature3, batchvectorlayersaver, myfiber, linz-data-importer, QVisualize, agknow_qgis, geometry_paster, EquirectangularViewer, istacqgis, geohey_toolbox, leastcostpath, layout_loader, QgisModelBaker, processing_r, Hqgis, HeightmapExport, ibamaprocessing, pca4cd, pat, ImageServerConnector, awap, interfacecatchment, aderyn, QCopycanvas, SocialActivity, QWeb, ThToolBox, NavTable, ibama_expressions, oscars-georaster-qgis-plugin, maplibrary, ORStools, PeliasGeocoding, gribdownloader, Add_a_point_road_sign, Climb, processing_saga_nextgen, OpenICGC, togglegroupvisibility, enmapboxplugin, XYZHubConnector, rastertimeseriesmanager, FragScape, geobarcelona, group_transparency, travel_time_platform_plugin, QLocklayers, coord_list, trackable_project_files, processing_fusion, profileexport, Mergin, visualist, GeoPriv, excel_sync, create_bathymetry, SSAM, CLETools, zoomview, profileAAR, BezierEditing, QRectangleCreator, color_attribute, track_profile_2_web, kontrollblatt_sh, geosys-plugin, coordinator, QGYF, uldk_gugik, AttributesJoinByLine, SampleByArea, ParCatGML, modis_nitk, vx_integration, ThRasE, qgisnetworklogger, cctv_mapper, mos_adeupa_ce, AusMap, SampleByFeatures, themeselector, wnt, trail_elevation_stats, QGISRed, ForestRoadsNetworksUPLOAD, MagicWand-master, tc_tlag, floodrisk2, toggle_labels_widget, FormatConsistency, easy_processing_tool, WaterNetAnalyzer-master, landxml2qgis, getthemfiltered, radolan2map, mapbiomascollection, geometric_attributes, snail, openeo-qgis-plugin-master, network_gt, rastertool, odktrace2wkt, AddressToolsDK, cdu_creator-master, french_locator_filter, solocator, qgis-ruian-plugin, stripchart, nmt_gugik, geocatbridge, qgisSpectre, VectorFieldLayerManager, ObliczWysokosc, buienradar_plugin, shlocator, Generalizer3, gpi_import, GeoAtlasQGIS, Radiotrack, atlasprint, ee_plugin, planet_explorer, deactivate_active_labels, BatchHeatmaps-master, ezprinter, GeofabrykaToolbox, raster_tracer, export_to_sql_server, BitFlagRenderer, qgepplugin, ToRadians, TerrainShading, qgis3redistricter-master, geokodowanie_adresow, m150xml, AutomaticBackup-master, delete_null_fields, Nuclear-Energy-Plant-Radiations-, LatlonDecimal, oneatlas-qgis-plugin-1_0_1, localmaxfilter, tmd, GlobeBuilder, BOS, cruisetools, gissupport_plugin, zoom_level, qwatermodel, relation_batchinsert, gis_cloud_publisher, mappia_publisher, mgrs, KP_find, FilterLayersAtOnce-master, active_fire, lockzoom, sentinel2_download, covid19_tracker, agis, QGeoloGIS, archiwalna_ortofotomapa, ESDL_loader, clusterpoints, mon_parcellaire, tomtom_locator_filter, closest_points, lnns, los_tools, huntregister, usgs_stream_mapper, french_address, frms_downloader, EuroDataCube, rectanglify, qgis_server_render_geojson, GSI-VTDownloader-master, SgmVertex2NodeByAtt, qveg, layertreeicons, qgis2fds, BDOT10k_GML_SHP_Loader, ImaerPlugin, qgis_gee_data_catalog, qgis2wegue, processing_umep, curve_number_generator, qgis-maptiler-plugin, geograndest, layertilesmapcanvas, bkggeocoder, camino-flux-QGIS-master, israeli_opendata_loader, autocurve, flight_planner, seismic_importer, felt_tegn, sentinel2_removed_cloud_rec, land_productivity_analysis_tool, CriarPontosRios, mtf_estimator, territorial_control, SMC, ana_data_acquisition, lines_ranking, slyr_community, projektcheck, pobieracz_danych_gugik, json_to_waterbodies_for_qgis, localcoordinates, gistools, wetland_vulnerability_analysis_tool, coordinate_capture, wiscsims_tool, multilayerselect, idev_visor, navarra_cadastre-master, FlightSimulatorTools, corrector_vector, EnviroCat, OpenTripPlannerPlugin, poi_visibility_network, galiciasustentable, JSONEater-master, ClusterMap, nafi, qlyrx, eKMap-Publisher-For-QGIS, synthwave, geobretagne, pathfinder, UrbanSARCA-master, moving_feature, wtyczka_qgis_app, volume_calculation_tool, force4qgis, promaides_gis_tools, SpatialDataPackageExport, cwsi, bgtinlooptool, Qaava, cartography_tools, oneclickrasterstacking, monokai, plot_boundary, terminus_processing, qgeo, qgis-plugin-findreplace-main, cbers4a, google_maps_geocoder, SgmExpressionFunctions, FMI2QGIS, inde, QGIS3_Delft3D_FM, TocTable-main, CalcOnField-main, HTML_Generator-main, msdc_client, thematics, configurable_search, arearatio, Cadastral_Divisions-main, geoCore, actions_for_relations, placekey, multiple_layers_tools, dineof, FlyFotosDK, GTFS-GO-master, fitgeometrybyarea, SaraphiGetConnect, valhalla, qrbarcodeitem, PreCourlis, line_profile, qquake, medsens, napkingis-prepare-plugin, qgistim, GeometryShapes, graphab4qgis, RadAgro-master, rvt-qgis, Layman, topojson_writer, anyways_impact_toolbox, CZMLBillboardMaker, point_selection, Smart_Map, pml_geopackager, PotentialSlopeFailure-processing, MultiMaps, addresssearch, BDOO_GML_Loader, html_table_exporter, QGISDigitransitGeocoding-master, NLSgpkgloader-master, GTFS_Loader, inclinometry_calc, path_sorting, LightPollutionToolbox, czech_slovak_freegeodata, geomelwatershed-master, monokaiprospectrum, alloysearchhere, weissflaechenkartierung, itemmap_cropper, easy_raster_splitter, tro_api, perimetre_asa, partial_histogram, area_weighted_average, geocat_export, MISLAND, QNeighborhood, QuickStepGeobia, pibc, polsar_tools, road_slope_calculator, lftools, geetimeseriesexplorer, shoreline, ReverseFlow, mapbiomas-api, RenameField, canflood, Unfolded, hidroweb_downloader, ordered_relation_editor, exportDBmapper, firehunter, qgis-igc-importer, geo_sim_processing, Dataforsyningen, terrabrasilis_datasource, spiutilityraster, spiutilityforcsv, datetimetools, vertex_compare, vector_correction, selectThemes, conversor_nomes_comuns, qgissprp, orkamv-data-api-plugin-main, sentera_6x_processing, RasterAttributeTable, vallaris, TAF-to-CSV-main, gio_import, flexigis, coordinates_converter, pg_metadata, create_custom_projection, mercicor, simple_tools, swissgeodownloader, andalusianpopulation, document_management_system, open_lidar_tools, doner, Catchment, qgis-nowcast-tool-plugin-master, QuickDEM4JP, ICRA, Assisted-MapMatching, ElevationTile4JP, pg_raster_import, terra_antiqua, veloroutes_voies_vertes, iso_19157, create_layer_from_selected_features, licareascraper, mapflow, precisioncursor4qgis-main, generate_swmm_inp, timezone_expressions, oiv, dados_censo, qgis2rasterlite, in_ads, thematic_accuracy, polygonclickmap, avaframeConnector, spatialite_converter, SolrSearch, orientation, GeoKKP-GIS, movecost, GIAP-PolaMap-lite, rdi, ellipsis-connect, grdata, BivariateRenderer, pcraster_tools, vertical_photo_placer, xtflog_checker, ibge_cartography_index_map, qsoccer, qgis-fit-plugin, totalopenstationToQgis, QompliGIS, Coregistration, deg_2_dms, dms_2_deg, fractaliadj, heliware_plugin, qLidar, Opendatasoft, imodqgis, pylusatq, speckle-qgis, jaltol-main, servizi_ecosistemici, AttributesOfBritishAndIrishPlants, AtlasExportFunction, wind_forecast_routing, quick_layer, easy_print_menu, numerator, ProjectPackager, HouseNumbering3, AutoLayoutTool, lidar_campania, QHadoopTools, openads, buildseg, kart, optileloader, azimuth_distance_measurement, p190_import, MonetDB-QGIS, mobilityareas, magnetic_bearing_measurement, amil, calcarea2, merge_selected_features, qgis_report_wizard, qgs-gazetteer-bb, qgis_geonode, ICEtool, qgis_stac, geoeasin, datagrandest, qmapshaper, flurstuecksfinder-nrw, OpenTopography-DEM-Downloader, raster_divider, Cluster-Analysis-plugin-main, layout_panel-main, Cadastral_Classifier, inundation_calculator, prg_dig, gprlp_metadata_search, noise_prediction, dissolve_adjacent_polygons, survex_import, convert_heights, encoded-polyline, sigpac_downloader, tree-belt-designer, Modzy-QGIS-Plugin-main, geographical-detector, spatialanalysistoolbox, testadalotes, dissolve_related, SGS, Palapa, wody_polskie_wms, articulacaosistematica, linking_relation_editor, peel_orange, buffer_without_overlaps, tile_network_order, illini_drainage_tools, osm_sidewalkreator, spanners_plugin, what3words, clear_null_geometry, CivilEng, GeoINCRA, smooth_geometry, DaumAPI, wbt_for_qgis, als_downloader, Importer2OSMbasemap, downloadgeostatportugal, Cronometro, mapmaker, annotation_labels, smarty, google-street-view-layer-master, h3_toolkit, Group_and_Sort_Layers, Geographical_Fetch, PLUGIN, medir_distancia_entre, kimu, thyrsis, lizmap_server, qgis_easy_query, easy_labeling, easy_right_angle_draw, map_tile_loader, custom_news_feed, SEBCS-master, q_scs, return_pyqgis_algorithm, StackComposed, QNSPECT, ArrNorm, naficp, fooodk, roof_draw, Topographical_profiles, st_lucas_download_manager, vdip, densityanalysis, ProcessX, qgis-jaxa-earth-plugin-master, raster_cutter, canvas_coordinates, dissect_dissolve_overlaps, MultiJoin, qgis-here-api-plugin, geodata2envimet, qtribu, numerar_lote, QMapa, diachronix, QgisTDC, topo_tijdreis, qgis-subset-expression-plugin, CheckDefConv, GEO-search-plugin-main, xplan-reader, maxent_model, STL_Generator, qgis-project-as-utm, odkconnector2, qgis_nearest_greater, secquery, pec_avalia, co2_sequestration, Groundwater-Buffer-Raster, geotuileur, sense_detection, becagis, wfs_qgis-previsioni-plugin-out, drone_path, Sentinel-5p_data_explorer, qgis_richdem, zone_label, ndff_connector_plugin, nnmlf, replace_geometry, qgis-gmsh, ibgedatadownloader, point_on_arc_intersection, deepness, selection-sets-reloaded, flintpro_datacheck, identifyplus, q5pfes, GBFS-NOW, segment_reshape_plugin, gps_replay, koordinates, Tieosoitetyokalu, layertree2json, qgis_points2one, road2qgis, DMI_Open_Data, bdot10k, soil_moisture, OsmAnd_bridge, spatial_filter, uddmanager, geocsv-main, AdressesFr, indice_ndwi, mopst, QGIS-legendView-main, quick-geojson, map-units-per-pixel, shootpointswebplotter-main, QgisGLViewer, polygon_from_map_extent, sensehawk_qc, kartverket_adresse, project_report, PlanCreator-3, Kauko, get_nib-main, equi_processing, fullmce_Sarah-main, magic_map_loader, qkan, minded_fba, e_tracability, cartodruid_sync, gatherconnect, japangeology3, ThreePointMethod, cigeoe_attribute_copy, Save-DXF, indiana_lidar, plot_grid, reloader, QChatGPT, Check4SEC-master, sewerage_designer, QRestart, cigeoe_feature_nodes_z_tag, craig, infas_lt_geocoder, Walidator_plikow_gml, limburg_flood_impact_plugin, dp_checker, GamepadNavigation, extractor, lrseditor, science_flight_planner, custom_titlebar, mojxml_plugin, remote_db, CPR, delete-all, cigeoe_converge_lines, austria_weather_api, pyqgis_resource_browser, estonian-address-search, CCD_Plugin, people_flow_visualization, datasud, qgis_sea_level_tool, tile_index_generator, address_search, indiana_ortho, Bestagon-master, dmpcatalogue, opencage_geocoder, tianditu-tools, opencratertool, LidarManager, wms_wfs_dera, green_view_index, AemetOpenDataDownloader, cigeoe_holes_3d, earthsunmoon, thermal, fuzzy_join, qaequilibrae, qgis_adjust_style, gistda_sphere_basemap, pixel_calculator, StyleLoadSave, gpkg_creator, gistda_sphere_opendata, transparency_setter, qgis_templates_symbology, hrisk-noisemodelling-master, DiscordRPC-Plugin-for-QGIS, citydb-tools, xplan-umring, location_finder, Delete_Duplicates, cigeoe_identify_dangles, AzureMapsCreator, Terraform, Qpositional, segmenter, panorama_viewer, feature_space, qdrawEVT, Siwei_Earth, jilin1tiles, felt, infrao, FilePath, StreetSmart, fast_kernel_density_analysis, SaveAllScript, UA_XML_importer, cigeoe_circumvent_polygon, LinearReferencing, qgis_hub_plugin, csv_batch_import, SPAN, twodistancesintersectionplugin, DAI, usm_calculator-main, opacity_set_01, qgis-plugin-upload-satupeta-main, locationiq-qgis, getbaseline, plugin_exporter, soar, SelectionFilter, cigeoe_merge_lines, cigeoe_merge_multiple_lines, japanese_grids + +[proxy] +authcfg= +proxyEnabled=false +proxyExcludedUrls=@Invalid() +proxyHost= +proxyPassword= +proxyPort= +proxyType=DefaultProxy +proxyUser= +noProxyUrls=@Invalid() + +[pythonConsole] +splitterConsole=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0x\0\0\0\x1e\0\0\0\0\x3\x1\0\0\0\x2\0) +splitterEditor=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\x1\0\0\0\0\0\x1\0\0\0\x6\x1\0\0\0\x1\0) +splitterObj=@ByteArray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\0\0\0\0\0\0\0U\x1\0\0\0\x3\x1\0\0\0\x1\0) +preloadAPI=true +autoSaveScript=false +accessTokenGithub= +userAPI=@Invalid() +autoCompThreshold=2 +autoCompleteEnabled=true +usePreparedAPIFile=false +preparedAPIFile= +autoCompleteSource=fromAPI +enableObjectInsp=false +autoCloseBracket=false +autoInsertionImport=true +autoSurround=true +autoInsertImport=false +formatOnSave=false + +[qgis] +WMSSearchUrl="http://geopole.org/wms/search?search=%1&type=rss" +addOracleDC=false +addPostgisDC=false +askToDeleteLayers=true +askToSaveProjectChanges=false +attributeTableBehavior=ShowAll +attributeTableRowCache=10000 +attributeTableView=-1 +compileExpressions=true +configuration\default-output-raster-layer-ext=38 +configuration\default-output-vector-layer-ext=30 +configuration\prefer-filename-as-layer-name=true +configuration\temp-path= +connections-xyz\Mapzen%20Global%20Terrain\authcfg= +connections-xyz\Mapzen%20Global%20Terrain\hidden=false +connections-xyz\Mapzen%20Global%20Terrain\interpretation=terrariumterrain +connections-xyz\Mapzen%20Global%20Terrain\password= +connections-xyz\Mapzen%20Global%20Terrain\tilePixelRatio=0 +connections-xyz\Mapzen%20Global%20Terrain\url=https://s3.amazonaws.com/elevation-tiles-prod/terrarium/{z}/{x}/{y}.png +connections-xyz\Mapzen%20Global%20Terrain\username= +connections-xyz\Mapzen%20Global%20Terrain\zmax=15 +connections-xyz\Mapzen%20Global%20Terrain\zmin=0 +connections-xyz\OpenStreetMap\authcfg= +connections-xyz\OpenStreetMap\hidden=false +connections-xyz\OpenStreetMap\interpretation= +connections-xyz\OpenStreetMap\password= +connections-xyz\OpenStreetMap\tilePixelRatio=0 +connections-xyz\OpenStreetMap\url=https://tile.openstreetmap.org/{z}/{x}/{y}.png +connections-xyz\OpenStreetMap\username= +connections-xyz\OpenStreetMap\zmax=19 +connections-xyz\OpenStreetMap\zmin=0 +copyFeatureFormat=AttributesWithWKT +customEnvVars=@Invalid() +customEnvVarsUse=false +dataSourceManagerNonModal=false +defaultCapabilitiesExpiry=24 +defaultLegendGraphicResolution=0 +defaultTileExpiry=24 +defaultTileMaxRetry=3 +default_canvas_color_blue=255 +default_canvas_color_green=255 +default_canvas_color_red=255 +default_measure_color_blue=67 +default_measure_color_green=155 +default_measure_color_red=222 +default_selection_color_alpha=255 +default_selection_color_blue=0 +default_selection_color_green=255 +default_selection_color_red=255 +digitizing\auto_popup_vertex_editor_dock=true +digitizing\cad_snapping_prioritize_feature=false +digitizing\convert_to_curve=false +digitizing\convert_to_curve_angle_tolerance=1e-06 +digitizing\convert_to_curve_distance_tolerance=1e-06 +digitizing\default_m_value=0 +digitizing\default_snap_mode=AllLayers +digitizing\default_snap_type=VertexFlag +digitizing\default_snapping_tolerance=12 +digitizing\default_z_value=0 +digitizing\disable_enter_attribute_values_dialog=false +digitizing\fill_color_alpha=30 +digitizing\fill_color_blue=0 +digitizing\fill_color_green=0 +digitizing\fill_color_red=255 +digitizing\line_color_alpha=200 +digitizing\line_color_alpha_scale=0.75 +digitizing\line_color_blue=0 +digitizing\line_color_green=0 +digitizing\line_color_red=255 +digitizing\line_ghost=false +digitizing\line_width=1 +digitizing\marker_only_for_selected=true +digitizing\marker_size_mm=2 +digitizing\marker_style=Cross +digitizing\offset_cap_style=Round +digitizing\offset_join_style=Round +digitizing\offset_miter_limit=5 +digitizing\offset_quad_seg=8 +digitizing\offset_show_advanced=false +digitizing\reuseLastValues=false +digitizing\search_radius_vertex_edit=10 +digitizing\search_radius_vertex_edit_unit=Pixels +digitizing\snap_color=@Variant(\0\0\0\x43\x1\xff\xff\xff\xff\0\0\xff\xff\0\0) +digitizing\snap_tooltip=false +digitizing\stream_tolerance=2 +digitizing\technique=StraightSegments +digitizing\tracing_max_feature_count=10000 +digitizing\validate_geometries=1 +dockAttributeTable=false +enableMacros=Always +enableMapTips=true +enable_anti_aliasing=true +enable_render_caching=true +hideSplash=false +iconSize=24 +ignoreShapeEncoding=true +legendDoubleClickAction=0 +localized_data_paths=@Invalid() +magnifier_factor_default=1 +mainSnappingWidgetMode=dialog +main_canvas_preview_jobs=true +mapTipsDelay=850 +map_update_interval=250 +max_threads=-1 +measure\angleunits=degrees +measure\areaunits=m2 +measure\decimalplaces=3 +measure\displayunits=meters +measure\keepbaseunit=true +messageTimeout=5 +native_color_dialogs=false +networkAndProxy\networkTimeout=60000 +networkAndProxy\userAgent=Mozilla/5.0 +newProjectDefault=false +new_layers_visible=true +parallel_rendering=true +projOpenAtLaunch=2 +projOpenAtLaunchPath=%PROFILE_FOLDER%/mofa4q.qgz +projOpenedOKAtLaunch=true +projectTemplateDir=%PROFILE_FOLDER%/project_templates +promptForRasterSublayers=0 +promptForSublayers=AlwaysAsk +scanItemsInBrowser2=extension +scanZipInBrowser2=basic +segmentationTolerance=0.017453292519943295 +segmentationToleranceType=MaximumAngle +showLegendClassifiers=false +simplifyAlgorithm=Distance +simplifyDrawingHints=GeometrySimplification +simplifyDrawingTol=1 +simplifyLocal=true +simplifyMaxScale=1 +style=Fusion +symbolsListGroupsIndex=0 +toolbarIconSize=24 +warnOldProjectVersion=false +zoom_factor=2 +legendsymbolMinimumSize=0.1 +legendsymbolMaximumSize=20 +defaultProjectFileFormat=Qgz +checkVersion=false +digitizing\shape-map-tools\Circle\default=circle-from-2-points +digitizing\shape-map-tools\Curve\default=circular-string-by-radius +digitizing\shape-map-tools\Ellipse\default=ellipse-center-2-points +digitizing\shape-map-tools\Rectangle\default=rectangle-from-center-and-a-point +digitizing\shape-map-tools\RegularPolygon\default=regular-polygon-from-2-points +layerTreeInsertionMethod=AboveInsertionPoint +reverse_wheel_zoom=false + +[rendering] +pal\label-candidates-limit-lines=0 +pal\label-candidates-limit-points=0 +pal\label-candidates-limit-polygons=0 + +[svg] +searchPathsForSVG=%PROFILE_FOLDER%/svg/, C:/PROGRA~1/QGIS33~1.1/apps/qgis/./svg/ + +[qgsbrowserwidgetbase] +propertiesWidgetEnabled=false +propertiesWidgetHeight=@Variant(\0\0\0\x87\0\0\0\0) + +[defaults] +bearing_format\decimal_separator=@Invalid() +bearing_format\decimals=6 +bearing_format\direction_format=0 +bearing_format\rounding_type=0 +bearing_format\show_plus=false +bearing_format\show_thousand_separator=true +bearing_format\show_trailing_zeros=false +bearing_format\thousand_separator=@Invalid() +coordinate_format\angle_format=DecimalDegrees +coordinate_format\decimal_separator=@Invalid() +coordinate_format\decimals=6 +coordinate_format\rounding_type=0 +coordinate_format\show_leading_degree_zeros=false +coordinate_format\show_leading_zeros=false +coordinate_format\show_plus=false +coordinate_format\show_suffix=false +coordinate_format\show_thousand_separator=true +coordinate_format\show_trailing_zeros=false +coordinate_format\thousand_separator=@Invalid() + +[elevation-profile] +background-color=@Variant(\0\0\0\x43\0\xff\xff\0\0\0\0\0\0\0\0) + +[fonts] +downloadMissingFonts=true +fontFamilyReplacements=@Invalid() + +[measure] +clipboard-header=false +clipboard-separator=\t +clipboard-use-decimal-point=false diff --git a/init/QGISCUSTOMIZATION3.ini b/init/QGISCUSTOMIZATION3.ini new file mode 100644 index 0000000..ad16003 --- /dev/null +++ b/init/QGISCUSTOMIZATION3.ini @@ -0,0 +1,2271 @@ +[Customization] +Browser=true +Browser\AFS=true +Browser\GPKG=true +Browser\GRASS=true +Browser\GeoNode=true +Browser\MSSQL=true +Browser\ORACLE=true +Browser\PostGIS=true +Browser\QLR=true +Browser\QPT=true +Browser\SAP%20HANA=true +Browser\Vector%20Tiles=true +Browser\WCS=true +Browser\WFS=true +Browser\WMS=true +Browser\XYZ%20Tiles=true +Browser\bookmarks_item=true +Browser\files=true +Browser\html=true +Browser\project_item=true +Browser\py=true +Browser\spatialite=true +Browser\special%3ADrives=true +Browser\special%3AFavorites=true +Browser\special%3AHome=true +Browser\special%3AProjectHome=true +Browser\special%3AVolumes=true +Browser\style_xml=true +Docks=true +Docks\AdvancedDigitizingTools=false +Docks\AllButtons=true +Docks\BookmarksDockWidget=false +Docks\Browser=false +Docks\Browser2=false +Docks\CustomLayers=true +Docks\DevTools=true +Docks\DockWidget=true +Docks\GPSInformation=false +Docks\LayerOrder=false +Docks\LayerStyling=false +Docks\Layers=false +Docks\Layers2=false +Docks\MessageLog=false +Docks\Overview=false +Docks\ProcessingToolbox=true +Docks\QgsGeometryValidationDockBase=false +Docks\ResultsViewer=true +Docks\StatisticalSummaryDockWidget=false +Docks\Temporal%20Controller=true +Docks\VertexEditor=true +Docks\undo\redo%20dock=false +Menus=false +Menus\mDatabaseMenu=false +Menus\mDatabaseMenu\dbManager=true +Menus\mEditMenu=false +Menus\mEditMenu\mActionAddFeature=true +Menus\mEditMenu\mActionAddPart=true +Menus\mEditMenu\mActionAddRing=true +Menus\mEditMenu\mActionCircularStringCurvePoint=true +Menus\mEditMenu\mActionCircularStringRadius=true +Menus\mEditMenu\mActionCopyFeatures=true +Menus\mEditMenu\mActionCutFeatures=true +Menus\mEditMenu\mActionDeletePart=true +Menus\mEditMenu\mActionDeleteRing=true +Menus\mEditMenu\mActionDeleteSelected=true +Menus\mEditMenu\mActionFillRing=true +Menus\mEditMenu\mActionMergeFeatureAttributes=true +Menus\mEditMenu\mActionMergeFeatures=true +Menus\mEditMenu\mActionMoveFeature=true +Menus\mEditMenu\mActionMoveFeatureCopy=true +Menus\mEditMenu\mActionMultiEditAttributes=true +Menus\mEditMenu\mActionOffsetCurve=true +Menus\mEditMenu\mActionOffsetPointSymbol=true +Menus\mEditMenu\mActionPasteFeatures=true +Menus\mEditMenu\mActionRedo=true +Menus\mEditMenu\mActionReshapeFeatures=true +Menus\mEditMenu\mActionReverseLine=true +Menus\mEditMenu\mActionRotateFeature=true +Menus\mEditMenu\mActionRotatePointSymbols=true +Menus\mEditMenu\mActionSimplifyFeature=true +Menus\mEditMenu\mActionSplitFeatures=true +Menus\mEditMenu\mActionSplitParts=true +Menus\mEditMenu\mActionTrimExtendFeature=true +Menus\mEditMenu\mActionUndo=true +Menus\mEditMenu\mActionVertexTool=true +Menus\mEditMenu\mMenuAnnotation=true +Menus\mEditMenu\mMenuAnnotation\mActionFormAnnotation=true +Menus\mEditMenu\mMenuAnnotation\mActionHtmlAnnotation=true +Menus\mEditMenu\mMenuAnnotation\mActionSvgAnnotation=true +Menus\mEditMenu\mMenuAnnotation\mActionTextAnnotation=true +Menus\mEditMenu\mMenuCircle=true +Menus\mEditMenu\mMenuCircle\mActionCircle2Points=true +Menus\mEditMenu\mMenuCircle\mActionCircle2TangentsPoint=true +Menus\mEditMenu\mMenuCircle\mActionCircle3Points=true +Menus\mEditMenu\mMenuCircle\mActionCircle3Tangents=true +Menus\mEditMenu\mMenuCircle\mActionCircleCenterPoint=true +Menus\mEditMenu\mMenuEditAttributes=true +Menus\mEditMenu\mMenuEditAttributes\mActionMergeFeatureAttributes=true +Menus\mEditMenu\mMenuEditAttributes\mActionMultiEditAttributes=true +Menus\mEditMenu\mMenuEditGeometry=true +Menus\mEditMenu\mMenuEditGeometry\mActionAddPart=true +Menus\mEditMenu\mMenuEditGeometry\mActionAddRing=true +Menus\mEditMenu\mMenuEditGeometry\mActionDeletePart=true +Menus\mEditMenu\mMenuEditGeometry\mActionDeleteRing=true +Menus\mEditMenu\mMenuEditGeometry\mActionFillRing=true +Menus\mEditMenu\mMenuEditGeometry\mActionMergeFeatures=true +Menus\mEditMenu\mMenuEditGeometry\mActionMoveFeature=true +Menus\mEditMenu\mMenuEditGeometry\mActionMoveFeatureCopy=true +Menus\mEditMenu\mMenuEditGeometry\mActionOffsetCurve=true +Menus\mEditMenu\mMenuEditGeometry\mActionReshapeFeatures=true +Menus\mEditMenu\mMenuEditGeometry\mActionReverseLine=true +Menus\mEditMenu\mMenuEditGeometry\mActionRotateFeature=true +Menus\mEditMenu\mMenuEditGeometry\mActionScaleFeature=true +Menus\mEditMenu\mMenuEditGeometry\mActionSimplifyFeature=true +Menus\mEditMenu\mMenuEditGeometry\mActionSplitFeatures=true +Menus\mEditMenu\mMenuEditGeometry\mActionSplitParts=true +Menus\mEditMenu\mMenuEditGeometry\mActionTrimExtendFeature=true +Menus\mEditMenu\mMenuEditGeometry\mActionVertexTool=true +Menus\mEditMenu\mMenuEllipse=true +Menus\mEditMenu\mMenuEllipse\mActionEllipseCenter2Points=true +Menus\mEditMenu\mMenuEllipse\mActionEllipseCenterPoint=true +Menus\mEditMenu\mMenuEllipse\mActionEllipseExtent=true +Menus\mEditMenu\mMenuEllipse\mActionEllipseFoci=true +Menus\mEditMenu\mMenuPasteAs=true +Menus\mEditMenu\mMenuPasteAs\mActionPasteAsNewMemoryVector=true +Menus\mEditMenu\mMenuPasteAs\mActionPasteAsNewVector=true +Menus\mEditMenu\mMenuRectangle=true +Menus\mEditMenu\mMenuRectangle\mActionRectangle3PointsDistance=true +Menus\mEditMenu\mMenuRectangle\mActionRectangle3PointsProjected=true +Menus\mEditMenu\mMenuRectangle\mActionRectangleCenterPoint=true +Menus\mEditMenu\mMenuRectangle\mActionRectangleExtent=true +Menus\mEditMenu\mMenuRegularPolygon=true +Menus\mEditMenu\mMenuRegularPolygon\mActionRegularPolygon2Points=true +Menus\mEditMenu\mMenuRegularPolygon\mActionRegularPolygonCenterCorner=true +Menus\mEditMenu\mMenuRegularPolygon\mActionRegularPolygonCenterPoint=true +Menus\mEditMenu\mMenuSelect=true +Menus\mEditMenu\mMenuSelect\mActionDeselectActiveLayer=true +Menus\mEditMenu\mMenuSelect\mActionDeselectAll=true +Menus\mEditMenu\mMenuSelect\mActionInvertSelection=true +Menus\mEditMenu\mMenuSelect\mActionReselect=true +Menus\mEditMenu\mMenuSelect\mActionSelectAll=true +Menus\mEditMenu\mMenuSelect\mActionSelectByExpression=true +Menus\mEditMenu\mMenuSelect\mActionSelectByForm=true +Menus\mEditMenu\mMenuSelect\mActionSelectFeatures=true +Menus\mEditMenu\mMenuSelect\mActionSelectFreehand=true +Menus\mEditMenu\mMenuSelect\mActionSelectPolygon=true +Menus\mEditMenu\mMenuSelect\mActionSelectRadius=true +Menus\mEditMenu\menuSelect=true +Menus\mEditMenu\menuSelect\mActionDeselectAll=true +Menus\mEditMenu\menuSelect\mActionInvertSelection=true +Menus\mEditMenu\menuSelect\mActionSelectAll=true +Menus\mEditMenu\menuSelect\mActionSelectByExpression=true +Menus\mEditMenu\menuSelect\mActionSelectByForm=true +Menus\mEditMenu\menuSelect\mActionSelectFeatures=true +Menus\mEditMenu\menuSelect\mActionSelectFreehand=true +Menus\mEditMenu\menuSelect\mActionSelectPolygon=true +Menus\mEditMenu\menuSelect\mActionSelectRadius=true +Menus\mHelpMenu=false +Menus\mHelpMenu\mActionAbout=true +Menus\mHelpMenu\mActionCheckQgisVersion=true +Menus\mHelpMenu\mActionDonate=true +Menus\mHelpMenu\mActionGetInvolved=true +Menus\mHelpMenu\mActionHelpAPI=true +Menus\mHelpMenu\mActionHelpContents=true +Menus\mHelpMenu\mActionHelpPyQgisAPI=true +Menus\mHelpMenu\mActionNeedSupport=true +Menus\mHelpMenu\mActionQgisHomePage=true +Menus\mHelpMenu\mActionReportaBug=true +Menus\mHelpMenu\mActionSponsors=true +Menus\mHelpMenu\mMenuPluginHelp=true +Menus\mLayerMenu=false +Menus\mLayerMenu\AllEditsMenu=true +Menus\mLayerMenu\AllEditsMenu\mActionCancelAllEdits=true +Menus\mLayerMenu\AllEditsMenu\mActionCancelEdits=true +Menus\mLayerMenu\AllEditsMenu\mActionRollbackAllEdits=true +Menus\mLayerMenu\AllEditsMenu\mActionRollbackEdits=true +Menus\mLayerMenu\AllEditsMenu\mActionSaveAllEdits=true +Menus\mLayerMenu\AllEditsMenu\mActionSaveEdits=true +Menus\mLayerMenu\mActionAddAllToOverview=true +Menus\mLayerMenu\mActionAddLayerDefinition=true +Menus\mLayerMenu\mActionAddToOverview=true +Menus\mLayerMenu\mActionCopyLayer=true +Menus\mLayerMenu\mActionCopyStyle=true +Menus\mLayerMenu\mActionDataSourceManager=true +Menus\mLayerMenu\mActionDuplicateLayer=true +Menus\mLayerMenu\mActionEmbedLayers=true +Menus\mLayerMenu\mActionLabeling=true +Menus\mLayerMenu\mActionLayerProperties=true +Menus\mLayerMenu\mActionLayerSaveAs=true +Menus\mLayerMenu\mActionLayerSubsetString=true +Menus\mLayerMenu\mActionOpenTable=true +Menus\mLayerMenu\mActionPasteLayer=true +Menus\mLayerMenu\mActionPasteStyle=true +Menus\mLayerMenu\mActionRemoveAllFromOverview=true +Menus\mLayerMenu\mActionRemoveLayer=true +Menus\mLayerMenu\mActionSaveLayerDefinition=true +Menus\mLayerMenu\mActionSaveLayerEdits=true +Menus\mLayerMenu\mActionSetLayerCRS=true +Menus\mLayerMenu\mActionSetLayerScaleVisibility=true +Menus\mLayerMenu\mActionSetProjectCRSFromLayer=true +Menus\mLayerMenu\mActionShowGeoreferencer=true +Menus\mLayerMenu\mActionToggleEditing=true +Menus\mLayerMenu\mAddLayerMenu=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddAfsLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddAmsLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddDb2Layer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddDelimitedText=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddGpsLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddHanaLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddLayerSeparator=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddMeshLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddMssqlLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddOgrLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddOracleLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddPgLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddPointCloudLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddRasterLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddSpatiaLiteLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddVectorTileLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddVirtualLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddWcsLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddWfsLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddWmsLayer=true +Menus\mLayerMenu\mAddLayerMenu\mActionAddXyzLayer=true +Menus\mLayerMenu\mMenuFilterTable=true +Menus\mLayerMenu\mMenuFilterTable\mActionOpenTableEdited=true +Menus\mLayerMenu\mMenuFilterTable\mActionOpenTableSelected=true +Menus\mLayerMenu\mMenuFilterTable\mActionOpenTableVisible=true +Menus\mLayerMenu\mNewLayerMenu=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewGeoPackageLayer=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewGpxLayer=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewMemoryLayer=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewMeshLayer=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewSpatiaLiteLayer=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewVectorLayer=true +Menus\mLayerMenu\mNewLayerMenu\mActionNewVirtualLayer=true +Menus\mMeshMenu=false +Menus\mMeshMenu\mActionShowMeshCalculator=true +Menus\mPluginMenu=true +Menus\mPluginMenu\GpsMops=false +Menus\mPluginMenu\PluginReloader=true +Menus\mPluginMenu\mActionManagePlugins=true +Menus\mPluginMenu\mActionShowPythonDialog=true +Menus\mProjectMenu=false +Menus\mProjectMenu\mActionCloseProject=true +Menus\mProjectMenu\mActionExit=true +Menus\mProjectMenu\mActionNewPrintLayout=false +Menus\mProjectMenu\mActionNewProject=true +Menus\mProjectMenu\mActionNewReport=true +Menus\mProjectMenu\mActionOpenProject=true +Menus\mProjectMenu\mActionProjectProperties=true +Menus\mProjectMenu\mActionRevertProject=true +Menus\mProjectMenu\mActionSaveProject=true +Menus\mProjectMenu\mActionSaveProjectAs=true +Menus\mProjectMenu\mActionShowLayoutManager=true +Menus\mProjectMenu\mActionSnappingOptions=true +Menus\mProjectMenu\mLayoutsMenu=true +Menus\mProjectMenu\mProjectFromStorageMenu=true +Menus\mProjectMenu\mProjectFromTemplateMenu=true +Menus\mProjectMenu\mProjectToStorageMenu=true +Menus\mProjectMenu\mRecentProjectsMenu=true +Menus\mProjectMenu\menuImport_Export=true +Menus\mProjectMenu\menuImport_Export\mActionDwgImport=true +Menus\mProjectMenu\menuImport_Export\mActionDxfExport=true +Menus\mProjectMenu\menuImport_Export\mActionSaveMapAsImage=true +Menus\mProjectMenu\menuImport_Export\mActionSaveMapAsPdf=true +Menus\mRasterMenu=false +Menus\mRasterMenu\mActionShowAlignRasterTool=true +Menus\mRasterMenu\mActionShowGeoreferencer=true +Menus\mRasterMenu\mActionShowRasterCalculator=true +Menus\mSettingsMenu=true +Menus\mSettingsMenu\mActionConfigureShortcuts=false +Menus\mSettingsMenu\mActionCustomProjection=false +Menus\mSettingsMenu\mActionCustomization=true +Menus\mSettingsMenu\mActionOptions=true +Menus\mSettingsMenu\mActionStyleManager=false +Menus\mSettingsMenu\mUserProfileMenu=true +Menus\mSettingsMenu\mUserProfileMenu\mActionNewProfile=false +Menus\mSettingsMenu\mUserProfileMenu\mActionOpenActiveProfileFolder=true +Menus\mSettingsMenu\mUserProfileMenu\mActionProfile_MoFa4Q=true +Menus\mSettingsMenu\mUserProfileMenu\mActionProfile_default=true +Menus\mVectorMenu=false +Menus\mViewMenu=false +Menus\mViewMenu\m3DMapViewsMenu=true +Menus\mViewMenu\m3DMapViewsMenu\mActionManage3DMapViews=true +Menus\mViewMenu\m3DMapViewsMenu\mActionNew3DMapCanvas=true +Menus\mViewMenu\mActionDraw=true +Menus\mViewMenu\mActionElevationProfile=true +Menus\mViewMenu\mActionHideAllLayers=true +Menus\mViewMenu\mActionHideDeselectedLayers=true +Menus\mViewMenu\mActionHideSelectedLayers=true +Menus\mViewMenu\mActionIdentify=true +Menus\mViewMenu\mActionMapTips=true +Menus\mViewMenu\mActionNew3DMapCanvas=true +Menus\mViewMenu\mActionNewBookmark=true +Menus\mViewMenu\mActionNewMapCanvas=true +Menus\mViewMenu\mActionPan=true +Menus\mViewMenu\mActionPanToSelected=true +Menus\mViewMenu\mActionShowAllLayers=true +Menus\mViewMenu\mActionShowBookmarkManager=true +Menus\mViewMenu\mActionShowBookmarks=true +Menus\mViewMenu\mActionShowSelectedLayers=true +Menus\mViewMenu\mActionStatisticalSummary=true +Menus\mViewMenu\mActionToggleFullScreen=true +Menus\mViewMenu\mActionToggleMapOnly=true +Menus\mViewMenu\mActionTogglePanelsVisibility=true +Menus\mViewMenu\mActionZoomActualSize=true +Menus\mViewMenu\mActionZoomFullExtent=true +Menus\mViewMenu\mActionZoomIn=true +Menus\mViewMenu\mActionZoomLast=true +Menus\mViewMenu\mActionZoomNext=true +Menus\mViewMenu\mActionZoomOut=true +Menus\mViewMenu\mActionZoomToLayer=true +Menus\mViewMenu\mActionZoomToLayers=true +Menus\mViewMenu\mActionZoomToSelected=true +Menus\mViewMenu\mMenuDecorations=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationCopyright=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationGrid=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationImage=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationLayoutExtent=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationNorthArrow=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationScaleBar=true +Menus\mViewMenu\mMenuDecorations\mActionDecorationTitle=true +Menus\mViewMenu\mMenuLayerVisibility=true +Menus\mViewMenu\mMenuLayerVisibility\mActionHideAllLayers=true +Menus\mViewMenu\mMenuLayerVisibility\mActionHideDeselectedLayers=true +Menus\mViewMenu\mMenuLayerVisibility\mActionHideSelectedLayers=true +Menus\mViewMenu\mMenuLayerVisibility\mActionShowAllLayers=true +Menus\mViewMenu\mMenuLayerVisibility\mActionShowSelectedLayers=true +Menus\mViewMenu\mMenuLayerVisibility\mActionToggleSelectedLayers=true +Menus\mViewMenu\mMenuLayerVisibility\mActionToggleSelectedLayersIndependently=true +Menus\mViewMenu\mMenuMeasure=true +Menus\mViewMenu\mMenuMeasure\mActionMeasure=true +Menus\mViewMenu\mMenuMeasure\mActionMeasureAngle=true +Menus\mViewMenu\mMenuMeasure\mActionMeasureArea=true +Menus\mViewMenu\mMenuMeasure\mActionMeasureBearing=true +Menus\mViewMenu\mMenuPreviewMode=true +Menus\mViewMenu\mMenuPreviewMode\mActionPreviewDeuteranope=true +Menus\mViewMenu\mMenuPreviewMode\mActionPreviewModeGrayscale=true +Menus\mViewMenu\mMenuPreviewMode\mActionPreviewModeMono=true +Menus\mViewMenu\mMenuPreviewMode\mActionPreviewModeOff=true +Menus\mViewMenu\mMenuPreviewMode\mActionPreviewProtanope=true +Menus\mViewMenu\mMenuPreviewMode\mActionPreviewTritanope=true +Menus\mViewMenu\mPanelMenu=true +Menus\mViewMenu\mToolbarMenu=true +Menus\mViewMenu\mToolbarMenu\mActionToggleAdvancedDigitizeToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleAnnotationsToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleAttributesToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleDataSourceManagerToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleDatabaseToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleDigitizeToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleFileToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleHelpToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleLabelToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleLayerToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleMapNavToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleMeshToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionTogglePluginToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleRasterToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleSelectionToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleShapeDigitizeToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleSnappingToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleVectorToolBar=true +Menus\mViewMenu\mToolbarMenu\mActionToggleWebToolBar=true +Menus\mViewMenu\menuDecorations=true +Menus\mViewMenu\menuDecorations\mActionDecorationCopyright=true +Menus\mViewMenu\menuDecorations\mActionDecorationGrid=true +Menus\mViewMenu\menuDecorations\mActionDecorationLayoutExtent=true +Menus\mViewMenu\menuDecorations\mActionDecorationNorthArrow=true +Menus\mViewMenu\menuDecorations\mActionDecorationScaleBar=true +Menus\mViewMenu\menuDecorations\mActionDecorationTitle=true +Menus\mViewMenu\menuMeasure=true +Menus\mViewMenu\menuMeasure\mActionMeasure=true +Menus\mViewMenu\menuMeasure\mActionMeasureAngle=true +Menus\mViewMenu\menuMeasure\mActionMeasureArea=true +Menus\mWebMenu=false +Menus\mWebMenu\MetaSearch=true +Menus\processing=false +Menus\processing\editInPlaceFeatures=true +Menus\processing\historyAction=true +Menus\processing\modelerAction=true +Menus\processing\resultsViewer=true +Menus\processing\toolboxAction=true +StatusBar=true +StatusBar\LocatorWidget=true +StatusBar\mCoordsEdit=true +StatusBar\mMagnifierWidget=true +StatusBar\mMessageLogViewerButton=true +StatusBar\mOntheFlyProjectionStatusButton=true +StatusBar\mProgressBar=true +StatusBar\mRenderSuppressionCBox=true +StatusBar\mRotationEdit=true +StatusBar\mRotationLabel=true +StatusBar\mScaleWidget=true +Toolbars=false +Toolbars\mAdvancedDigitizeToolBar=false +Toolbars\mAdvancedDigitizeToolBar\ActionMoveFeatureTool=true +Toolbars\mAdvancedDigitizeToolBar\ActionMoveFeatureTool\mActionMoveFeature=true +Toolbars\mAdvancedDigitizeToolBar\ActionMoveFeatureTool\mActionMoveFeatureCopy=true +Toolbars\mAdvancedDigitizeToolBar\ActionPointSymbolTools=true +Toolbars\mAdvancedDigitizeToolBar\ActionPointSymbolTools\mActionOffsetPointSymbol=true +Toolbars\mAdvancedDigitizeToolBar\ActionPointSymbolTools\mActionRotatePointSymbols=true +Toolbars\mAdvancedDigitizeToolBar\mActionAddPart=true +Toolbars\mAdvancedDigitizeToolBar\mActionAddRing=true +Toolbars\mAdvancedDigitizeToolBar\mActionDeletePart=true +Toolbars\mAdvancedDigitizeToolBar\mActionDeleteRing=true +Toolbars\mAdvancedDigitizeToolBar\mActionFillRing=true +Toolbars\mAdvancedDigitizeToolBar\mActionMergeFeatureAttributes=true +Toolbars\mAdvancedDigitizeToolBar\mActionMergeFeatures=true +Toolbars\mAdvancedDigitizeToolBar\mActionOffsetCurve=true +Toolbars\mAdvancedDigitizeToolBar\mActionReshapeFeatures=true +Toolbars\mAdvancedDigitizeToolBar\mActionReverseLine=true +Toolbars\mAdvancedDigitizeToolBar\mActionRotateFeature=true +Toolbars\mAdvancedDigitizeToolBar\mActionScaleFeature=true +Toolbars\mAdvancedDigitizeToolBar\mActionSimplifyFeature=true +Toolbars\mAdvancedDigitizeToolBar\mActionSplitFeatures=true +Toolbars\mAdvancedDigitizeToolBar\mActionSplitParts=true +Toolbars\mAdvancedDigitizeToolBar\mActionTrimExtendFeature=true +Toolbars\mAdvancedDigitizeToolBar\mEnableAction=true +Toolbars\mAnnotationsToolBar=true +Toolbars\mAnnotationsToolBar\ActionAnnotation=false +Toolbars\mAnnotationsToolBar\ActionAnnotation\mActionAnnotation=false +Toolbars\mAnnotationsToolBar\ActionAnnotation\mActionFormAnnotation=false +Toolbars\mAnnotationsToolBar\ActionAnnotation\mActionHtmlAnnotation=false +Toolbars\mAnnotationsToolBar\ActionAnnotation\mActionSvgAnnotation=false +Toolbars\mAnnotationsToolBar\ActionAnnotation\mActionTextAnnotation=false +Toolbars\mAnnotationsToolBar\mActionModifyAnnotation=false +Toolbars\mAttributesToolBar=false +Toolbars\mAttributesToolBar\ActionAnnotation=false +Toolbars\mAttributesToolBar\ActionFeatureAction=false +Toolbars\mAttributesToolBar\ActionFeatureAction\mActionFeatureAction=true +Toolbars\mAttributesToolBar\ActionMeasure=false +Toolbars\mAttributesToolBar\ActionMeasure\mActionMeasure=true +Toolbars\mAttributesToolBar\ActionMeasure\mActionMeasureAngle=true +Toolbars\mAttributesToolBar\ActionMeasure\mActionMeasureArea=true +Toolbars\mAttributesToolBar\ActionMeasure\mActionMeasureBearing=true +Toolbars\mAttributesToolBar\ActionOpenTable=true +Toolbars\mAttributesToolBar\ActionOpenTable\mActionOpenTable=true +Toolbars\mAttributesToolBar\ActionOpenTable\mActionOpenTableEdited=true +Toolbars\mAttributesToolBar\ActionOpenTable\mActionOpenTableSelected=true +Toolbars\mAttributesToolBar\ActionOpenTable\mActionOpenTableVisible=true +Toolbars\mAttributesToolBar\ActionSelect=false +Toolbars\mAttributesToolBar\ActionSelection=false +Toolbars\mAttributesToolBar\mActionDeselectAll=false +Toolbars\mAttributesToolBar\mActionIdentify=true +Toolbars\mAttributesToolBar\mActionMapTips=false +Toolbars\mAttributesToolBar\mActionOpenFieldCalc=false +Toolbars\mAttributesToolBar\mActionOpenTable=false +Toolbars\mAttributesToolBar\mActionStatisticalSummary=false +Toolbars\mAttributesToolBar\toolboxAction=false +Toolbars\mDataSourceManagerToolBar=false +Toolbars\mDataSourceManagerToolBar\mActionDataSourceManager=false +Toolbars\mDataSourceManagerToolBar\mActionNewGeoPackageLayer=false +Toolbars\mDataSourceManagerToolBar\mActionNewMemoryLayer=false +Toolbars\mDataSourceManagerToolBar\mActionNewMeshLayer=true +Toolbars\mDataSourceManagerToolBar\mActionNewSpatiaLiteLayer=false +Toolbars\mDataSourceManagerToolBar\mActionNewVectorLayer=false +Toolbars\mDataSourceManagerToolBar\mActionNewVirtualLayer=false +Toolbars\mDatabaseToolBar=false +Toolbars\mDatabaseToolBar\dbManager=true +Toolbars\mDigitizeToolBar=false +Toolbars\mDigitizeToolBar\ActionVertexTool=true +Toolbars\mDigitizeToolBar\ActionVertexTool\mActionVertexTool=true +Toolbars\mDigitizeToolBar\ActionVertexTool\mActionVertexToolActiveLayer=true +Toolbars\mDigitizeToolBar\AllEditsMenu=true +Toolbars\mDigitizeToolBar\AllEditsMenu\mActionCancelAllEdits=true +Toolbars\mDigitizeToolBar\AllEditsMenu\mActionCancelEdits=true +Toolbars\mDigitizeToolBar\AllEditsMenu\mActionRollbackAllEdits=true +Toolbars\mDigitizeToolBar\AllEditsMenu\mActionRollbackEdits=true +Toolbars\mDigitizeToolBar\AllEditsMenu\mActionSaveAllEdits=true +Toolbars\mDigitizeToolBar\AllEditsMenu\mActionSaveEdits=true +Toolbars\mDigitizeToolBar\mActionAddFeature=true +Toolbars\mDigitizeToolBar\mActionCopyFeatures=true +Toolbars\mDigitizeToolBar\mActionCutFeatures=true +Toolbars\mDigitizeToolBar\mActionDeleteSelected=true +Toolbars\mDigitizeToolBar\mActionMultiEditAttributes=true +Toolbars\mDigitizeToolBar\mActionPasteFeatures=true +Toolbars\mDigitizeToolBar\mActionRedo=true +Toolbars\mDigitizeToolBar\mActionSaveLayerEdits=true +Toolbars\mDigitizeToolBar\mActionToggleEditing=false +Toolbars\mDigitizeToolBar\mActionUndo=true +Toolbars\mDigitizeToolBar\mActionVertexTool=true +Toolbars\mFileToolBar=false +Toolbars\mFileToolBar\mActionNewPrintLayout=false +Toolbars\mFileToolBar\mActionNewProject=false +Toolbars\mFileToolBar\mActionOpenProject=false +Toolbars\mFileToolBar\mActionSaveProject=false +Toolbars\mFileToolBar\mActionShowLayoutManager=true +Toolbars\mFileToolBar\mActionStyleManager=false +Toolbars\mGpsToolBar=false +Toolbars\mHelpToolBar=false +Toolbars\mHelpToolBar\mActionHelpContents=false +Toolbars\mLabelToolBar=false +Toolbars\mLabelToolBar\mActionChangeLabelProperties=false +Toolbars\mLabelToolBar\mActionDiagramProperties=false +Toolbars\mLabelToolBar\mActionLabeling=false +Toolbars\mLabelToolBar\mActionMoveLabel=false +Toolbars\mLabelToolBar\mActionPinLabels=false +Toolbars\mLabelToolBar\mActionRotateLabel=false +Toolbars\mLabelToolBar\mActionShowHideLabels=false +Toolbars\mLabelToolBar\mActionShowPinnedLabels=false +Toolbars\mLabelToolBar\mActionShowUnplacedLabels=true +Toolbars\mLayerToolBar=false +Toolbars\mLayerToolBar\ActionAddDbLayer=true +Toolbars\mLayerToolBar\ActionAddDbLayer\mActionAddHanaLayer=true +Toolbars\mLayerToolBar\ActionAddDbLayer\mActionAddMssqlLayer=true +Toolbars\mLayerToolBar\ActionAddDbLayer\mActionAddOracleLayer=true +Toolbars\mLayerToolBar\ActionAddDbLayer\mActionAddPgLayer=true +Toolbars\mLayerToolBar\ActionFeatureService=true +Toolbars\mLayerToolBar\ActionMapService=true +Toolbars\mLayerToolBar\ActionNewLayer=true +Toolbars\mLayerToolBar\ActionNewLayer\mActionNewGeoPackageLayer=true +Toolbars\mLayerToolBar\ActionNewLayer\mActionNewMemoryLayer=true +Toolbars\mLayerToolBar\ActionNewLayer\mActionNewSpatiaLiteLayer=true +Toolbars\mLayerToolBar\ActionNewLayer\mActionNewVectorLayer=true +Toolbars\mLayerToolBar\mActionAddDelimitedText=true +Toolbars\mLayerToolBar\mActionAddMeshLayer=true +Toolbars\mLayerToolBar\mActionAddOgrLayer=true +Toolbars\mLayerToolBar\mActionAddRasterLayer=true +Toolbars\mLayerToolBar\mActionAddSpatiaLiteLayer=true +Toolbars\mLayerToolBar\mActionAddVirtualLayer=true +Toolbars\mLayerToolBar\mActionAddWcsLayer=true +Toolbars\mLayerToolBar\mActionAddWfsLayer=true +Toolbars\mLayerToolBar\mActionAddWmsLayer=true +Toolbars\mMapNavToolBar=false +Toolbars\mMapNavToolBar\mActionDraw=true +Toolbars\mMapNavToolBar\mActionNew3DMapCanvas=true +Toolbars\mMapNavToolBar\mActionNewBookmark=false +Toolbars\mMapNavToolBar\mActionNewMapCanvas=false +Toolbars\mMapNavToolBar\mActionPan=false +Toolbars\mMapNavToolBar\mActionPanToSelected=false +Toolbars\mMapNavToolBar\mActionShowBookmarks=false +Toolbars\mMapNavToolBar\mActionTemporalController=true +Toolbars\mMapNavToolBar\mActionZoomActualSize=false +Toolbars\mMapNavToolBar\mActionZoomFullExtent=true +Toolbars\mMapNavToolBar\mActionZoomIn=true +Toolbars\mMapNavToolBar\mActionZoomLast=false +Toolbars\mMapNavToolBar\mActionZoomNext=false +Toolbars\mMapNavToolBar\mActionZoomOut=true +Toolbars\mMapNavToolBar\mActionZoomToLayer=true +Toolbars\mMapNavToolBar\mActionZoomToLayers=true +Toolbars\mMapNavToolBar\mActionZoomToSelected=false +Toolbars\mMeshToolBar=false +Toolbars\mPluginToolBar=false +Toolbars\mPluginToolBar\mActionShowPythonDialog=false +Toolbars\mRasterToolBar=false +Toolbars\mRasterToolBar\mActionDecreaseBrightness=true +Toolbars\mRasterToolBar\mActionDecreaseContrast=true +Toolbars\mRasterToolBar\mActionDecreaseGamma=true +Toolbars\mRasterToolBar\mActionFullCumulativeCutStretch=true +Toolbars\mRasterToolBar\mActionFullHistogramStretch=true +Toolbars\mRasterToolBar\mActionIncreaseBrightness=true +Toolbars\mRasterToolBar\mActionIncreaseContrast=true +Toolbars\mRasterToolBar\mActionIncreaseGamma=true +Toolbars\mRasterToolBar\mActionLocalCumulativeCutStretch=true +Toolbars\mRasterToolBar\mActionLocalHistogramStretch=true +Toolbars\mSelectionToolBar=false +Toolbars\mSelectionToolBar\ActionDeselection=true +Toolbars\mSelectionToolBar\ActionDeselection\mActionDeselectActiveLayer=true +Toolbars\mSelectionToolBar\ActionDeselection\mActionDeselectAll=true +Toolbars\mSelectionToolBar\ActionSelect=true +Toolbars\mSelectionToolBar\ActionSelect\mActionSelectFeatures=true +Toolbars\mSelectionToolBar\ActionSelect\mActionSelectFreehand=true +Toolbars\mSelectionToolBar\ActionSelect\mActionSelectPolygon=true +Toolbars\mSelectionToolBar\ActionSelect\mActionSelectRadius=true +Toolbars\mSelectionToolBar\ActionSelection=true +Toolbars\mSelectionToolBar\ActionSelection\mActionInvertSelection=true +Toolbars\mSelectionToolBar\ActionSelection\mActionSelectAll=true +Toolbars\mSelectionToolBar\ActionSelection\mActionSelectByExpression=true +Toolbars\mSelectionToolBar\ActionSelection\mActionSelectByForm=true +Toolbars\mSelectionToolBar\mProcessingAlg_native%3Aselectbylocation=true +Toolbars\mShapeDigitizeToolBar=false +Toolbars\mShapeDigitizeToolBar\ActionAddCircle=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircle\mActionCircle2Points=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircle\mActionCircle2TangentsPoint=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircle\mActionCircle3Points=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircle\mActionCircle3Tangents=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircle\mActionCircleCenterPoint=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircularString=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircularString\mActionCircularStringCurvePoint=true +Toolbars\mShapeDigitizeToolBar\ActionAddCircularString\mActionCircularStringRadius=true +Toolbars\mShapeDigitizeToolBar\ActionAddEllipse=true +Toolbars\mShapeDigitizeToolBar\ActionAddEllipse\mActionEllipseCenter2Points=true +Toolbars\mShapeDigitizeToolBar\ActionAddEllipse\mActionEllipseCenterPoint=true +Toolbars\mShapeDigitizeToolBar\ActionAddEllipse\mActionEllipseExtent=true +Toolbars\mShapeDigitizeToolBar\ActionAddEllipse\mActionEllipseFoci=true +Toolbars\mShapeDigitizeToolBar\ActionAddRectangle=true +Toolbars\mShapeDigitizeToolBar\ActionAddRectangle\mActionRectangle3PointsDistance=true +Toolbars\mShapeDigitizeToolBar\ActionAddRectangle\mActionRectangle3PointsProjected=true +Toolbars\mShapeDigitizeToolBar\ActionAddRectangle\mActionRectangleCenterPoint=true +Toolbars\mShapeDigitizeToolBar\ActionAddRectangle\mActionRectangleExtent=true +Toolbars\mShapeDigitizeToolBar\ActionAddRegularPolygon=true +Toolbars\mShapeDigitizeToolBar\ActionAddRegularPolygon\mActionRegularPolygon2Points=true +Toolbars\mShapeDigitizeToolBar\ActionAddRegularPolygon\mActionRegularPolygonCenterCorner=true +Toolbars\mShapeDigitizeToolBar\ActionAddRegularPolygon\mActionRegularPolygonCenterPoint=true +Toolbars\mSnappingToolBar=false +Toolbars\mSnappingToolBar\EnableSnappingAction=true +Toolbars\mSnappingToolBar\IntersectionSnappingAction=true +Toolbars\mSnappingToolBar\SelfSnappingAction=true +Toolbars\mSnappingToolBar\TopologicalEditingAction=true +Toolbars\mVectorToolBar=false +Toolbars\mWebToolBar=false +Widgets=true +Widgets\MainWindow=true +Widgets\MainWindow\centralwidget=true +Widgets\QgsAbout=true +Widgets\QgsAbout\buttonBox=true +Widgets\QgsAbout\tabWidget=true +Widgets\QgsAbout\tabWidget\TabPage=true +Widgets\QgsAbout\tabWidget\TabPage\txtProviders=true +Widgets\QgsAbout\tabWidget\TabPage\txtProviders\qt_scrollarea_hcontainer=true +Widgets\QgsAbout\tabWidget\TabPage\txtProviders\qt_scrollarea_vcontainer=true +Widgets\QgsAbout\tabWidget\TabPage\txtProviders\qt_scrollarea_viewport=true +Widgets\QgsAbout\tabWidget\Widget2=true +Widgets\QgsAbout\tabWidget\Widget2\TextLabel4=true +Widgets\QgsAbout\tabWidget\Widget2\btnQgisHome=true +Widgets\QgsAbout\tabWidget\Widget2\btnQgisUser=true +Widgets\QgsAbout\tabWidget\Widget2\label=true +Widgets\QgsAbout\tabWidget\Widget2\label_2=true +Widgets\QgsAbout\tabWidget\Widget2\qgisIcon=true +Widgets\QgsAbout\tabWidget\Widget3=true +Widgets\QgsAbout\tabWidget\Widget3\txtWhatsNew=true +Widgets\QgsAbout\tabWidget\Widget3\txtWhatsNew\qt_scrollarea_hcontainer=true +Widgets\QgsAbout\tabWidget\Widget3\txtWhatsNew\qt_scrollarea_vcontainer=true +Widgets\QgsAbout\tabWidget\Widget3\txtWhatsNew\qt_scrollarea_viewport=true +Widgets\QgsAbout\tabWidget\tab=true +Widgets\QgsAbout\tabWidget\tab\label_3=true +Widgets\QgsAbout\tabWidget\tab\label_4=true +Widgets\QgsAbout\tabWidget\tab_3=true +Widgets\QgsAbout\tabWidget\tab_4=true +Widgets\QgsAbout\tabWidget\tab_4\txtDonors=true +Widgets\QgsAbout\tabWidget\tab_4\txtDonors\qt_scrollarea_hcontainer=true +Widgets\QgsAbout\tabWidget\tab_4\txtDonors\qt_scrollarea_vcontainer=true +Widgets\QgsAbout\tabWidget\tab_4\txtDonors\qt_scrollarea_viewport=true +Widgets\QgsAbout\tabWidget\tab_5=true +Widgets\QgsAddAttrDialogBase=true +Widgets\QgsAddAttrDialogBase\buttonBox=true +Widgets\QgsAddAttrDialogBase\mCommentEdit=true +Widgets\QgsAddAttrDialogBase\mLength=true +Widgets\QgsAddAttrDialogBase\mLength\qt_spinbox_lineedit=true +Widgets\QgsAddAttrDialogBase\mNameEdit=true +Widgets\QgsAddAttrDialogBase\mPrec=true +Widgets\QgsAddAttrDialogBase\mPrec\qt_spinbox_lineedit=true +Widgets\QgsAddAttrDialogBase\mTypeBox=true +Widgets\QgsAddAttrDialogBase\mTypeName=true +Widgets\QgsAddAttrDialogBase\textLabel1=true +Widgets\QgsAddAttrDialogBase\textLabel1_2=true +Widgets\QgsAddAttrDialogBase\textLabel2=true +Widgets\QgsAddAttrDialogBase\textLabel2_2=true +Widgets\QgsAddAttrDialogBase\textLabel2_3=true +Widgets\QgsAddJoinDialogBase=true +Widgets\QgsAddJoinDialogBase\buttonBox=true +Widgets\QgsAddJoinDialogBase\mCacheInMemoryCheckBox=true +Widgets\QgsAddJoinDialogBase\mCreateIndexCheckBox=true +Widgets\QgsAddJoinDialogBase\mJoinFieldComboBox=true +Widgets\QgsAddJoinDialogBase\mJoinFieldLabel=true +Widgets\QgsAddJoinDialogBase\mJoinLayerComboBox=true +Widgets\QgsAddJoinDialogBase\mJoinLayerLabel=true +Widgets\QgsAddJoinDialogBase\mTargetFieldComboBox=true +Widgets\QgsAddJoinDialogBase\mTargetFieldLabel=true +Widgets\QgsAddTabOrGroupBase=true +Widgets\QgsAddTabOrGroupBase\buttonBox=true +Widgets\QgsAddTabOrGroupBase\label=true +Widgets\QgsAddTabOrGroupBase\label_2=true +Widgets\QgsAddTabOrGroupBase\mGroupButton=true +Widgets\QgsAddTabOrGroupBase\mName=true +Widgets\QgsAddTabOrGroupBase\mTabButton=true +Widgets\QgsAddTabOrGroupBase\mTabList=true +Widgets\QgsAnnotationWidgetBase=true +Widgets\QgsAnnotationWidgetBase\mBackgroundColorLabel=true +Widgets\QgsAnnotationWidgetBase\mFrameColorLabel=true +Widgets\QgsAnnotationWidgetBase\mFrameWidthLabel=true +Widgets\QgsAnnotationWidgetBase\mMapMarkerButton=true +Widgets\QgsAnnotationWidgetBase\mMapMarkerLabel=true +Widgets\QgsAnnotationWidgetBase\mMapPositionFixedCheckBox=true +Widgets\QgsAtlasCompositionWidgetBase=true +Widgets\QgsAttributeActionDialogBase=true +Widgets\QgsAttributeLoadValues=true +Widgets\QgsAttributeLoadValues\buttonBox=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\keyComboBox=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\keyLabel=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\layerComboBox=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\layerLabel=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\previewButton=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\valueComboBox=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\valueLabel=true +Widgets\QgsAttributeLoadValues\gridLayoutWidget\valueTableLabel=true +Widgets\QgsAttributeSelectionDialogBase=true +Widgets\QgsAttributeSelectionDialogBase\buttonBox=true +Widgets\QgsAttributeSelectionDialogBase\mClearButton=true +Widgets\QgsAttributeSelectionDialogBase\mSelectAllButton=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox\mAddPushButton=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox\mDownPushButton=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox\mOrderComboBox=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox\mRemovePushButton=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox\mSortColumnComboBox=true +Widgets\QgsAttributeSelectionDialogBase\mSortingGroupBox\mUpPushButton=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mAliasLabel=true +Widgets\QgsAttributeSelectionDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mAttributeLabel=true +Widgets\QgsAttributeTypeDialog=true +Widgets\QgsAttributeTypeDialog\buttonBox=true +Widgets\QgsAttributeTypeDialog\isFieldEditableCheckBox=true +Widgets\QgsAttributeTypeDialog\labelOnTopCheckBox=true +Widgets\QgsAttributeTypeDialog\stackedWidget=true +Widgets\QgsAttributeTypeDialog\stackedWidget\calendarPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\calendarPage\label_10=true +Widgets\QgsAttributeTypeDialog\stackedWidget\calendarPage\label_11=true +Widgets\QgsAttributeTypeDialog\stackedWidget\calendarPage\label_4=true +Widgets\QgsAttributeTypeDialog\stackedWidget\calendarPage\leDateFormat=true +Widgets\QgsAttributeTypeDialog\stackedWidget\checkBoxPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\checkBoxPage\label_2=true +Widgets\QgsAttributeTypeDialog\stackedWidget\checkBoxPage\label_3=true +Widgets\QgsAttributeTypeDialog\stackedWidget\checkBoxPage\leCheckedState=true +Widgets\QgsAttributeTypeDialog\stackedWidget\checkBoxPage\leUncheckedState=true +Widgets\QgsAttributeTypeDialog\stackedWidget\classificationPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\classificationPage\classificationLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\colorPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\colorPage\label_15=true +Widgets\QgsAttributeTypeDialog\stackedWidget\enumerationPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\enumerationPage\enumerationLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\enumerationPage\enumerationWarningLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\fileNamePage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\fileNamePage\fileNameLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\hiddenPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\hiddenPage\hiddenLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\immutablePage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\immutablePage\immutableLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\lineEditPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\lineEditPage\lineEditLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\label_12=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\label_13=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\pictureOrUrlLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\sbWidgetHeight=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\sbWidgetHeight\qt_spinbox_lineedit=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\sbWidgetWidth=true +Widgets\QgsAttributeTypeDialog\stackedWidget\pictureOrUrlPage\sbWidgetWidth\qt_spinbox_lineedit=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\maximumLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\minimumLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\doublePage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage\maximumSpinBox=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage\maximumSpinBox\qt_spinbox_lineedit=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage\minimumSpinBox=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage\minimumSpinBox\qt_spinbox_lineedit=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage\stepSpinBox=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeStackedWidget\intPage\stepSpinBox\qt_spinbox_lineedit=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\rangeWidget=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\stepLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\rangePage\valuesLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\textEditPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\textEditPage\hiddenLabel_3=true +Widgets\QgsAttributeTypeDialog\stackedWidget\uniqueValuesPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\uniqueValuesPage\editableUniqueValues=true +Widgets\QgsAttributeTypeDialog\stackedWidget\uniqueValuesPage\label=true +Widgets\QgsAttributeTypeDialog\stackedWidget\uuidGenPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\uuidGenPage\label_9=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueMapPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueMapPage\loadFromCSVButton=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueMapPage\loadFromLayerButton=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueMapPage\removeSelectedButton=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueMapPage\valueMapLabel=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\label_19=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\label_5=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\label_6=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\label_7=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\label_8=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationAllowMulti=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationAllowNull=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationFilterExpression=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationFilterExpression\qt_scrollarea_hcontainer=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationFilterExpression\qt_scrollarea_vcontainer=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationFilterExpression\qt_scrollarea_viewport=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationKeyColumn=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationLayer=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationOrderByValue=true +Widgets\QgsAttributeTypeDialog\stackedWidget\valueRelationPage\valueRelationValueColumn=true +Widgets\QgsBookmarksBase=true +Widgets\QgsBookmarksBase\buttonBox=true +Widgets\QgsBrowserDirectoryPropertiesBase=true +Widgets\QgsBrowserDirectoryPropertiesBase\buttonBox=true +Widgets\QgsBrowserDirectoryPropertiesBase\label_2=true +Widgets\QgsBrowserDirectoryPropertiesBase\leSource=true +Widgets\QgsBrowserDockWidgetBase=true +Widgets\QgsBrowserDockWidgetBase\mContents=true +Widgets\QgsBrowserDockWidgetBase\mContents\mWidgetFilter=true +Widgets\QgsBrowserLayerPropertiesBase=true +Widgets\QgsBrowserLayerPropertiesBase\buttonBox=true +Widgets\QgsBrowserLayerPropertiesBase\label=true +Widgets\QgsBrowserLayerPropertiesBase\label_2=true +Widgets\QgsBrowserLayerPropertiesBase\label_3=true +Widgets\QgsBrowserLayerPropertiesBase\label_4=true +Widgets\QgsBrowserLayerPropertiesBase\lblNotice=true +Widgets\QgsBrowserLayerPropertiesBase\leName=true +Widgets\QgsBrowserLayerPropertiesBase\leProvider=true +Widgets\QgsBrowserLayerPropertiesBase\leSource=true +Widgets\QgsBrowserLayerPropertiesBase\txtbMetadata=true +Widgets\QgsBrowserLayerPropertiesBase\txtbMetadata\qt_scrollarea_hcontainer=true +Widgets\QgsBrowserLayerPropertiesBase\txtbMetadata\qt_scrollarea_vcontainer=true +Widgets\QgsBrowserLayerPropertiesBase\txtbMetadata\qt_scrollarea_viewport=true +Widgets\QgsCategorizedSymbolRendererV2Widget=true +Widgets\QgsCategorizedSymbolRendererV2Widget\btnAddCategories=true +Widgets\QgsCategorizedSymbolRendererV2Widget\btnAddCategory=true +Widgets\QgsCategorizedSymbolRendererV2Widget\btnAdvanced=true +Widgets\QgsCategorizedSymbolRendererV2Widget\btnChangeCategorizedSymbol=true +Widgets\QgsCategorizedSymbolRendererV2Widget\btnDeleteAllCategories=true +Widgets\QgsCategorizedSymbolRendererV2Widget\btnDeleteCategories=true +Widgets\QgsCategorizedSymbolRendererV2Widget\cboCategorizedColumn=true +Widgets\QgsCategorizedSymbolRendererV2Widget\label_10=true +Widgets\QgsCategorizedSymbolRendererV2Widget\label_3=true +Widgets\QgsCategorizedSymbolRendererV2Widget\label_9=true +Widgets\QgsCharacterSelectorBase=true +Widgets\QgsCharacterSelectorBase\mCharSelectButtonBox=true +Widgets\QgsCharacterSelectorBase\mCharSelectLabel=true +Widgets\QgsCharacterSelectorBase\mCharSelectLabelFont=true +Widgets\QgsCharacterSelectorBase\mCharSelectScrollArea=true +Widgets\QgsCharacterSelectorBase\mCharSelectScrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsCharacterSelectorBase\mCharSelectScrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsCharacterSelectorBase\mCharSelectScrollArea\qt_scrollarea_viewport=true +Widgets\QgsCharacterSelectorBase\mCharSelectScrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerArrowWidgetBase=true +Widgets\QgsComposerArrowWidgetBase\label_3=true +Widgets\QgsComposerArrowWidgetBase\scrollArea=true +Widgets\QgsComposerArrowWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerArrowWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerArrowWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerArrowWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerBase=true +Widgets\QgsComposerBase\centralwidget=true +Widgets\QgsComposerBase\centralwidget\mButtonBox=true +Widgets\QgsComposerHtmlWidgetBase=true +Widgets\QgsComposerHtmlWidgetBase\label=true +Widgets\QgsComposerHtmlWidgetBase\scrollArea=true +Widgets\QgsComposerHtmlWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerHtmlWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerHtmlWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerHtmlWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerItemWidgetBase=true +Widgets\QgsComposerLabelWidgetBase=true +Widgets\QgsComposerLabelWidgetBase\label=true +Widgets\QgsComposerLabelWidgetBase\scrollArea=true +Widgets\QgsComposerLabelWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerLabelWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerLabelWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerLabelWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerLegendItemDialogBase=true +Widgets\QgsComposerLegendItemDialogBase\buttonBox=true +Widgets\QgsComposerLegendItemDialogBase\mItemTextLabel=true +Widgets\QgsComposerLegendItemDialogBase\mItemTextLineEdit=true +Widgets\QgsComposerLegendLayersDialogBase=false +Widgets\QgsComposerLegendLayersDialogBase\buttonBox=false +Widgets\QgsComposerLegendWidgetBase=true +Widgets\QgsComposerLegendWidgetBase\label_11=true +Widgets\QgsComposerLegendWidgetBase\scrollArea=true +Widgets\QgsComposerLegendWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerLegendWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerLegendWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerLegendWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerManagerBase=true +Widgets\QgsComposerManagerBase\mButtonBox=true +Widgets\QgsComposerMapWidgetBase=true +Widgets\QgsComposerMapWidgetBase\label_3=true +Widgets\QgsComposerMapWidgetBase\scrollArea=true +Widgets\QgsComposerMapWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerMapWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerMapWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerMapWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerPictureWidgetBase=true +Widgets\QgsComposerPictureWidgetBase\label_2=true +Widgets\QgsComposerPictureWidgetBase\scrollArea=true +Widgets\QgsComposerPictureWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerPictureWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerPictureWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerPictureWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerScaleBarWidgetBase=true +Widgets\QgsComposerScaleBarWidgetBase\label_5=true +Widgets\QgsComposerScaleBarWidgetBase\scrollArea=true +Widgets\QgsComposerScaleBarWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerScaleBarWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerScaleBarWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerScaleBarWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerShapeWidgetBase=true +Widgets\QgsComposerShapeWidgetBase\label_2=true +Widgets\QgsComposerShapeWidgetBase\scrollArea=true +Widgets\QgsComposerShapeWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerShapeWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerShapeWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerShapeWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerTableWidgetBase=true +Widgets\QgsComposerTableWidgetBase\label=true +Widgets\QgsComposerTableWidgetBase\scrollArea=true +Widgets\QgsComposerTableWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsComposerTableWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsComposerTableWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsComposerTableWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsComposerVectorLegendBase=true +Widgets\QgsComposerVectorLegendBase\mFontButton=true +Widgets\QgsComposerVectorLegendBase\mFrameCheckBox=true +Widgets\QgsComposerVectorLegendBase\mMapComboBox=true +Widgets\QgsComposerVectorLegendBase\mPreviewModeComboBox=true +Widgets\QgsComposerVectorLegendBase\mTitleLineEdit=true +Widgets\QgsComposerVectorLegendBase\textLabel1=true +Widgets\QgsComposerVectorLegendBase\textLabel1_2=true +Widgets\QgsComposerVectorLegendBase\textLabel1_5=true +Widgets\QgsCompositionBase=true +Widgets\QgsCompositionBase\groupBox=true +Widgets\QgsCompositionBase\groupBox\mPaperHeightLineEdit=true +Widgets\QgsCompositionBase\groupBox\mPaperOrientationComboBox=true +Widgets\QgsCompositionBase\groupBox\mPaperSizeComboBox=true +Widgets\QgsCompositionBase\groupBox\mPaperUnitsComboBox=true +Widgets\QgsCompositionBase\groupBox\mPaperWidthLineEdit=true +Widgets\QgsCompositionBase\groupBox\textLabel3=true +Widgets\QgsCompositionBase\groupBox\textLabel4=true +Widgets\QgsCompositionBase\groupBox\textLabel5=true +Widgets\QgsCompositionBase\groupBox\textLabel6=true +Widgets\QgsCompositionBase\groupBox\textLabel7=true +Widgets\QgsCompositionWidgetBase=true +Widgets\QgsCompositionWidgetBase\scrollArea=true +Widgets\QgsCompositionWidgetBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsCompositionWidgetBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsCompositionWidgetBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsCompositionWidgetBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsConfigureShortcutsDialog=true +Widgets\QgsConfigureShortcutsDialog\btnChangeShortcut=true +Widgets\QgsConfigureShortcutsDialog\btnLoadShortcuts=true +Widgets\QgsConfigureShortcutsDialog\btnResetShortcut=true +Widgets\QgsConfigureShortcutsDialog\btnSaveShortcuts=true +Widgets\QgsConfigureShortcutsDialog\btnSetNoShortcut=true +Widgets\QgsConfigureShortcutsDialog\buttonBox=true +Widgets\QgsCptCityColorRampV2DialogBase=true +Widgets\QgsCptCityColorRampV2DialogBase\buttonBox=true +Widgets\QgsCptCityColorRampV2DialogBase\cboConvertStandard=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\cboVariantName=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\label=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\label_2=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\label_6=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\lblLicensePreview=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\lblPreview=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\lblSchemeName=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab\lblSchemePath=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\label_3=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\label_4=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\label_5=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\lblAuthorName=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\lblLicenseName=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\lblLicenseName\qt_scrollarea_hcontainer=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\lblLicenseName\qt_scrollarea_vcontainer=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\lblLicenseName\qt_scrollarea_viewport=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page\tabWidget\tab_2\lblSrcLink=true +Widgets\QgsCptCityColorRampV2DialogBase\mStackedWidget\page_2=true +Widgets\QgsCredentialDialog=true +Widgets\QgsCredentialDialog\buttonBox=true +Widgets\QgsCredentialDialog\label=true +Widgets\QgsCredentialDialog\labelMessage=true +Widgets\QgsCredentialDialog\labelRealm=true +Widgets\QgsCredentialDialog\label_2=true +Widgets\QgsCredentialDialog\label_3=true +Widgets\QgsCredentialDialog\lePassword=true +Widgets\QgsCredentialDialog\leUsername=true +Widgets\QgsCustomProjectionDialogBase=true +Widgets\QgsCustomProjectionDialogBase\buttonBox=true +Widgets\QgsCustomProjectionDialogBase\groupBox=true +Widgets\QgsCustomProjectionDialogBase\groupBox\label=true +Widgets\QgsCustomProjectionDialogBase\groupBox\label_3=true +Widgets\QgsCustomProjectionDialogBase\groupBox\label_4=true +Widgets\QgsCustomProjectionDialogBase\groupBox\leName=true +Widgets\QgsCustomProjectionDialogBase\groupBox\pbnAdd=true +Widgets\QgsCustomProjectionDialogBase\groupBox\pbnCopyCRS=true +Widgets\QgsCustomProjectionDialogBase\groupBox\pbnRemove=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\eastWGS84=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\label_2=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\northWGS84=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\pbnCalculate=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\projectedX=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\projectedY=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\textLabel1_3=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\textLabel2_2=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\textLabel2_2_2=true +Widgets\QgsCustomProjectionDialogBase\groupBox_2\textLabel2_3=true +Widgets\QgsCustomizationDialogBase=true +Widgets\QgsCustomizationDialogBase\centralwidget=true +Widgets\QgsCustomizationDialogBase\centralwidget\buttonBox=true +Widgets\QgsCustomizationDialogBase\centralwidget\mCustomizationEnabledCheckBox=true +Widgets\QgsDataDefinedSymbolDialog=true +Widgets\QgsDataDefinedSymbolDialog\mButtonBox=true +Widgets\QgsDbSourceSelectBase=true +Widgets\QgsDbSourceSelectBase\buttonBox=true +Widgets\QgsDbSourceSelectBase\cbxAllowGeometrylessTables=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\btnConnect=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\btnDelete=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\btnEdit=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\btnLoad=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\btnNew=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\btnSave=true +Widgets\QgsDbSourceSelectBase\connectionsGroupBox\cmbConnections=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox\mSearchColumnComboBox=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox\mSearchColumnsLabel=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox\mSearchLabel=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox\mSearchModeComboBox=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox\mSearchModeLabel=true +Widgets\QgsDbSourceSelectBase\mSearchGroupBox\mSearchTableEdit=true +Widgets\QgsDecorationCopyrightDialog=true +Widgets\QgsDecorationCopyrightDialog\buttonBox=true +Widgets\QgsDecorationCopyrightDialog\cboOrientation=true +Widgets\QgsDecorationCopyrightDialog\cboPlacement=true +Widgets\QgsDecorationCopyrightDialog\cboxEnabled=true +Widgets\QgsDecorationCopyrightDialog\label=true +Widgets\QgsDecorationCopyrightDialog\label_2=true +Widgets\QgsDecorationCopyrightDialog\textLabel15=true +Widgets\QgsDecorationCopyrightDialog\textLabel16=true +Widgets\QgsDecorationCopyrightDialog\txtCopyrightText=true +Widgets\QgsDecorationCopyrightDialog\txtCopyrightText\qt_scrollarea_hcontainer=true +Widgets\QgsDecorationCopyrightDialog\txtCopyrightText\qt_scrollarea_vcontainer=true +Widgets\QgsDecorationCopyrightDialog\txtCopyrightText\qt_scrollarea_viewport=true +Widgets\QgsDecorationGridDialog=true +Widgets\QgsDecorationGridDialog\buttonBox=true +Widgets\QgsDecorationGridDialog\chkEnable=true +Widgets\QgsDecorationGridDialog\groupBox=true +Widgets\QgsDecorationGridDialog\groupBox\mPbtnUpdateFromExtents=true +Widgets\QgsDecorationGridDialog\groupBox\mPbtnUpdateFromLayer=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mAnnotationDirectionComboBox=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mAnnotationDirectionLabel=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mAnnotationFontButton=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mCoordinatePrecisionLabel=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mCoordinatePrecisionSpinBox=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mCoordinatePrecisionSpinBox\qt_spinbox_lineedit=true +Widgets\QgsDecorationGridDialog\mDrawAnnotationCheckBox\mDistanceToFrameLabel=true +Widgets\QgsDecorationGridDialog\mGridTypeComboBox=true +Widgets\QgsDecorationGridDialog\mGridTypeLabel=true +Widgets\QgsDecorationGridDialog\mIntervalXEdit=true +Widgets\QgsDecorationGridDialog\mIntervalXLabel=true +Widgets\QgsDecorationGridDialog\mIntervalYEdit=true +Widgets\QgsDecorationGridDialog\mIntervalYLabel=true +Widgets\QgsDecorationGridDialog\mLineSymbolButton=true +Widgets\QgsDecorationGridDialog\mLineSymbolLabel=true +Widgets\QgsDecorationGridDialog\mMarkerSymbolButton=true +Widgets\QgsDecorationGridDialog\mMarkerSymbolLabel=true +Widgets\QgsDecorationGridDialog\mOffsetXEdit=true +Widgets\QgsDecorationGridDialog\mOffsetXLabel=true +Widgets\QgsDecorationGridDialog\mOffsetYEdit=true +Widgets\QgsDecorationGridDialog\mOffsetYLabel=true +Widgets\QgsDecorationNorthArrowDialog=true +Widgets\QgsDecorationNorthArrowDialog\buttonBox=true +Widgets\QgsDecorationScaleBarDialog=true +Widgets\QgsDecorationScaleBarDialog\buttonBox=true +Widgets\QgsDecorationScaleBarDialog\cboPlacement=true +Widgets\QgsDecorationScaleBarDialog\cboStyle=true +Widgets\QgsDecorationScaleBarDialog\chkEnable=true +Widgets\QgsDecorationScaleBarDialog\chkSnapping=true +Widgets\QgsDecorationScaleBarDialog\spnSize=true +Widgets\QgsDecorationScaleBarDialog\spnSize\qt_spinbox_lineedit=true +Widgets\QgsDecorationScaleBarDialog\textLabel1=true +Widgets\QgsDecorationScaleBarDialog\textLabel1_2=true +Widgets\QgsDecorationScaleBarDialog\textLabel1_3=true +Widgets\QgsDecorationScaleBarDialog\textLabel1_3_2=true +Widgets\QgsDelAttrDialogBase=true +Widgets\QgsDelAttrDialogBase\buttonBox=true +Widgets\QgsDelimitedTextSourceSelectBase=true +Widgets\QgsDelimitedTextSourceSelectBase\buttonBox=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxPointIsComma=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxSkipEmptyFields=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxSpatialIndex=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxSubsetIndex=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxTrimFields=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxUseHeader=true +Widgets\QgsDelimitedTextSourceSelectBase\cbxWatchFile=true +Widgets\QgsDelimitedTextSourceSelectBase\delimiterCSV=true +Widgets\QgsDelimitedTextSourceSelectBase\delimiterChars=true +Widgets\QgsDelimitedTextSourceSelectBase\delimiterRegexp=true +Widgets\QgsDelimitedTextSourceSelectBase\geomTypeNone=true +Widgets\QgsDelimitedTextSourceSelectBase\geomTypeWKT=true +Widgets\QgsDelimitedTextSourceSelectBase\geomTypeXY=true +Widgets\QgsDelimitedTextSourceSelectBase\labelFileFormat=true +Widgets\QgsDelimitedTextSourceSelectBase\label_2=true +Widgets\QgsDelimitedTextSourceSelectBase\label_3=true +Widgets\QgsDelimitedTextSourceSelectBase\label_4=true +Widgets\QgsDelimitedTextSourceSelectBase\label_6=true +Widgets\QgsDelimitedTextSourceSelectBase\label_8=true +Widgets\QgsDelimitedTextSourceSelectBase\lblStatus=true +Widgets\QgsDelimitedTextSourceSelectBase\rowCounter=true +Widgets\QgsDelimitedTextSourceSelectBase\rowCounter\qt_spinbox_lineedit=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat\swpCSVOptions=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat\swpDelimOptions=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat\swpRegexpOptions=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat\swpRegexpOptions\label_7=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat\swpRegexpOptions\lblRegexpError=true +Widgets\QgsDelimitedTextSourceSelectBase\swFileFormat\swpRegexpOptions\txtDelimiterRegexp=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomNone=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomWKT=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomWKT\cmbGeometryType=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomWKT\cmbWktField=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomWKT\label=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomWKT\label_5=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomXY=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomXY\cbxXyDms=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomXY\cmbXField=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomXY\cmbYField=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomXY\textLabelx=true +Widgets\QgsDelimitedTextSourceSelectBase\swGeomType\swpGeomXY\textLabely=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\btnBrowseForFile=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\cmbEncoding=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\lblEncoding=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\textLabelFileName=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\textLabelLayerName=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\txtFilePath=true +Widgets\QgsDelimitedTextSourceSelectBase\widget_3\txtLayerName=true +Widgets\QgsDetailedItemWidgetBase=true +Widgets\QgsDetailedItemWidgetBase\cbx=true +Widgets\QgsDetailedItemWidgetBase\lblCategory=true +Widgets\QgsDetailedItemWidgetBase\lblDetail=true +Widgets\QgsDetailedItemWidgetBase\lblIcon=true +Widgets\QgsDetailedItemWidgetBase\lblTitle=true +Widgets\QgsDetailedItemWidgetBase\widget=true +Widgets\QgsDisplayAngleBase=true +Widgets\QgsDisplayAngleBase\buttonBox=true +Widgets\QgsDisplayAngleBase\mAngleLineEdit=true +Widgets\QgsEngineConfigDialog=true +Widgets\QgsEngineConfigDialog\buttonBox=true +Widgets\QgsEngineConfigDialog\cboSearchMethod=true +Widgets\QgsEngineConfigDialog\chkShowAllLabels=true +Widgets\QgsEngineConfigDialog\chkShowCandidates=true +Widgets\QgsEngineConfigDialog\groupBox=true +Widgets\QgsEngineConfigDialog\groupBox\label_2=true +Widgets\QgsEngineConfigDialog\groupBox\label_3=true +Widgets\QgsEngineConfigDialog\groupBox\label_4=true +Widgets\QgsEngineConfigDialog\groupBox\spinCandLine=true +Widgets\QgsEngineConfigDialog\groupBox\spinCandLine\qt_spinbox_lineedit=true +Widgets\QgsEngineConfigDialog\groupBox\spinCandPoint=true +Widgets\QgsEngineConfigDialog\groupBox\spinCandPoint\qt_spinbox_lineedit=true +Widgets\QgsEngineConfigDialog\groupBox\spinCandPolygon=true +Widgets\QgsEngineConfigDialog\groupBox\spinCandPolygon\qt_spinbox_lineedit=true +Widgets\QgsEngineConfigDialog\label=true +Widgets\QgsEngineConfigDialog\label_6=true +Widgets\QgsEngineConfigDialog\mSaveWithProjectChkBox=true +Widgets\QgsEngineConfigDialog\mShadowDebugRectChkBox=true +Widgets\QgsErrorDialogBase=true +Widgets\QgsErrorDialogBase\buttonBox=true +Widgets\QgsErrorDialogBase\mDetailCheckBox=true +Widgets\QgsErrorDialogBase\mDetailPushButton=true +Widgets\QgsErrorDialogBase\mDetailTextBrowser=true +Widgets\QgsErrorDialogBase\mDetailTextBrowser\qt_scrollarea_hcontainer=true +Widgets\QgsErrorDialogBase\mDetailTextBrowser\qt_scrollarea_vcontainer=true +Widgets\QgsErrorDialogBase\mDetailTextBrowser\qt_scrollarea_viewport=true +Widgets\QgsErrorDialogBase\mIconLabel=true +Widgets\QgsErrorDialogBase\mSummaryTextBrowser=true +Widgets\QgsErrorDialogBase\mSummaryTextBrowser\qt_scrollarea_hcontainer=true +Widgets\QgsErrorDialogBase\mSummaryTextBrowser\qt_scrollarea_vcontainer=true +Widgets\QgsErrorDialogBase\mSummaryTextBrowser\qt_scrollarea_viewport=true +Widgets\QgsExpressionBuilderDialogBase=true +Widgets\QgsExpressionBuilderDialogBase\buttonBox=true +Widgets\QgsExpressionBuilderWidgetBase=true +Widgets\QgsExpressionBuilderWidgetBase\btnLoadAll=true +Widgets\QgsExpressionBuilderWidgetBase\btnLoadSample=true +Widgets\QgsExpressionBuilderWidgetBase\groupBox=true +Widgets\QgsExpressionBuilderWidgetBase\groupBox\txtExpressionString=true +Widgets\QgsExpressionBuilderWidgetBase\groupBox\txtExpressionString\qt_scrollarea_hcontainer=true +Widgets\QgsExpressionBuilderWidgetBase\groupBox\txtExpressionString\qt_scrollarea_vcontainer=true +Widgets\QgsExpressionBuilderWidgetBase\groupBox\txtExpressionString\qt_scrollarea_viewport=true +Widgets\QgsExpressionBuilderWidgetBase\label_2=true +Widgets\QgsExpressionBuilderWidgetBase\lblPreview=true +Widgets\QgsExpressionBuilderWidgetBase\mFunctionHelGroup=true +Widgets\QgsExpressionBuilderWidgetBase\mFunctionHelGroup\txtHelpText=true +Widgets\QgsExpressionBuilderWidgetBase\mFunctionHelGroup\txtHelpText\qt_scrollarea_hcontainer=true +Widgets\QgsExpressionBuilderWidgetBase\mFunctionHelGroup\txtHelpText\qt_scrollarea_vcontainer=true +Widgets\QgsExpressionBuilderWidgetBase\mFunctionHelGroup\txtHelpText\qt_scrollarea_viewport=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnCloseBracketPushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnConcatButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnDividePushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnEqualPushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnExpButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnMinusPushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnMultiplyPushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnOpenBracketPushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mOperatorsGroupBox\btnPlusPushButton=true +Widgets\QgsExpressionBuilderWidgetBase\mValueGroupBox=true +Widgets\QgsExpressionBuilderWidgetBase\moperationListGroup=true +Widgets\QgsExpressionSelectionDialogBase=true +Widgets\QgsExpressionSelectionDialogBase\mPbnClose=true +Widgets\QgsFieldCalculatorBase=true +Widgets\QgsFieldCalculatorBase\mButtonBox=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mFieldNameLabel=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldNameLineEdit=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldPrecisionLabel=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldPrecisionSpinBox=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldPrecisionSpinBox\qt_spinbox_lineedit=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldTypeComboBox=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldTypeLabel=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldWidthLabel=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldWidthSpinBox=true +Widgets\QgsFieldCalculatorBase\mNewFieldGroupBox\mOutputFieldWidthSpinBox\qt_spinbox_lineedit=true +Widgets\QgsFieldCalculatorBase\mOnlyUpdateSelectedCheckBox=true +Widgets\QgsFieldCalculatorBase\mUpdateExistingGroupBox=true +Widgets\QgsFieldCalculatorBase\mUpdateExistingGroupBox\mExistingFieldComboBox=true +Widgets\QgsFieldsPropertiesBase=true +Widgets\QgsFieldsPropertiesBase\label_2=true +Widgets\QgsFieldsPropertiesBase\label_3=true +Widgets\QgsFieldsPropertiesBase\leEditFormInit=true +Widgets\QgsFieldsPropertiesBase\mEditorLayoutComboBox=true +Widgets\QgsFormAnnotationDialogBase=true +Widgets\QgsFormAnnotationDialogBase\mButtonBox=true +Widgets\QgsFormAnnotationDialogBase\mFileLineEdit=true +Widgets\QgsFormAnnotationDialogBase\mStackedWidget=true +Widgets\QgsFormAnnotationDialogBase\mStackedWidget\page=true +Widgets\QgsFormAnnotationDialogBase\mStackedWidget\page_2=true +Widgets\QgsGenericProjectionSelectorBase=true +Widgets\QgsGenericProjectionSelectorBase\buttonBox=true +Widgets\QgsGenericProjectionSelectorBase\textEdit=true +Widgets\QgsGenericProjectionSelectorBase\textEdit\qt_scrollarea_hcontainer=true +Widgets\QgsGenericProjectionSelectorBase\textEdit\qt_scrollarea_vcontainer=true +Widgets\QgsGenericProjectionSelectorBase\textEdit\qt_scrollarea_viewport=true +Widgets\QgsGpsInformationWidgetBase=true +Widgets\QgsGpsInformationWidgetBase\mBtnAddVertex=true +Widgets\QgsGpsInformationWidgetBase\mBtnCloseFeature=true +Widgets\QgsGpsInformationWidgetBase\mConnectButton=true +Widgets\QgsGpsInformationWidgetBase\mLblStatusIndicator=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_hcontainer=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_vcontainer=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblAltitude=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblDirection=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblFixMode=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblFixType=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblHacc=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblHdop=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblLatitude=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblLongitude=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblPdop=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblQuality=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblSatellitesUsed=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblSpeed=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblStatus=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblUtcTime=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblVacc=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mLblVdop=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtAltitude=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtDateTime=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtDirection=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtFixMode=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtFixType=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtHacc=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtHdop=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtLatitude=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtLongitude=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtPdop=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtQuality=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtSatellitesUsed=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtSpeed=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtStatus=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtVacc=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage1\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\mTxtVdop=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage2=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage3=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\mSpinMapExtentMultiplier=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\mSpinMapExtentMultiplier\qt_spinbox_lineedit=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\radNeverRecenter=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\radRecenterMap=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\radRecenterWhenNeeded=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\groupBox_3=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\groupBox_3\mBtnTrackColor=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\groupBox_3\mCbxAutoAddVertices=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\groupBox_3\mSpinTrackWidth=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\groupBox_3\mSpinTrackWidth\qt_spinbox_lineedit=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\mCbxAutoCommit=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\label_3=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\label_4=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\label_5=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mCboDevices=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mGpsdDevice=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mGpsdHost=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mGpsdPort=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mRadAutodetect=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mRadGpsd=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mRadInternal=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDeviceGroupBox\mRadUserPath=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mGroupShowMarker=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mGroupShowMarker\label=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mGroupShowMarker\label_2=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mGroupShowMarker\mSliderMarkerSize=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mLogFileGroupBox=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mLogFileGroupBox\mBtnLogFile=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage4\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mLogFileGroupBox\mTxtLogFile=true +Widgets\QgsGpsInformationWidgetBase\mStackedWidget\stackedWidgetPage5=true +Widgets\QgsGraduatedSymbolRendererV2Widget=true +Widgets\QgsGraduatedSymbolRendererV2Widget\btnAdvanced=true +Widgets\QgsGraduatedSymbolRendererV2Widget\btnChangeGraduatedSymbol=true +Widgets\QgsGraduatedSymbolRendererV2Widget\btnDeleteAllClasses=true +Widgets\QgsGraduatedSymbolRendererV2Widget\btnGraduatedAdd=true +Widgets\QgsGraduatedSymbolRendererV2Widget\btnGraduatedClassify=true +Widgets\QgsGraduatedSymbolRendererV2Widget\btnGraduatedDelete=true +Widgets\QgsGraduatedSymbolRendererV2Widget\cboGraduatedColumn=true +Widgets\QgsGraduatedSymbolRendererV2Widget\cboGraduatedMode=true +Widgets\QgsGraduatedSymbolRendererV2Widget\label_4=true +Widgets\QgsGraduatedSymbolRendererV2Widget\label_5=true +Widgets\QgsGraduatedSymbolRendererV2Widget\label_6=true +Widgets\QgsGraduatedSymbolRendererV2Widget\label_7=true +Widgets\QgsGraduatedSymbolRendererV2Widget\label_8=true +Widgets\QgsGraduatedSymbolRendererV2Widget\spinGraduatedClasses=true +Widgets\QgsGraduatedSymbolRendererV2Widget\spinGraduatedClasses\qt_spinbox_lineedit=true +Widgets\QgsHandleBadLayersBase=true +Widgets\QgsHandleBadLayersBase\buttonBox=true +Widgets\QgsIdentifyResultsBase=true +Widgets\QgsIdentifyResultsBase\buttonBox=true +Widgets\QgsLUDialogBase=true +Widgets\QgsLUDialogBase\buttonBox=true +Widgets\QgsLUDialogBase\mLowerEdit=true +Widgets\QgsLUDialogBase\mLowerLabel=true +Widgets\QgsLUDialogBase\mUpperEdit=true +Widgets\QgsLUDialogBase\mUpperLabel=true +Widgets\QgsLabelDialogBase=true +Widgets\QgsLabelDialogBase\groupBox5=true +Widgets\QgsLabelDialogBase\groupBox5\lblSample=true +Widgets\QgsLabelDialogBase\tabWidget=true +Widgets\QgsLabelDialogBase\tabWidget\tab=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup10=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup10\cboOffsetUnits=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseBuffer=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseBuffer\cboBufferSizeUnits=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseBuffer\pbnDefaultBufferColor=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseBuffer\spinBufferTransparency=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseBuffer\spinBufferTransparency\qt_spinbox_lineedit=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseBuffer\textLabel4_3_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseScaleDependentRendering=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseScaleDependentRendering\leMaximumScale=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseScaleDependentRendering\leMinimumScale=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseScaleDependentRendering\textLabel1_1=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\chkUseScaleDependentRendering\textLabel1_2_2_1=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioAbove=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioAboveLeft=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioAboveRight=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioBelow=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioBelowLeft=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioBelowRight=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioLeft=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioOver=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2\radioRight=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\btnDefaultFont=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\cboFontSizeUnits=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\cboLabelField=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\chkSelectedOnly=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\chkUseMultiline=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\leDefaultLabel=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\pbnDefaultFontColor=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\spinAngle=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\spinAngle\qt_spinbox_lineedit=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\textLabel1=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\textLabel1_2_2_2_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\textLabel5=true +Widgets\QgsLabelDialogBase\tabWidget\tab\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_8\textLabel5_2_2_3_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_hcontainer=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_vcontainer=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboBoldField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboFontColorField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboFontField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboFontSizeField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboFontSizeTypeField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboItalicField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboStrikeOutField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\cboUnderlineField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\label=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\lblFont=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\textLabel4=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\textLabel4_2_4=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\textLabel4_3=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\textLabel4_3_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\textLabel4_3_2_4=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox\textLabel4_3_2_5=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_5=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_5\cboAlignmentField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_5\cboAngleField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_5\textLabel1_2_2_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_5\textLabel1_2_2_2_2_3=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_6=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_6\cboBufferSizeField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_6\cboBufferTransparencyField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_6\textLabel1_3_2_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_6\textLabel4_3_2_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\cboXCoordinateField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\cboXOffsetField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\cboYCoordinateField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\cboYOffsetField=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\textLabel1_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\textLabel1_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\textLabel1_2_2_2=true +Widgets\QgsLabelDialogBase\tabWidget\tab_2\scrollArea_2\qt_scrollarea_viewport\scrollAreaWidgetContents_2\groupBox_7\textLabel1_2_3=true +Widgets\QgsLabelPropertyDialogBase=true +Widgets\QgsLabelPropertyDialogBase\buttonBox=true +Widgets\QgsLabelPropertyDialogBase\groupBox=true +Widgets\QgsLabelPropertyDialogBase\groupBox\label=true +Widgets\QgsLabelPropertyDialogBase\groupBox\mAlwaysShowChkbx=true +Widgets\QgsLabelPropertyDialogBase\groupBox\mMaxScaleSpinBox=true +Widgets\QgsLabelPropertyDialogBase\groupBox\mMaxScaleSpinBox\qt_spinbox_lineedit=true +Widgets\QgsLabelPropertyDialogBase\groupBox\mMinScaleSpinBox=true +Widgets\QgsLabelPropertyDialogBase\groupBox\mMinScaleSpinBox\qt_spinbox_lineedit=true +Widgets\QgsLabelPropertyDialogBase\groupBox\mShowLabelChkbx=true +Widgets\QgsLabelPropertyDialogBase\mBufferGroupBox=true +Widgets\QgsLabelPropertyDialogBase\mBufferGroupBox\mBufferSizeLabel=true +Widgets\QgsLabelPropertyDialogBase\mFontGroupBox=true +Widgets\QgsLabelPropertyDialogBase\mFontGroupBox\label_3=true +Widgets\QgsLabelPropertyDialogBase\mFontGroupBox\mFontSizeLabel=true +Widgets\QgsLabelPropertyDialogBase\mFontGroupBox\mFontStyleCmbBx=true +Widgets\QgsLabelPropertyDialogBase\mLabelTextLabel=true +Widgets\QgsLabelPropertyDialogBase\mLabelTextLineEdit=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mHaliComboBox=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mHaliLabel=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mLabelDistanceLabel=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mRotationLabel=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mValiComboBox=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mValiLabel=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mXCoordLabel=true +Widgets\QgsLabelPropertyDialogBase\mPositionGroupBlox\mYCoordLabel=true +Widgets\QgsLoadStyleFromDBDialogLayout=true +Widgets\QgsLoadStyleFromDBDialogLayout\label=true +Widgets\QgsLoadStyleFromDBDialogLayout\label_2=true +Widgets\QgsLoadStyleFromDBDialogLayout\mCancelButton=true +Widgets\QgsLoadStyleFromDBDialogLayout\mLoadButton=true +Widgets\QgsManageConnectionsDialogBase=true +Widgets\QgsManageConnectionsDialogBase\buttonBox=true +Widgets\QgsManageConnectionsDialogBase\label=true +Widgets\QgsMeasureBase=true +Widgets\QgsMeasureBase\buttonBox=true +Widgets\QgsMeasureBase\editTotal=true +Widgets\QgsMeasureBase\textLabel2=true +Widgets\QgsMergeAttributesDialogBase=true +Widgets\QgsMergeAttributesDialogBase\buttonBox=true +Widgets\QgsMergeAttributesDialogBase\mFromSelectedPushButton=true +Widgets\QgsMergeAttributesDialogBase\mRemoveFeatureFromSelectionButton=true +Widgets\QgsMergeAttributesDialogBase\mRemoveFeatureFromSelectionLabel=true +Widgets\QgsMergeAttributesDialogBase\mTakeSelectedAttributesLabel=true +Widgets\QgsMessageLogViewer=true +Widgets\QgsMessageLogViewer\tabWidget=true +Widgets\QgsMessageViewer=true +Widgets\QgsMessageViewer\buttonBox=true +Widgets\QgsMessageViewer\checkBox=true +Widgets\QgsMessageViewer\txtMessage=true +Widgets\QgsMessageViewer\txtMessage\qt_scrollarea_hcontainer=true +Widgets\QgsMessageViewer\txtMessage\qt_scrollarea_vcontainer=true +Widgets\QgsMessageViewer\txtMessage\qt_scrollarea_viewport=true +Widgets\QgsMssqlNewConnectionBase=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\TextLabel1=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\TextLabel1_2=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\TextLabel2=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\TextLabel3=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\TextLabel3_2=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\btnConnect=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\cb_allowGeometrylessTables=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\cb_geometryColumns=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\cb_trustedConnection=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\cb_useEstimatedMetadata=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\chkStorePassword=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\chkStoreUsername=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\label=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\label_2=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\txtDatabase=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\txtHost=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\txtName=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\txtPassword=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\txtService=true +Widgets\QgsMssqlNewConnectionBase\GroupBox1\txtUsername=true +Widgets\QgsMssqlNewConnectionBase\buttonBox=true +Widgets\QgsMultiBandColorRendererWidgetBase=true +Widgets\QgsMultiBandColorRendererWidgetBase\label=true +Widgets\QgsMultiBandColorRendererWidgetBase\label_2=true +Widgets\QgsMultiBandColorRendererWidgetBase\mBlueBandComboBox=true +Widgets\QgsMultiBandColorRendererWidgetBase\mBlueBandLabel=true +Widgets\QgsMultiBandColorRendererWidgetBase\mBlueMaxLineEdit=true +Widgets\QgsMultiBandColorRendererWidgetBase\mBlueMinLineEdit=true +Widgets\QgsMultiBandColorRendererWidgetBase\mContrastEnhancementAlgorithmComboBox=true +Widgets\QgsMultiBandColorRendererWidgetBase\mContrastEnhancementAlgorithmLabel=true +Widgets\QgsMultiBandColorRendererWidgetBase\mGreenBandComboBox=true +Widgets\QgsMultiBandColorRendererWidgetBase\mGreenBandLabel=true +Widgets\QgsMultiBandColorRendererWidgetBase\mGreenMaxLineEdit=true +Widgets\QgsMultiBandColorRendererWidgetBase\mGreenMinLineEdit=true +Widgets\QgsMultiBandColorRendererWidgetBase\mMinLabel=true +Widgets\QgsMultiBandColorRendererWidgetBase\mRedBandComboBox=true +Widgets\QgsMultiBandColorRendererWidgetBase\mRedBandLabel=true +Widgets\QgsMultiBandColorRendererWidgetBase\mRedMaxLineEdit=true +Widgets\QgsMultiBandColorRendererWidgetBase\mRedMinLineEdit=true +Widgets\QgsNewHttpConnectionBase=true +Widgets\QgsNewHttpConnectionBase\buttonBox=true +Widgets\QgsNewHttpConnectionBase\mGroupBox=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\TextLabel1=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\TextLabel1_2=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\cbxIgnoreAxisOrientation=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\cbxIgnoreGetFeatureInfoURI=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\cbxIgnoreGetMapURI=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\cbxInvertAxisOrientation=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\cbxSmoothPixmapTransform=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\label=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\label_2=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\label_3=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\lblReferer=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\txtName=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\txtPassword=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\txtReferer=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\txtUrl=true +Widgets\QgsNewHttpConnectionBase\mGroupBox\txtUserName=true +Widgets\QgsNewOgrConnectionBase=true +Widgets\QgsNewOgrConnectionBase\GroupBox1=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\TextLabel1=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\TextLabel1_2=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\TextLabel2=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\TextLabel2_2=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\TextLabel3=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\TextLabel3_2=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\btnConnect=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\chkStorePassword=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\cmbDatabaseTypes=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\label=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\txtDatabase=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\txtHost=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\txtName=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\txtPassword=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\txtPort=true +Widgets\QgsNewOgrConnectionBase\GroupBox1\txtUsername=true +Widgets\QgsNewOgrConnectionBase\buttonBox=true +Widgets\QgsNewSpatialiteLayerDialogBase=true +Widgets\QgsNewSpatialiteLayerDialogBase\buttonBox=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1\mLineRadioButton=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1\mMultilineRadioButton=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1\mMultipointRadioButton=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1\mMultipolygonRadioButton=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1\mPointRadioButton=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\buttonGroup1\mPolygonRadioButton=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\checkBoxPrimaryKey=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\mNameEdit=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\mTypeBox=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\textLabel1=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox\textLabel2=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\groupBox_2=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\label=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\label_2=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\leGeometryColumn=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\leLayerName=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\leSRID=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mDatabaseComboBox=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\mFileFormatLabel=true +Widgets\QgsNewSpatialiteLayerDialogBase\scrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents\pbnFindSRID=true +Widgets\QgsNewVectorLayerDialogBase=true +Widgets\QgsNewVectorLayerDialogBase\buttonBox=true +Widgets\QgsNewVectorLayerDialogBase\buttonGroup1=true +Widgets\QgsNewVectorLayerDialogBase\buttonGroup1\mLineRadioButton=true +Widgets\QgsNewVectorLayerDialogBase\buttonGroup1\mPointRadioButton=true +Widgets\QgsNewVectorLayerDialogBase\buttonGroup1\mPolygonRadioButton=true +Widgets\QgsNewVectorLayerDialogBase\groupBox=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\label=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\label_2=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\mNameEdit=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\mPrecision=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\mTypeBox=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\mWidth=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\textLabel1=true +Widgets\QgsNewVectorLayerDialogBase\groupBox\textLabel2=true +Widgets\QgsNewVectorLayerDialogBase\groupBox_2=true +Widgets\QgsNewVectorLayerDialogBase\leSpatialRefSys=true +Widgets\QgsNewVectorLayerDialogBase\mFileFormatComboBox=true +Widgets\QgsNewVectorLayerDialogBase\mFileFormatLabel=true +Widgets\QgsNewVectorLayerDialogBase\pbnChangeSpatialRefSys=true +Widgets\QgsOSMDownloadDialog=true +Widgets\QgsOSMDownloadDialog\buttonBox=true +Widgets\QgsOSMDownloadDialog\editSize=true +Widgets\QgsOSMDownloadDialog\groupBox=true +Widgets\QgsOSMDownloadDialog\groupBox\cboLayers=true +Widgets\QgsOSMDownloadDialog\groupBox\editXMax=true +Widgets\QgsOSMDownloadDialog\groupBox\editXMin=true +Widgets\QgsOSMDownloadDialog\groupBox\editYMax=true +Widgets\QgsOSMDownloadDialog\groupBox\editYMin=true +Widgets\QgsOSMDownloadDialog\groupBox\radExtentCanvas=true +Widgets\QgsOSMDownloadDialog\groupBox\radExtentLayer=true +Widgets\QgsOSMDownloadDialog\groupBox\radExtentManual=true +Widgets\QgsOSMDownloadDialog\groupBox_2=true +Widgets\QgsOSMDownloadDialog\groupBox_2\editFileName=true +Widgets\QgsOSMDownloadDialog\progress=true +Widgets\QgsOSMExportDialog=true +Widgets\QgsOSMExportDialog\buttonBox=true +Widgets\QgsOSMExportDialog\chkLoadWhenFinished=true +Widgets\QgsOSMExportDialog\groupBox=true +Widgets\QgsOSMExportDialog\groupBox\editDbFileName=true +Widgets\QgsOSMExportDialog\groupBox_2=true +Widgets\QgsOSMExportDialog\groupBox_2\editLayerName=true +Widgets\QgsOSMExportDialog\groupBox_3=true +Widgets\QgsOSMExportDialog\groupBox_3\btnLoadTags=true +Widgets\QgsOSMExportDialog\groupBox_4=true +Widgets\QgsOSMExportDialog\groupBox_4\radPoints=true +Widgets\QgsOSMExportDialog\groupBox_4\radPolygons=true +Widgets\QgsOSMExportDialog\groupBox_4\radPolylines=true +Widgets\QgsOSMExportDialog\progressBar=true +Widgets\QgsOSMImportDialog=true +Widgets\QgsOSMImportDialog\buttonBox=true +Widgets\QgsOSMImportDialog\groupBox=true +Widgets\QgsOSMImportDialog\groupBox\editDbFileName=true +Widgets\QgsOSMImportDialog\groupBox_2=true +Widgets\QgsOSMImportDialog\groupBox_2\editXmlFileName=true +Widgets\QgsOSMImportDialog\groupCreateConn=true +Widgets\QgsOSMImportDialog\groupCreateConn\editConnName=true +Widgets\QgsOSMImportDialog\groupCreateConn\label=true +Widgets\QgsOSMImportDialog\progressBar=true +Widgets\QgsOWSSourceSelectBase=true +Widgets\QgsOWSSourceSelectBase\mDialogButtonBox=true +Widgets\QgsOWSSourceSelectBase\mStatusLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayerOrderTab=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayerOrderTab\mLayerDownButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayerOrderTab\mLayerUpButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mAddDefaultButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCRSWidget=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCRSWidget\mCRSLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCRSWidget\mChangeCRSButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCRSWidget\mSelectedCRSLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCacheWidget=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCacheWidget\mCacheComboBox=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mCacheWidget\mCacheLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mConnectButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mConnectionsComboBox=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mDeleteButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mEditButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mFormatWidget=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mFormatWidget\mFormatComboBox=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mFormatWidget\mFormatLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mLoadButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mNewButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mSaveButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mTimeWidget=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mTimeWidget\mTimeComboBox=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mTimeWidget\mTimeLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mFeatureCountLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mFeatureCountLineEdit=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mLayerNameLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mLayerNameLineEdit=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mTileHeightLineEdit=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mTileSizeLabel=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mLayersTab\mWMSGroupBox\mTileWidthLineEdit=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mSearchTab=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mSearchTab\mSearchAddButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mSearchTab\mSearchButton=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mSearchTab\mSearchTermLineEdit=true +Widgets\QgsOWSSourceSelectBase\mTabWidget\mTilesetsTab=true +Widgets\QgsOpenVectorLayerDialogBase=true +Widgets\QgsOpenVectorLayerDialogBase\buttonBox=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\cmbDatabaseTypes=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\groupBox=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\groupBox\btnDelete=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\groupBox\btnEdit=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\groupBox\btnNew=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\groupBox\cmbConnections=true +Widgets\QgsOpenVectorLayerDialogBase\dbGroupBox\label_4=true +Widgets\QgsOpenVectorLayerDialogBase\fileGroupBox=true +Widgets\QgsOpenVectorLayerDialogBase\fileGroupBox\buttonSelectSrc=true +Widgets\QgsOpenVectorLayerDialogBase\fileGroupBox\cmbDirectoryTypes=true +Widgets\QgsOpenVectorLayerDialogBase\fileGroupBox\inputSrcDataset=true +Widgets\QgsOpenVectorLayerDialogBase\fileGroupBox\labelDirectoryType=true +Widgets\QgsOpenVectorLayerDialogBase\fileGroupBox\labelSrcDataset=true +Widgets\QgsOpenVectorLayerDialogBase\protocolGroupBox=true +Widgets\QgsOpenVectorLayerDialogBase\protocolGroupBox\cmbProtocolTypes=true +Widgets\QgsOpenVectorLayerDialogBase\protocolGroupBox\label=true +Widgets\QgsOpenVectorLayerDialogBase\protocolGroupBox\label_2=true +Widgets\QgsOpenVectorLayerDialogBase\protocolGroupBox\protocolURI=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2\cmbEncodings=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2\label_3=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2\radioSrcDatabase=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2\radioSrcDirectory=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2\radioSrcFile=true +Widgets\QgsOpenVectorLayerDialogBase\srcGroupBox_2\radioSrcProtocol=true +Widgets\QgsOptionsBase=true +Widgets\QgsOracleNewConnectionBase=true +Widgets\QgsOracleNewConnectionBase\GroupBox1=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\TextLabel1=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\TextLabel1_2=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\TextLabel2_2=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\TextLabel3=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\TextLabel3_2=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\btnConnect=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\cb_allowGeometrylessTables=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\cb_geometryColumnsOnly=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\cb_onlyExistingTypes=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\cb_useEstimatedMetadata=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\cb_userTablesOnly=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\chkStorePassword=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\chkStoreUsername=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\label=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\txtDatabase=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\txtHost=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\txtName=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\txtPassword=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\txtPort=true +Widgets\QgsOracleNewConnectionBase\GroupBox1\txtUsername=true +Widgets\QgsOracleNewConnectionBase\buttonBox=true +Widgets\QgsPalettedRendererWidgetBase=true +Widgets\QgsPalettedRendererWidgetBase\mBandComboBox=true +Widgets\QgsPalettedRendererWidgetBase\mBandLabel=true +Widgets\QgsPasteTransformationsBase=true +Widgets\QgsPasteTransformationsBase\buttonBox=true +Widgets\QgsPasteTransformationsBase\destinationLayerComboBox=true +Widgets\QgsPasteTransformationsBase\sourceLayerComboBox=true +Widgets\QgsPasteTransformationsBase\textLabel1_2=true +Widgets\QgsPasteTransformationsBase\textLabel3=true +Widgets\QgsPasteTransformationsBase\textLabel4=true +Widgets\QgsPgNewConnectionBase=true +Widgets\QgsPgNewConnectionBase\GroupBox1=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel1=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel1_2=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel2=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel2_2=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel3=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel3_2=true +Widgets\QgsPgNewConnectionBase\GroupBox1\TextLabel3_3=true +Widgets\QgsPgNewConnectionBase\GroupBox1\btnConnect=true +Widgets\QgsPgNewConnectionBase\GroupBox1\cb_allowGeometrylessTables=true +Widgets\QgsPgNewConnectionBase\GroupBox1\cb_dontResolveType=true +Widgets\QgsPgNewConnectionBase\GroupBox1\cb_geometryColumnsOnly=true +Widgets\QgsPgNewConnectionBase\GroupBox1\cb_publicSchemaOnly=true +Widgets\QgsPgNewConnectionBase\GroupBox1\cb_useEstimatedMetadata=true +Widgets\QgsPgNewConnectionBase\GroupBox1\cbxSSLmode=true +Widgets\QgsPgNewConnectionBase\GroupBox1\chkStorePassword=true +Widgets\QgsPgNewConnectionBase\GroupBox1\chkStoreUsername=true +Widgets\QgsPgNewConnectionBase\GroupBox1\label=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtDatabase=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtHost=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtName=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtPassword=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtPort=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtService=true +Widgets\QgsPgNewConnectionBase\GroupBox1\txtUsername=true +Widgets\QgsPgNewConnectionBase\buttonBox=true +Widgets\QgsPluginManagerBase=true +Widgets\QgsPluginManagerBase\buttonBox=true +Widgets\QgsPointDisplacementRendererWidgetBase=true +Widgets\QgsPointDisplacementRendererWidgetBase\mCenterSymbolLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mCenterSymbolPushButton=true +Widgets\QgsPointDisplacementRendererWidgetBase\mDisplacementCirclesGroupBox=true +Widgets\QgsPointDisplacementRendererWidgetBase\mDisplacementCirclesGroupBox\mCircleColorLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mDisplacementCirclesGroupBox\mCircleRadiusLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mDisplacementCirclesGroupBox\mCircleWidthLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mDisplacementCirclesGroupBox\mDistanceToleranceLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mLabelAttributeLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mLabelColorLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mLabelFieldComboBox=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mLabelFontButton=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mMaxScaleDenominatorEdit=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mMaxScaleLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mLabelingGroupBox\mScaleDependentLabelsCheckBox=true +Widgets\QgsPointDisplacementRendererWidgetBase\mRendererComboBox=true +Widgets\QgsPointDisplacementRendererWidgetBase\mRendererLabel=true +Widgets\QgsPointDisplacementRendererWidgetBase\mRendererSettingsButton=true +Widgets\QgsProjectLayerGroupDialogBase=true +Widgets\QgsProjectLayerGroupDialogBase\mButtonBox=true +Widgets\QgsProjectLayerGroupDialogBase\mProjectFileLabel=true +Widgets\QgsProjectLayerGroupDialogBase\mProjectFileLineEdit=true +Widgets\QgsProjectPropertiesBase=true +Widgets\QgsProjectionSelectorBase=true +Widgets\QgsProjectionSelectorBase\label=true +Widgets\QgsProjectionSelectorBase\label_3=true +Widgets\QgsProjectionSelectorBase\label_5=true +Widgets\QgsProjectionSelectorBase\teProjection=true +Widgets\QgsProjectionSelectorBase\teProjection\qt_scrollarea_hcontainer=true +Widgets\QgsProjectionSelectorBase\teProjection\qt_scrollarea_vcontainer=true +Widgets\QgsProjectionSelectorBase\teProjection\qt_scrollarea_viewport=true +Widgets\QgsProjectionSelectorBase\teSelected=true +Widgets\QgsQueryBuilderBase=true +Widgets\QgsQueryBuilderBase\buttonBox=true +Widgets\QgsQueryBuilderBase\groupBox1=true +Widgets\QgsQueryBuilderBase\groupBox1\lstFields=true +Widgets\QgsQueryBuilderBase\groupBox1\lstFields\qt_scrollarea_hcontainer=true +Widgets\QgsQueryBuilderBase\groupBox1\lstFields\qt_scrollarea_vcontainer=true +Widgets\QgsQueryBuilderBase\groupBox1\lstFields\qt_scrollarea_viewport=true +Widgets\QgsQueryBuilderBase\groupBox2=true +Widgets\QgsQueryBuilderBase\groupBox2\btnGetAllValues=true +Widgets\QgsQueryBuilderBase\groupBox2\btnSampleValues=true +Widgets\QgsQueryBuilderBase\groupBox2\lstValues=true +Widgets\QgsQueryBuilderBase\groupBox2\lstValues\qt_scrollarea_hcontainer=true +Widgets\QgsQueryBuilderBase\groupBox2\lstValues\qt_scrollarea_vcontainer=true +Widgets\QgsQueryBuilderBase\groupBox2\lstValues\qt_scrollarea_viewport=true +Widgets\QgsQueryBuilderBase\groupBox2\mUseUnfilteredLayer=true +Widgets\QgsQueryBuilderBase\groupBox3=true +Widgets\QgsQueryBuilderBase\groupBox3\txtSQL=true +Widgets\QgsQueryBuilderBase\groupBox3\txtSQL\qt_scrollarea_hcontainer=true +Widgets\QgsQueryBuilderBase\groupBox3\txtSQL\qt_scrollarea_vcontainer=true +Widgets\QgsQueryBuilderBase\groupBox3\txtSQL\qt_scrollarea_viewport=true +Widgets\QgsQueryBuilderBase\groupBox4=true +Widgets\QgsQueryBuilderBase\groupBox4\btnAnd=true +Widgets\QgsQueryBuilderBase\groupBox4\btnEqual=true +Widgets\QgsQueryBuilderBase\groupBox4\btnGreaterEqual=true +Widgets\QgsQueryBuilderBase\groupBox4\btnGreaterThan=true +Widgets\QgsQueryBuilderBase\groupBox4\btnILike=true +Widgets\QgsQueryBuilderBase\groupBox4\btnIn=true +Widgets\QgsQueryBuilderBase\groupBox4\btnLessEqual=true +Widgets\QgsQueryBuilderBase\groupBox4\btnLessThan=true +Widgets\QgsQueryBuilderBase\groupBox4\btnLike=true +Widgets\QgsQueryBuilderBase\groupBox4\btnNot=true +Widgets\QgsQueryBuilderBase\groupBox4\btnNotEqual=true +Widgets\QgsQueryBuilderBase\groupBox4\btnNotIn=true +Widgets\QgsQueryBuilderBase\groupBox4\btnOr=true +Widgets\QgsQueryBuilderBase\groupBox4\btnPct=true +Widgets\QgsQueryBuilderBase\lblDataUri=true +Widgets\QgsRasterCalcDialogBase=true +Widgets\QgsRasterCalcDialogBase\mButtonBox=true +Widgets\QgsRasterCalcDialogBase\mExpressionTextEdit=true +Widgets\QgsRasterCalcDialogBase\mExpressionTextEdit\qt_scrollarea_hcontainer=true +Widgets\QgsRasterCalcDialogBase\mExpressionTextEdit\qt_scrollarea_vcontainer=true +Widgets\QgsRasterCalcDialogBase\mExpressionTextEdit\qt_scrollarea_viewport=true +Widgets\QgsRasterCalcDialogBase\mExpressionValidLabel=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mACosButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mASinButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mATanButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mAndButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mCloseBracketPushButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mCosButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mDividePushButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mEqualButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mExpButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mGreaterButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mGreaterEqualButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mLessButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mLesserEqualButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mMinusPushButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mMultiplyPushButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mOpenBracketPushButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mOrButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mPlusPushButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mSinButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mSqrtButton=true +Widgets\QgsRasterCalcDialogBase\mOperatorsGroupBox\mTanButton=true +Widgets\QgsRasterCalcDialogBase\mRasterBandsGroupBox=true +Widgets\QgsRasterCalcDialogBase\mRasterCalculatorExpressionLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mAddResultToProjectCheckBox=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mColumnsLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mCurrentLayerExtentButton=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mNColumnsSpinBox=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mNColumnsSpinBox\qt_spinbox_lineedit=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mNRowsSpinBox=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mNRowsSpinBox\qt_spinbox_lineedit=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mOutputFormatComboBox=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mOutputFormatLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mOutputLayerLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mOutputLayerLineEdit=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mOutputLayerPushButton=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mRowsLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mXMaxLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mXMinLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mYMaxLabel=true +Widgets\QgsRasterCalcDialogBase\mResultGroupBox\mYMinLabel=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page\mOptionsAddButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page\mOptionsDeleteButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page\mOptionsHelpButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page\mOptionsValidateButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page_2=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mOptionsStackedWidget\page_2\mOptionsLineEdit=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mProfileButtons=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mProfileButtons\mProfileDeleteButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mProfileButtons\mProfileNewButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mProfileButtons\mProfileResetButton=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mProfileComboBox=true +Widgets\QgsRasterFormatSaveOptionsWidgetBase\mProfileLabel=true +Widgets\QgsRasterHistogramWidgetBase=true +Widgets\QgsRasterHistogramWidgetBase\stackedWidget2=true +Widgets\QgsRasterHistogramWidgetBase\stackedWidget2\page=true +Widgets\QgsRasterHistogramWidgetBase\stackedWidget2\page\btnHistoCompute=true +Widgets\QgsRasterHistogramWidgetBase\stackedWidget2\page1_2=true +Widgets\QgsRasterHistogramWidgetBase\stackedWidget2\page2_2=true +Widgets\QgsRasterHistogramWidgetBase\stackedWidget2\page2_2\mHistogramProgress=true +Widgets\QgsRasterLayerPropertiesBase=true +Widgets\QgsRasterLayerSaveAsDialogBase=true +Widgets\QgsRasterLayerSaveAsDialogBase\label_2=true +Widgets\QgsRasterLayerSaveAsDialogBase\mBrowseButton=true +Widgets\QgsRasterLayerSaveAsDialogBase\mButtonBox=true +Widgets\QgsRasterLayerSaveAsDialogBase\mChangeCrsPushButton=true +Widgets\QgsRasterLayerSaveAsDialogBase\mCrsComboBox=true +Widgets\QgsRasterLayerSaveAsDialogBase\mFormatComboBox=true +Widgets\QgsRasterLayerSaveAsDialogBase\mFormatLabel=true +Widgets\QgsRasterLayerSaveAsDialogBase\mModeLabel=true +Widgets\QgsRasterLayerSaveAsDialogBase\mRawModeRadioButton=true +Widgets\QgsRasterLayerSaveAsDialogBase\mRenderedModeRadioButton=true +Widgets\QgsRasterLayerSaveAsDialogBase\mSaveAsLabel=true +Widgets\QgsRasterLayerSaveAsDialogBase\mSaveAsLineEdit=true +Widgets\QgsRasterLayerSaveAsDialogBase\mScrollArea=true +Widgets\QgsRasterLayerSaveAsDialogBase\mScrollArea\qt_scrollarea_hcontainer=true +Widgets\QgsRasterLayerSaveAsDialogBase\mScrollArea\qt_scrollarea_vcontainer=true +Widgets\QgsRasterLayerSaveAsDialogBase\mScrollArea\qt_scrollarea_viewport=true +Widgets\QgsRasterLayerSaveAsDialogBase\mScrollArea\qt_scrollarea_viewport\scrollAreaWidgetContents=true +Widgets\QgsRasterLayerSaveAsDialogBase\mTileModeCheckBox=true +Widgets\QgsRasterMinMaxWidgetBase=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\label=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\label_2=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mAccuracyGroupBox=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mAccuracyGroupBox\mActualRadioButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mAccuracyGroupBox\mEstimateRadioButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mCumulativeCutRadioButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mExtentGroupBox=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mExtentGroupBox\mCurrentExtentRadioButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mExtentGroupBox\mFullExtentRadioButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mLoadPushButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mMinMaxRadioButton=true +Widgets\QgsRasterMinMaxWidgetBase\mLoadMinMaxValuesGroupBox\mStdDevRadioButton=true +Widgets\QgsRasterPyramidsOptionsWidgetBase=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\cboResamplingMethod=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\cbxPyramidsFormat=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\cbxPyramidsLevelsCustom=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\label_2=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\label_4=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\label_5=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\lePyramidsLevels=true +Widgets\QgsRasterPyramidsOptionsWidgetBase\textLabel4_2=true +Widgets\QgsRendererRulePropsDialog=true +Widgets\QgsRendererRulePropsDialog\btnExpressionBuilder=true +Widgets\QgsRendererRulePropsDialog\btnTestFilter=true +Widgets\QgsRendererRulePropsDialog\buttonBox=true +Widgets\QgsRendererRulePropsDialog\editDescription=true +Widgets\QgsRendererRulePropsDialog\editFilter=true +Widgets\QgsRendererRulePropsDialog\editLabel=true +Widgets\QgsRendererRulePropsDialog\groupScale=true +Widgets\QgsRendererRulePropsDialog\groupScale\label_2=true +Widgets\QgsRendererRulePropsDialog\groupScale\label_3=true +Widgets\QgsRendererRulePropsDialog\groupScale\spinMaxScale=true +Widgets\QgsRendererRulePropsDialog\groupScale\spinMaxScale\qt_spinbox_lineedit=true +Widgets\QgsRendererRulePropsDialog\groupScale\spinMinScale=true +Widgets\QgsRendererRulePropsDialog\groupScale\spinMinScale\qt_spinbox_lineedit=true +Widgets\QgsRendererRulePropsDialog\groupSymbol=true +Widgets\QgsRendererRulePropsDialog\label_1=true +Widgets\QgsRendererRulePropsDialog\label_4=true +Widgets\QgsRendererRulePropsDialog\label_5=true +Widgets\QgsRendererV2PropsDialogBase=true +Widgets\QgsRendererV2PropsDialogBase\buttonBox=true +Widgets\QgsRendererV2PropsDialogBase\cboRenderers=true +Widgets\QgsRendererV2PropsDialogBase\stackedWidget=true +Widgets\QgsRendererV2PropsDialogBase\stackedWidget\pageNoWidget=true +Widgets\QgsRendererV2PropsDialogBase\stackedWidget\pageNoWidget\label=true +Widgets\QgsRuleBasedRendererV2Widget=true +Widgets\QgsRuleBasedRendererV2Widget\btnAddRule=true +Widgets\QgsRuleBasedRendererV2Widget\btnCountFeatures=true +Widgets\QgsRuleBasedRendererV2Widget\btnEditRule=true +Widgets\QgsRuleBasedRendererV2Widget\btnRefineRule=true +Widgets\QgsRuleBasedRendererV2Widget\btnRemoveRule=true +Widgets\QgsRuleBasedRendererV2Widget\btnRenderingOrder=true +Widgets\QgsSaveToDBDialog=true +Widgets\QgsSaveToDBDialog\buttonBox=true +Widgets\QgsSaveToDBDialog\descriptionLabel=true +Widgets\QgsSaveToDBDialog\label=true +Widgets\QgsSaveToDBDialog\mFileNameLabel=true +Widgets\QgsSaveToDBDialog\mNameEdit=true +Widgets\QgsSaveToDBDialog\mUILabel=true +Widgets\QgsSaveToDBDialog\mUseAsDefault=true +Widgets\QgsSaveToDBDialog\nameLabel=true +Widgets\QgsSingleBandGrayRendererWidgetBase=true +Widgets\QgsSingleBandGrayRendererWidgetBase\label=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mContrastEnhancementComboBox=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mContrastEnhancementLabel=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mGradientComboBox=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mGrayBandComboBox=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mGrayBandLabel=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mMaxLabel=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mMaxLineEdit=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mMinLabel=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mMinLineEdit=true +Widgets\QgsSingleBandGrayRendererWidgetBase\mMinMaxContainerWidget=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\label_2=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mClassificationModeComboBox=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mClassificationModeLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mClassifyButton=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mInvertCheckBox=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mMaxLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mMaxLineEdit=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mMinLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mMinLineEdit=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mMinMaxOriginLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mNumberOfEntriesLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mNumberOfEntriesSpinBox=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\grpGenerateColorMap\mNumberOfEntriesSpinBox\qt_spinbox_lineedit=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\mBandComboBox=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\mBandLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\mClipCheckBox=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\mColorInterpolationComboBox=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\mColorInterpolationLabel=true +Widgets\QgsSingleBandPseudoColorRendererWidgetBase\mMinMaxContainerWidget=true +Widgets\QgsSmartGroupConditionWidget=true +Widgets\QgsSmartGroupConditionWidget\label=true +Widgets\QgsSmartGroupConditionWidget\mCondCombo=true +Widgets\QgsSmartGroupConditionWidget\mCondLineEdit=true +Widgets\QgsSmartGroupConditionWidget\mRemoveBtn=true +Widgets\QgsSmartGroupEditorDialogBase=true +Widgets\QgsSmartGroupEditorDialogBase\buttonBox=true +Widgets\QgsSmartGroupEditorDialogBase\label=true +Widgets\QgsSmartGroupEditorDialogBase\label_2=true +Widgets\QgsSmartGroupEditorDialogBase\mAddConditionBtn=true +Widgets\QgsSmartGroupEditorDialogBase\mAndOrCombo=true +Widgets\QgsSmartGroupEditorDialogBase\mConditionsBox=true +Widgets\QgsSmartGroupEditorDialogBase\mNameLineEdit=true +Widgets\QgsSnappingDialogBase=true +Widgets\QgsSnappingDialogBase\cbxEnableIntersectionSnappingCheckBox=true +Widgets\QgsSnappingDialogBase\cbxEnableTopologicalEditingCheckBox=true +Widgets\QgsSnappingDialogBase\mButtonBox=true +Widgets\QgsSpatialiteSridsDialogBase=true +Widgets\QgsSpatialiteSridsDialogBase\buttonBox=true +Widgets\QgsSpatialiteSridsDialogBase\groupBox=true +Widgets\QgsSpatialiteSridsDialogBase\groupBox\radioButtonName=true +Widgets\QgsSpatialiteSridsDialogBase\groupBox\radioButtonSrid=true +Widgets\QgsSpatialiteSridsDialogBase\label=true +Widgets\QgsSpatialiteSridsDialogBase\leSearch=true +Widgets\QgsSpatialiteSridsDialogBase\pbnFilter=true +Widgets\QgsSponsorsBase=true +Widgets\QgsSponsorsBase\buttonBox=true +Widgets\QgsSponsorsBase\qgisIcon=true +Widgets\QgsSponsorsBase\txtSponsors=true +Widgets\QgsSponsorsBase\txtSponsors\qt_scrollarea_hcontainer=true +Widgets\QgsSponsorsBase\txtSponsors\qt_scrollarea_vcontainer=true +Widgets\QgsSponsorsBase\txtSponsors\qt_scrollarea_viewport=true +Widgets\QgsStyleV2ExportImportDialogBase=true +Widgets\QgsStyleV2ExportImportDialogBase\btnBrowse=true +Widgets\QgsStyleV2ExportImportDialogBase\buttonBox=true +Widgets\QgsStyleV2ExportImportDialogBase\fromLabel=true +Widgets\QgsStyleV2ExportImportDialogBase\groupCombo=true +Widgets\QgsStyleV2ExportImportDialogBase\groupLabel=true +Widgets\QgsStyleV2ExportImportDialogBase\importTypeCombo=true +Widgets\QgsStyleV2ExportImportDialogBase\label=true +Widgets\QgsStyleV2ExportImportDialogBase\listItems=true +Widgets\QgsStyleV2ExportImportDialogBase\listItems\qt_scrollarea_hcontainer=true +Widgets\QgsStyleV2ExportImportDialogBase\listItems\qt_scrollarea_vcontainer=true +Widgets\QgsStyleV2ExportImportDialogBase\listItems\qt_scrollarea_viewport=true +Widgets\QgsStyleV2ExportImportDialogBase\locationLabel=true +Widgets\QgsStyleV2ExportImportDialogBase\locationLineEdit=true +Widgets\QgsStyleV2ManagerDialogBase=true +Widgets\QgsSublayersDialogBase=true +Widgets\QgsSublayersDialogBase\buttonBox=true +Widgets\QgsSymbolLevelsDialogBase=true +Widgets\QgsSymbolLevelsDialogBase\buttonBox=true +Widgets\QgsSymbolLevelsDialogBase\chkEnable=true +Widgets\QgsSymbolLevelsDialogBase\label=true +Widgets\QgsSymbolSelectorDialogBase=true +Widgets\QgsSymbolSelectorDialogBase\btnAddLayer=true +Widgets\QgsSymbolSelectorDialogBase\btnDown=true +Widgets\QgsSymbolSelectorDialogBase\btnLock=true +Widgets\QgsSymbolSelectorDialogBase\btnRemoveLayer=true +Widgets\QgsSymbolSelectorDialogBase\btnUp=true +Widgets\QgsSymbolSelectorDialogBase\buttonBox=true +Widgets\QgsSymbolSelectorDialogBase\label_3=true +Widgets\QgsSymbolSelectorDialogBase\lblPreview=true +Widgets\QgsTextAnnotationDialogBase=true +Widgets\QgsTextAnnotationDialogBase\mBoldPushButton=true +Widgets\QgsTextAnnotationDialogBase\mButtonBox=true +Widgets\QgsTextAnnotationDialogBase\mFontSizeSpinBox=true +Widgets\QgsTextAnnotationDialogBase\mFontSizeSpinBox\qt_spinbox_lineedit=true +Widgets\QgsTextAnnotationDialogBase\mItalicsPushButton=true +Widgets\QgsTextAnnotationDialogBase\mStackedWidget=true +Widgets\QgsTextAnnotationDialogBase\mStackedWidget\page=true +Widgets\QgsTextAnnotationDialogBase\mStackedWidget\page_2=true +Widgets\QgsTextAnnotationDialogBase\mTextEdit=true +Widgets\QgsTextAnnotationDialogBase\mTextEdit\qt_scrollarea_hcontainer=true +Widgets\QgsTextAnnotationDialogBase\mTextEdit\qt_scrollarea_vcontainer=true +Widgets\QgsTextAnnotationDialogBase\mTextEdit\qt_scrollarea_viewport=true +Widgets\QgsTileScaleWidget=true +Widgets\QgsTileScaleWidget\mSlider=true +Widgets\QgsTipGuiBase=true +Widgets\QgsTipGuiBase\buttonBox=true +Widgets\QgsTipGuiBase\cbxDisableTips=true +Widgets\QgsTipGuiBase\txtTip=true +Widgets\QgsTipGuiBase\txtTip\qt_scrollarea_hcontainer=true +Widgets\QgsTipGuiBase\txtTip\qt_scrollarea_vcontainer=true +Widgets\QgsTipGuiBase\txtTip\qt_scrollarea_viewport=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\buttonBox=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\cboColors=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\cboSchemeName=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\groupBox=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\groupBox\lblPreview=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\label=true +Widgets\QgsVectorColorBrewerColorRampV2DialogBase\label_2=true +Widgets\QgsVectorGradientColorRampV2DialogBase=true +Widgets\QgsVectorGradientColorRampV2DialogBase\btnInformation=true +Widgets\QgsVectorGradientColorRampV2DialogBase\buttonBox=true +Widgets\QgsVectorGradientColorRampV2DialogBase\cboType=true +Widgets\QgsVectorGradientColorRampV2DialogBase\groupBox=true +Widgets\QgsVectorGradientColorRampV2DialogBase\groupBox\lblPreview=true +Widgets\QgsVectorGradientColorRampV2DialogBase\groupStops=true +Widgets\QgsVectorGradientColorRampV2DialogBase\groupStops\btnAddStop=true +Widgets\QgsVectorGradientColorRampV2DialogBase\groupStops\btnRemoveStop=true +Widgets\QgsVectorGradientColorRampV2DialogBase\label=true +Widgets\QgsVectorGradientColorRampV2DialogBase\label_2=true +Widgets\QgsVectorGradientColorRampV2DialogBase\label_3=true +Widgets\QgsVectorLayerPropertiesBase=true +Widgets\QgsVectorLayerSaveAsDialogBase=true +Widgets\QgsVectorLayerSaveAsDialogBase\browseCRS=true +Widgets\QgsVectorLayerSaveAsDialogBase\browseFilename=true +Widgets\QgsVectorLayerSaveAsDialogBase\buttonBox=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\label_5=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\label_6=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mAddToCanvas=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrDatasourceOptions=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrDatasourceOptions\qt_scrollarea_hcontainer=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrDatasourceOptions\qt_scrollarea_vcontainer=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrDatasourceOptions\qt_scrollarea_viewport=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrLayerOptions=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrLayerOptions\qt_scrollarea_hcontainer=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrLayerOptions\qt_scrollarea_vcontainer=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mOgrLayerOptions\qt_scrollarea_viewport=true +Widgets\QgsVectorLayerSaveAsDialogBase\groupBox\mSkipAttributeCreation=true +Widgets\QgsVectorLayerSaveAsDialogBase\label=true +Widgets\QgsVectorLayerSaveAsDialogBase\label_2=true +Widgets\QgsVectorLayerSaveAsDialogBase\label_3=true +Widgets\QgsVectorLayerSaveAsDialogBase\label_4=true +Widgets\QgsVectorLayerSaveAsDialogBase\leCRS=true +Widgets\QgsVectorLayerSaveAsDialogBase\leFilename=true +Widgets\QgsVectorLayerSaveAsDialogBase\mCRSSelection=true +Widgets\QgsVectorLayerSaveAsDialogBase\mEncodingComboBox=true +Widgets\QgsVectorLayerSaveAsDialogBase\mFormatComboBox=true +Widgets\QgsVectorLayerSaveAsDialogBase\mScaleLabel=true +Widgets\QgsVectorLayerSaveAsDialogBase\mScaleSpinBox=true +Widgets\QgsVectorLayerSaveAsDialogBase\mScaleSpinBox\qt_spinbox_lineedit=true +Widgets\QgsVectorLayerSaveAsDialogBase\mSymbologyExportComboBox=true +Widgets\QgsVectorLayerSaveAsDialogBase\mSymbologyExportLabel=true +Widgets\QgsVectorRandomColorRampV2DialogBase=true +Widgets\QgsVectorRandomColorRampV2DialogBase\buttonBox=true +Widgets\QgsVectorRandomColorRampV2DialogBase\groupBox=true +Widgets\QgsVectorRandomColorRampV2DialogBase\groupBox\lblPreview=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_10=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_2=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_3=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_4=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_5=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_6=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_7=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_8=true +Widgets\QgsVectorRandomColorRampV2DialogBase\label_9=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinCount=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinCount\qt_spinbox_lineedit=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinHue1=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinHue1\qt_spinbox_lineedit=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinHue2=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinHue2\qt_spinbox_lineedit=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinSat1=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinSat1\qt_spinbox_lineedit=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinSat2=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinSat2\qt_spinbox_lineedit=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinVal1=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinVal1\qt_spinbox_lineedit=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinVal2=true +Widgets\QgsVectorRandomColorRampV2DialogBase\spinVal2\qt_spinbox_lineedit=true +Widgets\QgsWFSSourceSelectBase=true +Widgets\QgsWFSSourceSelectBase\GroupBox1=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\btnConnect=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\btnDelete=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\btnEdit=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\btnLoad=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\btnNew=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\btnSave=true +Widgets\QgsWFSSourceSelectBase\GroupBox1\cmbConnections=true +Widgets\QgsWFSSourceSelectBase\buttonBox=true +Widgets\QgsWFSSourceSelectBase\cbxUseTitleLayerName=true +Widgets\QgsWFSSourceSelectBase\gbCRS=true +Widgets\QgsWFSSourceSelectBase\gbCRS\btnChangeSpatialRefSys=true +Widgets\QgsWFSSourceSelectBase\gbCRS\labelCoordRefSys=true +Widgets\QgsWFSSourceSelectBase\labelFilter=true +Widgets\QgsWFSSourceSelectBase\lineFilter=true +Widgets\QgsWMSSourceSelectBase=true +Widgets\QgsWMSSourceSelectBase\buttonBox=true +Widgets\QgsWMSSourceSelectBase\labelStatus=true +Widgets\QgsWMSSourceSelectBase\tabServers=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayerOrder=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayerOrder\mLayerDownButton=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayerOrder\mLayerUpButton=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnAddDefault=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnConnect=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnDelete=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnEdit=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnGrpImageEncoding=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnLoad=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnNew=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\btnSave=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\cmbConnections=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\btnChangeSpatialRefSys=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\label=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\labelCoordRefSys=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\label_2=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\label_3=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\label_4=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\leLayerName=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\mFeatureCount=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\mStepHeight=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\mStepWidth=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\mTileHeight=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabLayers\gbCRS\mTileWidth=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabServerSearch=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabServerSearch\btnAddWMS=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabServerSearch\btnSearch=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabServerSearch\leSearchTerm=true +Widgets\QgsWMSSourceSelectBase\tabServers\tabTilesets=true +Widgets\QgsWmtsDimensionsBase=true +Widgets\QgsWmtsDimensionsBase\buttonBox=true +Widgets\SimplifyLineDialog=true +Widgets\SimplifyLineDialog\horizontalSlider=true +Widgets\SimplifyLineDialog\label=true +Widgets\SimplifyLineDialog\okButton=true +Widgets\SimplifyLineDialog\spinBox=true +Widgets\SimplifyLineDialog\spinBox\qt_spinbox_lineedit=true +splashpath=%PROFILE_FOLDER%/ +status=1 diff --git a/init/data_structure.png b/init/data_structure.png new file mode 100644 index 0000000000000000000000000000000000000000..c2de86f507129fd6054d7532b6efb0e04eab9192 GIT binary patch literal 82113 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 T@ITG~{r$W7T@KRxarFNH{1BN} literal 0 HcmV?d00001 diff --git a/python/expressions/__init__.py b/python/expressions/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python/plugins/moFa4Q_plugin/__init__.py b/python/plugins/moFa4Q_plugin/__init__.py new file mode 100644 index 0000000..750e850 --- /dev/null +++ b/python/plugins/moFa4Q_plugin/__init__.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +""" +/*************************************************************************** + MoFa4QPlugin + A QGIS plugin + MoFa4QPlugin + Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/ + ------------------- + begin : 2019-06-25 + copyright : (C) 2019 by MoFa4QPlugin + email : _ + git sha : $Format:%H$ + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + This script initializes the plugin, making it known to QGIS. +""" + + +# noinspection PyPep8Naming +def classFactory(iface): # pylint: disable=invalid-name + """Load MoFa4QPlugin class from file MoFa4QPlugin. + + :param iface: A QGIS interface instance. + :type iface: QgsInterface + """ + # + from .moFa4Q_plugin import MoFa4QPlugin + return MoFa4QPlugin(iface) diff --git a/python/plugins/moFa4Q_plugin/annotations.yaml b/python/plugins/moFa4Q_plugin/annotations.yaml new file mode 100644 index 0000000..e69de29 diff --git a/python/plugins/moFa4Q_plugin/components/__init__.py b/python/plugins/moFa4Q_plugin/components/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python/plugins/moFa4Q_plugin/components/btn_tool_map.py b/python/plugins/moFa4Q_plugin/components/btn_tool_map.py new file mode 100644 index 0000000..159155d --- /dev/null +++ b/python/plugins/moFa4Q_plugin/components/btn_tool_map.py @@ -0,0 +1,18 @@ +from dataclasses import dataclass, field +from typing import Callable + +from PyQt5.QtWidgets import QPushButton + + +@dataclass +class BtnToolMap: + """Class for associate a map button with its own tool (if exists).""" + name: str + iconPath: str + btn: QPushButton + fn: Callable + checkable: bool + # isLeft: bool = field(default=False, init=False) + isAnnotation: bool = field(default=False, init=False) + tool: any = field(default=None, init=False) + additionalTool: any = field(default=None, init=False) diff --git a/python/plugins/moFa4Q_plugin/components/custom_list_widget.py b/python/plugins/moFa4Q_plugin/components/custom_list_widget.py new file mode 100644 index 0000000..2c86ffc --- /dev/null +++ b/python/plugins/moFa4Q_plugin/components/custom_list_widget.py @@ -0,0 +1,64 @@ +from PyQt5.QtWidgets import QTreeWidgetItem, QListWidgetItem, QTreeWidget +from qgis.core import QgsProject, QgsMapLayer, QgsLayerTreeGroup + + +class CustomQTreeWidgetItem(QTreeWidgetItem): + """Custom QTreeWidgetItem class with additional info regarding layer id and name and value of checkbox""" + + def __init__(self, id: str, name: str, checked: bool, layerTree: QTreeWidget): + super().__init__() + self.__id: str = id + self.__name: str = name + self.__checked: bool = checked + self.__layerTree: QTreeWidget = layerTree + + @property + def id(self) -> int: + return self.__id + + @id.setter + def id(self, id: int): + self.__id = id + + @property + def name(self) -> str: + return self.__name + + @property + def checked(self) -> bool: + return self.__checked + + @checked.setter + def checked(self, checked: bool): + self.__checked = checked + # print('self.__id', self.__id) + layer: QgsMapLayer = QgsProject.instance().layerTreeRoot().findLayer(str(self.__id)) + # Layer item was toggled + if layer: + layer.setItemVisibilityChecked(checked) + + else: + root = QgsProject.instance().layerTreeRoot() + group: QgsLayerTreeGroup = root.findGroup(str(self.__id)) + group.setItemVisibilityChecked(self.__checked) + + @property + def layerTree(self) -> QTreeWidget: + return self.__layerTree + + +class CustomQListWidgetItem(QListWidgetItem): + id = 0 + checked = False + + def setId(self, id): + self.id = id + + def getId(self): + return self.id + + def setChecked(self, checked): + self.checked = checked + + def isChecked(self): + return self.checked diff --git a/python/plugins/moFa4Q_plugin/components/dialog_for_geom.ui b/python/plugins/moFa4Q_plugin/components/dialog_for_geom.ui new file mode 100644 index 0000000..06c2481 --- /dev/null +++ b/python/plugins/moFa4Q_plugin/components/dialog_for_geom.ui @@ -0,0 +1,327 @@ + + + Dialog + + + + 0 + 0 + 426 + 294 + + + + Dialog + + + + + 10 + 10 + 401 + 281 + + + + + + + + + + 0 + 0 + + + + + 0 + 50 + + + + Linie Größe + + + + + + + + 0 + 0 + + + + + 250 + 0 + + + + + 0.25 + + + + + 0.5 + + + + + 0.75 + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + + + + + + + + + 0 + 50 + + + + Typ + + + + + + + + 0 + 0 + + + + + 250 + 0 + + + + + Durchgezogene Linie + + + + + Gestrichelte Linie + + + + + Strichpunktierte Linie + + + + + + + + + + + + + 0 + 50 + + + + Deckkraft + + + + + + + + 0 + 0 + + + + + 250 + 0 + + + + + 0.1 + + + + + 0.25 + + + + + 0.5 + + + + + 0.75 + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 20 + 20 + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + buttonBox + accepted() + Dialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + Dialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/python/plugins/moFa4Q_plugin/components/geopackages_dialog.ui b/python/plugins/moFa4Q_plugin/components/geopackages_dialog.ui new file mode 100644 index 0000000..b306a09 --- /dev/null +++ b/python/plugins/moFa4Q_plugin/components/geopackages_dialog.ui @@ -0,0 +1,99 @@ + + + Dialog + + + + 0 + 0 + 476 + 181 + + + + Info + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + 13 + + + + + + + Qt::AlignCenter + + + + + + + 15 + + + 10 + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + 13 + + + + Synch-Tool öffnen + + + + + + + + 13 + + + + Abbrechen + + + + + + + + + + diff --git a/python/plugins/moFa4Q_plugin/components/input_dialog_for_text_bubble.ui b/python/plugins/moFa4Q_plugin/components/input_dialog_for_text_bubble.ui new file mode 100644 index 0000000..3fcfef5 --- /dev/null +++ b/python/plugins/moFa4Q_plugin/components/input_dialog_for_text_bubble.ui @@ -0,0 +1,137 @@ + + + Dialog + + + + 0 + 0 + 400 + 243 + + + + Dialog + + + + + 20 + 200 + 361 + 32 + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + 20 + 10 + 361 + 181 + + + + + + + + + Nachricht eingeben + + + + + + + + + + + + + + Sprechblase + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + buttonBox + accepted() + Dialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + Dialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/python/plugins/moFa4Q_plugin/components/left_panel.ui b/python/plugins/moFa4Q_plugin/components/left_panel.ui new file mode 100644 index 0000000..8884814 --- /dev/null +++ b/python/plugins/moFa4Q_plugin/components/left_panel.ui @@ -0,0 +1,1300 @@ + + + Form + + + + 0 + 0 + 442 + 821 + + + + Form + + + + + + + 0 + 0 + + + + + 13 + + + + ArrowCursor + + + QToolBox::tab {color: darkgray;} +QToolBox::tab:selected {color: black;} + + + 0 + + + 6 + + + + + 0 + 0 + 387 + 633 + + + + + 0 + 0 + + + + ArrowCursor + + + Layerauswahl + + + + + + + + + + 0 + 0 + + + + 0 + + + + + 0 + 0 + 369 + 521 + + + + + 11 + + + + Öffentliche Layer + + + + true + + + + 0 + 0 + 369 + 511 + + + + + 50 + false + + + + + + + false + + + true + + + 100 + + + true + + + + 1 + + + + + + + + 0 + 0 + 369 + 521 + + + + Private Layer + + + + + 0 + 0 + 369 + 521 + + + + true + + + + 1 + + + + + + + + + + + + + + + 0 + 0 + 387 + 633 + + + + + 0 + 0 + + + + Datenquellen + + + + + + true + + + + + 0 + 0 + 367 + 613 + + + + + + + Geopackage als Layer + + + + + + + + + + Verfügbare Geopackage + + + + + + + + + + Neues Geopackage hinzufügen + + + + + + + + + + 0 + 0 + + + + + + + + Laden + + + + + + + + + + + + + + + 0 + 0 + 387 + 633 + + + + Adresssuche + + + + + + + + + + + 0 + 0 + 0 + + + + + + + 194 + 193 + 193 + + + + + + + 255 + 255 + 255 + + + + + + + 224 + 224 + 224 + + + + + + + 97 + 96 + 96 + + + + + + + 129 + 129 + 129 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 194 + 193 + 193 + + + + + + + 0 + 0 + 0 + + + + + + + 224 + 224 + 224 + + + + + + + 255 + 255 + 220 + + + + + + + 0 + 0 + 0 + + + + + + + 0 + 0 + 0 + + + + + + + + + 0 + 0 + 0 + + + + + + + 194 + 193 + 193 + + + + + + + 255 + 255 + 255 + + + + + + + 224 + 224 + 224 + + + + + + + 97 + 96 + 96 + + + + + + + 129 + 129 + 129 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 194 + 193 + 193 + + + + + + + 0 + 0 + 0 + + + + + + + 224 + 224 + 224 + + + + + + + 255 + 255 + 220 + + + + + + + 0 + 0 + 0 + + + + + + + 0 + 0 + 0 + + + + + + + + + 97 + 96 + 96 + + + + + + + 194 + 193 + 193 + + + + + + + 255 + 255 + 255 + + + + + + + 224 + 224 + 224 + + + + + + + 97 + 96 + 96 + + + + + + + 129 + 129 + 129 + + + + + + + 97 + 96 + 96 + + + + + + + 255 + 255 + 255 + + + + + + + 97 + 96 + 96 + + + + + + + 194 + 193 + 193 + + + + + + + 194 + 193 + 193 + + + + + + + 0 + 0 + 0 + + + + + + + 194 + 193 + 193 + + + + + + + 255 + 255 + 220 + + + + + + + 0 + 0 + 0 + + + + + + + 0 + 0 + 0 + + + + + + + + + + + + + + + + 0 + 0 + + + + Auf der Karte anzeigen + + + + + + + Qt::Vertical + + + + 20 + 552 + + + + + + + + + + 0 + 0 + 387 + 633 + + + + Objektsuche + + + + + + + + + + + 0 + 0 + 0 + + + + + + + 194 + 193 + 193 + + + + + + + 255 + 255 + 255 + + + + + + + 224 + 224 + 224 + + + + + + + 97 + 96 + 96 + + + + + + + 129 + 129 + 129 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 194 + 193 + 193 + + + + + + + 0 + 0 + 0 + + + + + + + 224 + 224 + 224 + + + + + + + 255 + 255 + 220 + + + + + + + 0 + 0 + 0 + + + + + + + 0 + 0 + 0 + + + + + + + + + 0 + 0 + 0 + + + + + + + 194 + 193 + 193 + + + + + + + 255 + 255 + 255 + + + + + + + 224 + 224 + 224 + + + + + + + 97 + 96 + 96 + + + + + + + 129 + 129 + 129 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 194 + 193 + 193 + + + + + + + 0 + 0 + 0 + + + + + + + 224 + 224 + 224 + + + + + + + 255 + 255 + 220 + + + + + + + 0 + 0 + 0 + + + + + + + 0 + 0 + 0 + + + + + + + + + 97 + 96 + 96 + + + + + + + 194 + 193 + 193 + + + + + + + 255 + 255 + 255 + + + + + + + 224 + 224 + 224 + + + + + + + 97 + 96 + 96 + + + + + + + 129 + 129 + 129 + + + + + + + 97 + 96 + 96 + + + + + + + 255 + 255 + 255 + + + + + + + 97 + 96 + 96 + + + + + + + 194 + 193 + 193 + + + + + + + 194 + 193 + 193 + + + + + + + 0 + 0 + 0 + + + + + + + 194 + 193 + 193 + + + + + + + 255 + 255 + 220 + + + + + + + 0 + 0 + 0 + + + + + + + 0 + 0 + 0 + + + + + + + + + + + + + + + + 0 + 0 + + + + Auf der Karte anzeigen + + + + + + + Qt::Vertical + + + + 20 + 552 + + + + + + + + + + 0 + 0 + 387 + 633 + + + + AppInfo + + + + + + + + + + + + + + + + + + 0 + 0 + + + + + MS Gothic + 10 + 75 + true + + + + << + + + + + + + + QgsExternalResourceWidget + QWidget +

qgsexternalresourcewidget.h
+ + + + + + + diff --git a/python/plugins/moFa4Q_plugin/components/measure_dialog.ui b/python/plugins/moFa4Q_plugin/components/measure_dialog.ui new file mode 100644 index 0000000..7aca5bf --- /dev/null +++ b/python/plugins/moFa4Q_plugin/components/measure_dialog.ui @@ -0,0 +1,80 @@ + + + Dialog + + + + 0 + 0 + 415 + 326 + + + + Geodesic Measure Tool + + + + + + true + + + + + + + + + Gesamtdistanz + + + + + + + true + + + + + + + + + 15 + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Reset + + + + + + + Abbrechen + + + + + + + + + + diff --git a/python/plugins/moFa4Q_plugin/components/print_dialog.ui b/python/plugins/moFa4Q_plugin/components/print_dialog.ui new file mode 100644 index 0000000..72ee610 --- /dev/null +++ b/python/plugins/moFa4Q_plugin/components/print_dialog.ui @@ -0,0 +1,396 @@ + + + Dialog + + + + 0 + 0 + 415 + 398 + + + + Drucken + + + + + + 0 + + + 5 + + + 5 + + + + + + 0 + 0 + + + + + 13 + + + + Druckoptionen: + + + + + + + + + 5 + + + 5 + + + + + + 13 + + + + + A4 Hochformat + + + + + A4 Querformat + + + + + A3 Querformat + + + + + A2 Querformat + + + + + A1 Querformat + + + + + A0 Querformat + + + + + + + + + + QLayout::SetMaximumSize + + + 5 + + + 5 + + + + + + 13 + + + + Maßstab + + + + + + + + 0 + 0 + + + + + 13 + + + + + 1:100 + + + + + 1:150 + + + + + 1:200 + + + + + 1:250 + + + + + 1:500 + + + + + 1:750 + + + + + 1:1000 + + + + + 1:1500 + + + + + 1:2000 + + + + + 1:2500 + + + + + 1:5000 + + + + + 1:7500 + + + + + 1:10000 + + + + + + + + + + QLayout::SetMaximumSize + + + 5 + + + 5 + + + + + + 13 + + + + Drehung + + + + + + + Qt::Horizontal + + + + + + + + 0 + 0 + + + + + 60 + 16777215 + + + + + 13 + + + + + + + + + + 5 + + + 10 + + + + + + 13 + + + + File + + + + + + + + 20 + + + + + + + + + + + 13 + + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + 13 + + + + + + + Qt::AlignCenter + + + + + + + 15 + + + 10 + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + 13 + + + + Drucken + + + + + + + + 13 + + + + Pdf-Export + + + + + + + + 13 + + + + Abbrechen + + + + + + + + + + QgsFileWidget + QWidget +
qgsfilewidget.h
+
+
+ + +
diff --git a/python/plugins/moFa4Q_plugin/i18n/lng_en.qm b/python/plugins/moFa4Q_plugin/i18n/lng_en.qm new file mode 100644 index 0000000000000000000000000000000000000000..7e37c74219de26e3a99162518ddcb97f9e45bc0f GIT binary patch literal 3488 zcmb_eU1%It6uz5mH=AUW_Mw)bL9be+v`vuUON&U;q=~UfEoo6{XzA?Eot^2<-r3Gi zw%O8(;DaDmUy6c75L$~b`c|se3XM>z^i}9Xg;o&6U&IGdANv?-}Wt9$Uv)?$@646Mrz4{V4m@Z`W`?m%V%EG-G|m+>WVlaKD_p^U^S5z0dVE z-v1DOuIHod8}Pe5zqLU9}X_dQwo_#&S7UMl=`{Q_eJKGbvk z4E*w;yW3pEe`VDUP{3Qzig?Re1WSQcfcHrPSithmQ@Nn*Q7A}A5)kS zwu=tL85V`@6@}cHn%5ILFAM#4RUr-h5+Z8C3XlkPLUAEPfs;;;5~gV*6b=_BoFH_B zAM&E`g%buTy*-u^sDv^^2xhjGBJL%aSFcz?@&m|d&h`c0jWj?GryR*LDA7%aiIi+?H5{B# z214<(BMZ&Pk)&|-2$bVZI4NPqQ^M4nVOrd=R5>IOUx#>TZHSl&Wno32dRjuy>PR$1 z!~@a*DnDllGrARF7B1NIeM%S>n#TL?v2)K|~jE@~e)0!)duU{-iFqf{}&S z>;RZi!Y5V$i+G|P5AN|T&n<&$CA+&f=hy-u5rJcAi?srZpi&`Phwv7U90#vR(%QS` zAZhAf2u4xrRD|uYsHw7$HF<6zh6nB?BI@Bkc{LUCR&@H6cv4lo@O2JH_XJ$EU-GK3 zeQvk`29(bTBaFa62W<)+%V`i%$N6q2LEgeYS%g;1t{<@5dEGwoZXWgIP|hFiD;p)~BFSrHi3&~jJLV^ioxpJS6~rm5`* zpK)X(vR1F87G{F&L&WxJ>8942+0vdz_M(}s2{EFeH8d%cQDD<(9TgAbsU76!S1$!f zBBfz=>Nt>85;c=OJZ%(c5NHI*mXzRL=Y>Rlwk&|qP|)T%AaJDFei*=x??^@K?vis* zR6snzoY?f>UT3`B*TxViopj4dXtr(-eVI;tRqEXmSsFo=aHTJ&$&< z(S&b0MK!T$Urj!mkVwqmS|0;!QQ<-<^on(hA`szP%h8y(O^Krt67QPFC%twsJ`$+| z5qZeYcz#vYVHoRc_{^bp*j@CBzR6l`PFh~4HMNY6WwEXhuaXmG6;W$?{ieyt;wH`| zdkr6bYuA`0_z3t-!bHc-08Xj!Y8TLM3Zw$^cqCjm?qRYx4`m_guWDoUt`qR%siH&& zTq@N(e%0| + + + + @default + + + Mehrere Layer sind im Projekt definiert. + More than one layer has been defined in the project. + + + + Der Layer im Projekt is kein Raster-Layer. + The layer in the project is not a raster layer. + + + + Fehler + Error + + + + Die Datei existiert bereits. + The file already exists. + + + + Die Datei wurde nicht gefunden. + The file was not found. + + + + Erfolgreich + Successful + + + + Die Datei wurde kopiert. + The file has been copied. + + + + Die Adressensuche kann nicht verwendet werden. {} + The address search can not be used. {} + + + + Die Adressensuche kann nicht verwendet werden. Fehler nicht behoben: {} + The address search can not be used. Error not resolved: {} + + + + Segmente [Meter] + Segments [Meter] + + + + Geopackage-Datei {} nicht gefunden. + Geopackage-File {} not found. + + + + Löschen + Delete + + + + Hinzufügen + Add + + + + Keine Datei ausgewählt. + No file has been selected + + + + Die gewählte Datei ist kein Geopackage. + The selected file is not a Geopackage + + + + Die Datei konnte nicht kopiert werden. Prüfen Sie Ihre Berechtigungen. + The file could not be copied. Check your permissions. + + + + Gesamtfläche + Total surface + + + + Es wurden mehr als {} Feature identifiziert. Bitte zoomen Sie hinein um die Anzahl zu verringern + More than {} features has been identified, please zoom in to reduce the number + + + + Feature anzeigen + Show feature + + + + Dialog + + + Geodesic Measure Tool + Geodesic Measure Tool + + + + Gesamtdistanz + Total distance + + + + Reset + Reset + + + + Abbrechen + Cancel + + + + Form + + + Form + Form + + + + Layerauswahl + Layer selection + + + + Datenquellen + Data sources + + + + Geopackage als Layer + Geopackage as Layer + + + + Laden + Load + + + + Adresssuche + Address search + + + + Auf der Karte anzeigen + Show on the map + + + + AppInfo + App Information + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:11pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> + + + + + << + + + + + Verfügbare Geopackage + Available geopackage + + + + Neues Geopackage hinzufügen + Add new geopackage + + + + Objektsuche + Object search + + + + Öffentliche Layer + Public Layers + + + + Private Layer + Private Layer + + + + Luftbilder + Aerial photos + + + + Annotations/Notizen + Annotations/Notes + + + + Alle löschen + Clear all + + + diff --git a/python/plugins/moFa4Q_plugin/icons/area_icon.png b/python/plugins/moFa4Q_plugin/icons/area_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..262fe248f5c7df6d1e6310b745978c5781580020 GIT binary patch literal 17181 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 G{Qm%rBCF5< literal 0 HcmV?d00001 diff --git a/python/plugins/moFa4Q_plugin/icons/branch_closed.png b/python/plugins/moFa4Q_plugin/icons/branch_closed.png new file mode 100644 index 0000000000000000000000000000000000000000..951305009cd9497b60fb732d912122627d299a30 GIT binary patch literal 19540 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 B9tr>e literal 0 HcmV?d00001 diff --git a/python/plugins/moFa4Q_plugin/icons/branch_closed_v1.png b/python/plugins/moFa4Q_plugin/icons/branch_closed_v1.png new file mode 100644 index 0000000000000000000000000000000000000000..7026a95140cc4a9294e3ffaf8a2c2879ca1d5197 GIT binary patch literal 5323 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 literal 0 HcmV?d00001 diff --git a/python/plugins/moFa4Q_plugin/icons/branch_open.png b/python/plugins/moFa4Q_plugin/icons/branch_open.png new file mode 100644 index 0000000000000000000000000000000000000000..79dd22a0eee8c3021217f86c53a51c5d543bd5b9 GIT binary patch literal 18865 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 ac5mocH&R5Y$(6~PKlwjU<#XHs literal 0 HcmV?d00001 diff --git a/python/plugins/moFa4Q_plugin/icons/branch_open_v1.png b/python/plugins/moFa4Q_plugin/icons/branch_open_v1.png new file mode 100644 index 0000000000000000000000000000000000000000..3c2232491f6bff510975fa4b3fe46e4e19b8b5bf GIT binary patch literal 5125 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 literal 0 HcmV?d00001 diff --git a/python/plugins/moFa4Q_plugin/icons/burger.png b/python/plugins/moFa4Q_plugin/icons/burger.png new file mode 100644 index 0000000000000000000000000000000000000000..64a204a093d342e13c864811f71d5dbe1e3bf273 GIT binary patch literal 4744 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 literal 0 HcmV?d00001 diff --git a/python/plugins/moFa4Q_plugin/icons/checkbox_dis.png b/python/plugins/moFa4Q_plugin/icons/checkbox_dis.png new file mode 100644 index 0000000000000000000000000000000000000000..9a298feb9e221f0faa2cf03ebe4600b0e9caa4ba GIT binary patch literal 3572 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 literal 0 HcmV?d00001 diff --git a/python/plugins/moFa4Q_plugin/icons/del_geom.png b/python/plugins/moFa4Q_plugin/icons/del_geom.png new file mode 100644 index 0000000000000000000000000000000000000000..63e83d83c06b9ae1cd49422545416ea3a75bdbc6 GIT binary patch literal 38491 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 bIQT1`y@;8K`>%pI0}yz+`njxgN@xNA1>C5h literal 0 HcmV?d00001 diff --git a/python/plugins/moFa4Q_plugin/icons/del_text_bubble.png b/python/plugins/moFa4Q_plugin/icons/del_text_bubble.png new file mode 100644 index 0000000000000000000000000000000000000000..506e593533aad497a661f8f7081d44886f3c0a42 GIT binary patch literal 34681 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

    tnJLaK{kw3mKBGO%TLO&!_(uy9Pw0 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 Z1RyoVedmt%Meen z;2%?qd+t2|Q2&b1ym80hW?=-f>E0K-w7iZ};5-?5Eb=HsUESpaQTFSd_OIS&yw50R z^vpSzh8t0g%k$T}Oz(8!T+a@6S!(>Ca2sp0oqT!-!N&JW;ldhvl#~&J4{6)tAl0s0 z1d(jpR|C+bu`izcjIqJ7()Cf-Lb@~#iunKaC+pQr9*3Vi!DexL1LxcXQg%{sN^mXM+X+d@Ij+U(p@BldFy`NXw$7ry+W!dKkG6Tdzd7pxHAOR5_vl-lrStaAbopC z0#S#1o9f{>{+WCU62^>}0InN1JXMSk*+8N%*_Z9pInRD^Xh?02jC`gXxS4{5A6I={ zBe~`EOZ{e&7%Py(yf~{SA8^mB8Y>;F7<}YV63@YJtMl@g0<2ehu?j3*S@J+fe@BkF zbF4n2jNFKifCj;g2vN9lsJpgm{FT#o+3N6!c`}F6?n7l>j9{=E1deLU?Jjo5jpHG>@rJS2ghp>N<|XqUd+6BS3v+3o9-4qWG#txUY6lmUWk^Aohd8 zHH)6-K|5k!gA7-Ss8=Cpmb7K>hP|7_%ZYqc{w5L8#%)LkA0txI!on%BBpt=L5h+Nr z_;Ni|_V8$Yk-$~_kxGkmCS;~imoJ}cHVhV1hOgTDk`|2fGaBDdGR#&+sVU?>PNE`@ z*@?*YmcgA^WJ3GGXO=XXBlEi7Yz{4Hn|Z!+d|rDY-36RtLo*D61Fr@B*h2EY5Z%ea zxqjYXZ{;cVsV4th79d^|-o9S-c3BOUF-ge54zXa~)TnNuy&Nx`XkZFO_QUKWM>Fwb zNV5v9B&jkuI-sEdE2c1i{rXo0z;LYJDUBR5-`t`f{HR*=XYuoYqK@rZHYh)l6fwHW z4p4a42dDSdekV=qy&2DX?1}aT%r)`>-d>0c^k$||(`P+9kK$^s zOqipGdSk>1@n2U|2+sy^2`w#UY@$CpXQhw!ca1>}l1K|ZtN8bAWBa^{m?O+`NcN%2 z%3b8q6D47emi;TWWzi;w#!_}~tYm+6a-LE?U21+RAYtAyEEO)2y6iW3`%2rNgbCf$ zm=x>ZZMrk#kl3jFY4c_978=rUo4CYrgcbWNHF1|b9xBROf_F@We#o2bt@nhqvSEZP zFT|OGJ-zngv)bb7XV_99{FL8N_pk{$0HV{lf^0*Y9S!f8Slx;s-|tZb`V&%cEL?-^ zVazsLKdS!Ofs5_^2yz$yarN}Q?hF+4$I0})haueBgZ~^ayY_Tvw*@*pN9z8y`r0!x zLE5ivrZS=x7Q9GEOSy7%Ty1V{KEIUdI&Ui5gbP!v+Srwe7fh@CM^S92PkTf;f3M*8 zxVw^r-C_z(xb~GPw0Djd=LCJ&uVJ6+a%S6RWtN&nrDECBg4T8w2pg5h3>!`#0W7QU zH@H2W!ZwEC(+vDyuH|A=F1&x9$22XXthiZ&-8%v$`n{d%UN#QRser3FZ4GB)5ME>0 zm`JTNl^7N3z$KQ@0?g8fMw*Yt#767Vn=v_(UvIp>bA#KdIs({|*tp!{`E6OAp68AW z)SQ_5$iQNQdaVyTKb)9P(fMdqH7z!00N!Q8q=KKPjsQaqU0w46Tf@{z$QbX~nK9eG z_A6x`%3fAp!HRK4UEe*N)0}=VF4`aQLNW0h%jexq@m0j3;2#}4^02L)vdJreoldYp zux+q=FeW%QIL)}i;_EWm^ZPQ*%^H#1pwb&5^49w0*25RAEn+#V8Q7S$P6$`KMbeW+ zV4SwOzj<~`b!+d>-ik`>mM>Gwr54eag*(&Q+JlD{OTBo$BJcgMTe>XcaP;enF@$UA zEbh2{N8m?2ade+R*ws&4%-veE#~3 ze2DbBfv5h*oK)EX(};ET>WsaPm#vJ}v&NrN#`s zaTv0p?EXrZSg!z>sSI)~JYUzWeisrw;i(?u7ZVhNL2zlw>f zP2+ki0KC4Tlv&%k_yA)~%1lrf99MFqFQX8y^@rXkixeU(ROY5XMxF5OKe5o?Tg19{ zbyi51el^;?G@|NyNV-0yZoV{2c2GDV*vqBMXT0xh!XrnKb$94ISK%XeAY5xFE2YcE zx!jsW8q`Qhw=tB1%FfqQE3kXB)$Hp@-sUT9)Z646k!9^n*Hs=AmRJr-E>z5In0e>& zQcln!vW^JG8-`j~wQWd~8@WrTb`(Z>VkL7fp)idlG_W((xvylYxA$avjG@6>fr}=O`lyN6_|_`+-~5f#%tF|_ zRkPT=G{op>R=_9Iy1UMKx@03kWYWkWSCqnw;J&MYA2YD18f$+!+Xve)uu2Q|763|~ z`059}A1PmJ0(_orOEpKAWaV6)eV&c9G#{Q`p}LWUIT!IRpj9n-=4-GsEkEu*vu)kS zLp$!%jHon%vFq3*TO~afERl7rXl(TGDq-jA!^RIC zJ%#q8-Sye^-Wrw!fpj0LcYZI{9m&|&zWnm3r>2)zmrrQ#sRTY1>41lKTgHS~ zfrZJ$aY!mvE=9PHhbgw(VAC z`3E+rjw``F5LkdGldmV^C(Ft#nJIF#w{uwS=o1!%RkMl|bVb9faln}R_hqr`FOb;Dl1qM0)71KlU5J4$- z)(2gQ|1@4qiI#Dp?P3yZE>3g`w(kysevIYh=9K(z|KAmh+o};q=`mGWd){}`MIu8= zT!*>{k&5le`OTq8;QCO*@()kzp+gQdAs@q}*U2JqxHaq7f9y5ezHH7#4pM>ZN)5|D zJ#D(VwP@$)hDq2)+y=Pu8vm)hymfEoRa21Hf)|i3IPv#Vo~~HhMuSg#Rdq3X@CMlx zZ^5p*c)U)nGU)E~*fmzb;&_ZVc&+YO{61{RL5!kkIlnf`nmkO-M)cjdqB$Bje8KaA z{toC|=gW^OEGq0**G-;Rx6V?n>QB7o)QA15Ac3gjXZ#a@^2*no90#t?ecj#_6B?$g zaGazG```jEMKfnEIN*-s3U1jdJ`~!nYI-K$47w86o+|#?&Ps55M#NKe3Xv|S7UL+N ztf!xmb?|d=eqL~1b6Ic%I3=QBspfGmfucur)`Gnkv5u~JEMGATefvOKpB*USqdX(& zxbPh^lq04Y;n{UZ-#nIG?6Oz+L(*1W6_NzCh|wBtVWrA~*Y~nwka`2c3KEqUW?lMW zjqilob=P%eY(Oo?blK34y67VWb~;`WsS=-5FCq|Y;F7r3@`fSJ8J)%gb-a7dr$>e5PW}kK52_)#+PYe!Oq+hlaP|b!RSmWLH9cm0m~-6f2*k+xXHZ`yW;eMbweo%YA|gmKJPMzo{QOU!c>U$gnJSgC>T)U z`4dj$v>CZ)f4Rz8YvP6M>M_%KHc<6&eqwOH8$2W-4od*-M~4Bcp*ykK24WV+DD&^x zo+l_@vUkeQ@Nl13!@=RatE@OmSQO{q3sw3QP27jDoyY9~6rrs+cjBox$c90)pTD(} zA?@?2Z9>{cvANQeGc3?49!LB3lw#DoX0L~iQ{mL2(U`Vm1HKI`%- zyMdErppyk-1^AhLo(EETOp(t5=iMICV{Wb2-}`1>L=chGean<54j$Woay7tv)(91J z=_Ku{&%lk)K%Z7>Hv%Orc2c5TFwIIXt_(at8X0GA6T)i*uUqG+y0Qo;EcB0(m!J{t zs_|OF48xT^h|)cT(TQ9w3hXRLmi~z+Rk|TL`mQMlZW*C+G5N}>5AVJmpp0H6;Uz^h z1n=QWWN9aTBDZBIliw(gG-;o~q0BidV7J4LIGa3dw@y^%*;J6Qztnb~cl=eB1O;}V z$_SC7JiSM8qRG%L=EecLq0{E7Pz(P&ia0AFp1U^GGN8lT*WQUhC+On)!li}4N#k{z)JT71Oe#IX z4iv=5<}l7x{+>5BC%}eR8Fo^X@H4oQ+m!qb_zy_MTeXWXtMvAK3qxf+fIr>q+Np2Y zipSYm+m!HqBB(#$20Ev>-v@2o0j+%)bPZNft5!6+N#Q`QlTUKs#;#4p*_MD(N7;&SIGeud1B6Ssj-?o69kR<7$rfyLu2Ls?W50lPh&>!W!sU0X{QmZy|@iqgQ z*=D>{`s@-1z^-p5^=WNs{5zKZfo!PcgfMcZR68zYvL|S!ydO2*D7`YpR4W-fg+gR1KG+8wRZhgVmSEP|1kKv_ ziyWT6P}!H*0bhMHfnVPS-h26r&~5SOdA`2NN-|_6Mo_-ua(5`0?I+~qU%%$Q{rad%+>ZiQ?hk?!1Ni+)UUQ6CBFYy;Yp1Cjl1 z4&D9B_5aL`azviEFp7U&x64?^#uwFH+kxh@FVIlG-Gk`c)a=#ruJ2bw85P)|Rah}F z)Jd-VY>H9tS^YIw*KfQo+!I>1hw41QnJ*K?qMC|rpGA`n5gZr?L85>JBF=Y zujW^`wNIFH<+|4R3TiC~HX~~1KV*hH+Yd$G5N^4+8UWq|Gty2X8#++L(5;j#8{eKz zRSnX3Pkx+3^K>7+;7A9`j83~reiR9H9?Au66YV}qWkGc9xa!F(UKre!?vgyFHEz=? zMQ9v!;WQmrHDF?}b8L@!FYFfW7Fi2lAW3T9HT{(hLs*=l!F)dFrLOaBvu;D8*-p@w z5wmi4tHOdQili7HF<~d;03s)ox%i z;>NcgBm^rf&2BgB9E;j78h-_K-pfs+bQWw6qGsSTk|L#wi;0;2TKtX(Ov`6X&p$OD zh3MKoaa(H^Y@LylVJ_E4O75;EP}4PWC7zVqG-p%__-x*_Gx)2$qJZviyO6ax@b>e( zv9dNRc*%uT`UR3ns51}S~aL&|P)9f?#m_}-fUhr(C|a5DEP#liMe@ zIb`R{!I762S|uur#DRd7cDvaO~)vdv(m z3*8P&B%24S%sOx(x@fom*W0779)}P^rt-)V;4;v23n>Ey+e4@sElQ##3|9X7p4azD zPJ|IA_cIL6(iPj0mU~jUYqNyV=+V(!(niYOLL@2vHItws$lkHN){D`OKz&uG zpI*V$9SZ3)ZUfHyQx$>RzEzvOXoS&8SIe;FTiBOyI1P9Ze~Tc9dIG0IQfr<=iEkYj z#C^C!(a-iBU+=KIvC+uYl{+k7SuNYvvH z;Reo$+pmSW5Jmx%FcJP%eK=6!0w|mrPauy}m7)Oa#)K!sqh7RAq6>s-vWj)Kaq*tpAu@3I%#>}(E zgld|PPzH&w(QTE{wZhTZ^m6Fu7|${WfBd&Q48d|B0q(X-vJ*AW6IcQ8E)nniHkBjS zK8D0yzF{rlW0|lYj&_o<5Cn=YcY_H5r?l;jH&_T9mlbG8AhyFg#yXZ>-Z!Z?Wd$O{ zjDC%^*QRa2#?nG?(4MD%?e|9X{{4ZCm+E;eK(ABX=&sw+13Mu-iIo3JNccRxMKX37 zdox-p4~%aa)P>HqsnVCc$twZI2qTr;R?t{KhO8;Asb!jRa9UQWSpiDF_`RCaB;xLGmeLC1oZn^CgXPOUWO>Ir%r>h%K zKi_%=E|(HQ8lA~W=f6?;W|S@jk4Pf z8flUcxAg?yr-BPZp#}ot zY(N3t3Im=jTV$OQIAboSeBK7yFz<2g-SM_K4G7@ouO6H#oG)+=;g%Ug7;JsEABp~; zkk1D6V=CQ03jY)q4~7j6@4`aKJ4ciGH#F;Zi9Fu#P}WTw0D&k=yFs&4&^_K`$wA zY$k2y{Y+t!(GCzg5TEU9si=0T(+rB(%S<)y(@9UeOfMPy4(hhMV{+GeUlivKT?8&7 zCa?eXopx@i-Nf{qDg=I5C%shw2gwhiDbj1*ZJ5l8r$XXu!2<|}6u9R16d)A+ff8IA zPYeL>t4|oCU%Y|lUd>=HoS~p|v{Bb-&}rN0E}QwA3CI&&J}y476B!F2yDAL(h)b{z z+jxsoUzp2Tps1n&4KCw$JC-|hn8^^={0#KI-nW5+{Lu8yN7Q(SJJg6JR1zG0W{Gjb za)}jcGCT^Ux;ovbn^pX-j=&Gd_#96EEzY)-SaV6?!8%dxq2ShYEJM``x>HSlaOyg@eg*1dpvAt$*xsDSUzJ6Em=#g7(@vb1%Se>79>Qdc^PO~Hcz0Eucc{Vwab<@v6%qCel3$zLJWX+EV( zKf_4`2P$_Yi(~2YZT&NgE@R;71_mzZ1U*)5TIVenz z7vddw(y|BRKdi1<+A#G)&zdWW&+^;nE5;(Tl8S3)KI1>*3a%;N@t=>xpp0A7TyUUf zH~+tyyF`jUcY$t&?Vk_cJDMN3Q|8oQ%H?A{=m>U(#C`}n^Brk$qIRr(X3CNCc1kWE zi9gP^S(C<1-Z!~~b=~p^NRghmP+~Z4ZY(dY`G$g*=8{V_I6J09m4~;YxPMfkEA!a7 zl4@)-`LBLi?86O8?6`{#v->~p`XOwXbcz-nSqdE8BV3zcNAyYh_ShG55wD#Ry}y(8 z_HpTu#VQdCdCLC5M3@$Wss{T&N-~@?2C^kuKOd>ObB1R#;C@3_ow&l~iLsE{0XR`2 zn-(Hn9`7m$yiU^m@`-5VX7+fx0O2ZnXJu*X$f-&R>Iw}>l*yX)2|>}1i?S9e>m zQz4ccpQwIZrec)At6Qu4m9rTrDHi8g@0W|~Zc1<18 zE?owAY4D$2*efIVUpqMn)fsDJ5Iw{vo)p(RtP>IA!+I4h;WtcqEz^wwvtxf!Gji^}znAuP z?sW9tG`_4Cd>}XAY<4QDSZ{xbUo9;xQ12NExJFh0l8!0fy5Abhrv@TCde6MU_n1O+ zo|dUTV+w64$!TD!7b(8S1rvOkm3HhW^2RrD%@}Jg2P(My^m_il&_-TR7|Psk@?7k zX?LxNw5T+Lq+`>-LmW5&@*A=<83QV4iRD5|fT?xP|4f{E5aY2_898)U84hck?R+f{ z^h3esBm<~JHL7h7gO+ecg2+afV-(8yvc7?8vd2I$8~XKI+)JNFVI|^VH%i$7|A*R1 zocGyDVtlQi>URYgul%=cjk|Rj^v_X!gS(C^ueXM5LR14w33y<9rabt2iY&$pgng4}P>s=E-vdG1!w}o-*rMBHSx(}$YG|x}UEJf+k--%@H4cLB z2R*%M;)b=GUrz?3OJqLnkJ+6*Nxz-}$vBrLW2Sa}|Ez+%gH{asd7b6^Foa3#N$T=l138 zyU(@Bgf}g35vj8fhJ+HPr{GS?`!O$|2=P&P|L4}wD43Z)?q9dBM-~!Mc9EkfGVLEy>L|U){r`~*?b`P2cuIJlXhxD>;_E6uDpCJ%dqtwey#bkz# z)wFH?MU&~-@^JpQu}5M#J;RIXhoV#)KIN4zMxJxyz(?C8UHK<{=JCJwio}3L&fU+w zN!c)Jb?tWFx;QW5>G;bYvSCz(Cg-uWhkx3yqFgx3UE{h!qk2Q4{&+w><>eR3?k;Tw zZSHIaE#dw!gh6v>bN2+WExMg=QTR~~w9`A6{r29W_}V-c6Sc)BKTakZMtJ=X@!v#m7tcqX+cKXCW+15)q>w%io>$hg)~}rD;3&-J|kh zYp6BLpSfE$hn+6Mu9=Kq{x$)^AQwFu_{m7~-H&&g^O?XTf0~l3xx=jxNzc;c{TGu& zK5(%s(u`bydf^LiVIWu)2Kq^ovOxNn%dG_zfOHcLT%aB~@Tud{L4->uowRbS{zXyE z%t~BN-PKF9=D$sL7sNnku2st^*@CAU^vpr8;~<<#4YLj{nz6BRR&&}bI=Td+4vXZB9*nHbkF z|KSo#{KWW=L%QC25k%Wm%v8&*e$^dg0X7c3%JQs08~w_9q+knrc?WLn=2x_M<=u6n ztqhN;HXd3Us|D!1rF5!w8pz5r{R0a8>B(yPb?oIS_t#bqAf`pROxyfIrr%H7zRA#3 z>v;?M?hkd1?gB+tS6vDZBCfo3{oHBTdSyE1U7CwN7!MfbiH<1S_sJlPs&gkPtDG}w z0>Bz}0jcw|pvJtxmk35GSAp~cSO35IKKrkL(PHA22IWv5v?Q2AJ^(9qh8e8?`unpp zs%8EQXSlS`s-8~Q5iVTxWJMbnbwA?1^As3m1V3K3XjtH41#lFRgSh22Zm;`ZN~*`3 z>?IG$mVp1h{oinA)@Gxcw=iS~UO93wZC5GoG=E6;cD7B44B+1mMq;dzHZX+SC3BL_ zx(>cMhn)boCfJ*%6vEqBUS*a2pCIdU=|Bf{@8QZU2)~&5px+LkkAs%}pBU}rp3!HE zs>Ah?HIzx7U?NHRAdETWQ+?;XE=H3?`IvA7xVTj_6@urS)7HUViw)Epk;opHW)Q%L zFj%7U0T}$q=_B)D;)p>3nygRtq3!eAnK`A`0C_b9N3gLP?w9;;pb38P3Htedt}__T z)};jpA2h=J^pWE5ONhbKAOQZqgH0=3(K7RnMgnMG$}tU}aM_EZ z2wZQ(w(kE#)-^n=z_iGF7z)I2qQ=^9BZzOZaar^XRpa+MYfc9t{y}u^3H-^VN+XDT ziCWNMOP9c}An1FZCPjav2*$?jdmMX)s}=%4sN}fPLFDc0_5NP$!G;t6-$+3R4H$oU z(`>cU{pFRV_}4CWxUA9)3F9;!tBh=t`MOFbC=fb85Yk2dV5!gNl8{E=Xg9#D1mQYH zgVen{&&USx41ZfAnu2bsxXS%~Q`{X0&5QVTaK?Sc?+()uNq2+O(ed9D$aNr6=1*~; zd7)|-h1cZ7(`0P*TGiM#9Bkw;mQ76L#{Uatxw@q5+Qimz9AD6BA*7&k$)^%LNeB4N z;)m`KEc*UqgQulvg~=|e_-gshqVcBAgDc~SVT6uE$1ODtjPzxPinQf$>Icw_T%`ry z`_w&;hZ1EDa4AZU+5g~Dh(5<;)ds~5EfHMSN-l{qQLsI%HDf#Dbjyhi1yqQ6H|)Bd z>@!$Qu8=8$#@`&t2Ei$v3=H4M6b6L8JOWmpU{#WI`lTy%jJ(!~AfoI?1eI{kp#GzS z1(4_rmc3M}DlKg2n|cA4<&{ucPT@BD3yr<${{ID%`s%2rJq{@jnQFS12Ew|E6cd^&Y6OIJh1P^K<#G_AIv@Mjer*li zee`B`W6KiJ^}-NEEQEDpUV2TDi2X|T>-YO+3SvFT&*|@U3Jk;%4!2aY3leIwbx1cD zS0N5H%%M@Z$!Yhf@eThWD*9kze!e@vgx8JN&a4T!47=fQD5h^Dk?aKGYcK$hF*2y8 zJ+wVQj1ylL+c4Gl;mbvWi?es{di7D04n9tQhc*IJsM#F`9kw0r4-TCkR+hI{nHJXy z2$>$k?{R{d^=&m`rZv5^@Id6{R+hh4ztXlXu0XP;un0>n1Oa4vCa9yD=4zXfmQLz; zUgS#QI>;_d))u~ft&QuA-5xMOfxt7%o+i=yh)KtnznFYoyYjW-8;Gt!LrG$?HNB+0 zL#@N$LDoLB^1|%)%Fg!zax@4*$K3w6wXj37L+wG+Bixnh&j)BfPvK_uy*_Y?-6#l} z<7|l44DXDP%v~#sK%1@}V4KYnIVu+ibvxtpiE6so+9Bzm=gVA>94tNSawuf#1GO|V z_At^&?r%DLz(fn|9Mj%YkzWV|N@GTP8pdHD;E3!p$doV=BI2#-pW8cx9;mN_Zun!_ zaMjhaCi5KJT6b;~rKO;1z-fkchC}AO5}ZUR>Ty72&WP?ZR8%W(T|gxDY0!TCLr+A9 z?qBEfj-smJ3c@>`^mW)l^mR2*+j{;3AtZd;KrJ0|m$E?xk@7sxwRj;ga$TxVE{5`@V7uQbcY_k*{96v+ zwUPc!jx#lcP6QCfH~!|ns%Ur9GXAE&h?4r=`Ph*3*wm2A5zU*a*k>2(nuN5^tR4S1 zWOzfxgFaIDu-MiRHqbIqN`}6Uf$B29-ftDhpa0EVbi79hUJdKIwHL55!W^J~!R?e! zOdu){WqOc+(?K8 z=Z)Mel*s!w)%a3BFRNeSr*O?Lwr{0mj>g}zeqU!iUCPZ0cq66Ls zsl%|UTOpZk@wfhhXgy$_QovQ?^ZBn@ToPyE*YhC99X3O>`H$21e4@8a`9auFA5@kX zCfH_Bbmg#)ajMeJo!$cSl89e&2rg^=c6+WXrMwGtRQ{9nG}yfu;N6g^uQ4oH70|$L z!U`h7pd;fzk)~NVgT8`1=zkTs9VBHdoYrcnPr)SWro>{J@@2leO=5_=>wE8FZnuZe zIOL8|Jkz$uKsq^UqZs@3azRqaW!DYtUhz`u=7_e-37@F#n;;Uv}bb?+`wO(>VxaB=Ar~ z{}rJNf-ZukE7kG0o03AnZK))Vi$q8&iE* zvGo*5WGN-&a%{@yvu`{k-Dt_z5FdEyk%~8K`CTH6|2hu&vS36LqO9>9X*B&qHNK_x zBV1$yQNwwTc#Q(1arwC91}%ZOeM$RnA)Y04VY05P8jsNl=Qlr_psX+vU{QET`@>=S z^D51dcmK`v8yA+cgL%=Hf*);g!S-P8p8b<8a{tNzLG4x6vA?{m_Zj;7e~o+z<@gaK zhb}ttp~76rJqbOVM1St`Fhai^S*5X;!R}Lv=ga^NWB!xN zi|b@(1gcRiUK-B|Lh4D^K%r-W8X&3dacP{)5ri*P{hVT@CkE%0W0m0*i;XWhew0mwP5YY@W9<$U5^c&a^)x~ z8QUlRCbe_~6OMdg>$ilxhguVIktH*^XQKK9~(PofIRzN{=$ z37vKM2y4V9j&SP5vHkXXMTJ5SQBDRrW)(&Yhpc0_xWzr?ao!6>w*CR>ejO^9NFsD z*>y%v*_TIT0t~u(LUn#OVA;QjGW~~XvssM|?CRk`hF2j&;y-*9mfFzQ*Q?_9Bztsx zlH5p*Y;Fg6;gOK9n0QLZmazdbPnGtORxBXR6*;Izo z{xW~U3hvLx2@tH}9?Q~j_LV=JL~J0ZL8!svaNF+eZgt&GSH@raW@P*?6KTF{0$Fbh zZG)Wtmx;szvd83C;S>W}E(L1Z`oUfmFxO{Wn+^2@p|79m5)`S4*uPAs?!~xZm01^R zcH@_y!cW16fb7Ja&Aw@DU?7%;7D>~dBb6^n35Jf-cQy5SQkdL$-_1#mm$GfpRW zv~NjjfSGN@N!!d~*OeW_iPpoCji0_O3SK!2lAUZmF4#7%)U_Id)`p_PO*N|DyL)Xe z4@ZCzmRY&&2FB$?%C!aDbh^JRw|O$c@6Akw5J2mrMT63f_yt7}mm`se)`8R4ov_D*l(-wlW76E%30;Z9j@Q>eC^+FRP#h6?h3U;0(8J ztdvllxJp6#SlP45EpteVU!R}i9niSkaP~@kzS>IWL+A;6nVtx?_Zn$>a$N~rKUV?L z4qOuHQaNUj>qk+crE$HIH6O+YJznX_%DGXWOj^utdwiFBdlKU zI(VgM`hZ&?1doF9!mY5`i!>>pCoUj?iOLBsPSbz9r@n226K}34w#sU;cSFcYN^Usme1N)3jn%YE$3T=qXK$-$!Ufy zxlR;WkldW9gh`;tA3gW5Z)=Sj9!Ud1$w2vid3M)$zKEdupzlRwhYntT1(w^>m z&*tT3Pt@cdTD|t&BXh1Sy}Kpt^8?_O`%l?Yu%lP4W}^pi1ubAJ;3VK~J*IaeL;rSR z&E<>vM`PRm?21J_pvZSRy*c2#s!m&`vV<=G^8Z!wYm>IE?{XC6T4|=N+*Wh`dXf2K zy2;R|FP0HbuhLTfRHU~aB}@W#!SZPN82MC};4%!~UuqV0+?EE3-Sr5Fj+UunZ?b4m zsoxNZMXu{p)L4PZ2G7RjM$bEQ0_lzitS_Mx34zU1vb|dcZlV+Ujfb*7;|Z_`5gGyP z#kl`O#l$Aj=iQhTc!9?e_OjIz?HW}F4_KOxdLa4t2R0~7pN$sF61wgg?D5v4hJx-j z$W^19k9Bnh4^1q&w7y2e0!BT>iCy?7n5~N;C0P8@ak23;Ceid zP%9pw`3q^EHvy!Jmjn%}wcN>_YW=%XS&N z4>s^ulQr?Y7Hmn^#YQgJa!YsR4|XT3K%@dJMxd!zXYX~zIJaAqT9Y(J($R)mP}v!f z0H2i|z|>kqJbL(fPsiKGB@UqIjiBt2F0|`tldEM0NR-bN!ts}BHB7biK7xp?j$lLD z&7F3)Bdb8h_SprzFA|jY-P?EJ@Oc_|W8{?#vsFxuU)T3{H>~ZO*C1pETnOi$3@gx> zq0%McoF@KreoU(MYe+8Fs4xCjI70b{I$E!*K`PVQKI8RqJQv;pZ_W8r0k{~uuBDU( ze#Fx3+j~(83yqong^cccUTh7&SrdOVtcwu9)5=$lN|9pK7w7k`@0` z+xHauh^d5w$hr_rOT@TB1w8&f4MBEK4-ztVV6Hp2fx zUafl;;-uy<+|k5T-`sij0dEP%AURPnq@lgZQ-vP+3FjN?(^@&bHJkO-5!;9J#u1ggtQMf{)tc4Ql5xP){GS4vpuDKN`LKUWXh8B+@4_G?7E;_WkQfCc1e;gUH6Vhs znfPRw_)k6$z{BU?I-gziCVDHi#Wxbu>hadA#%tJX7ugl=NnR5HOIk>AkGWH>g5@f8 z@xjUgJ}X%4=iEVp7MKoe*=XAMy3xGRvhi(0A-rY7_f(8QjByOgX;a67FF|GR8TK=n zh~gYJl~1mc-_lbvN_lsV>z)oDNpsM zR=mE})OyoGvhCVMWo4A|)Xkf9ge%?KVD%Q&6|zHIoqqUFqxk~}8;~l484?xgQ1JmV zI;*xZCHsXC#odEKu15rccwPEgxfC@)1{^;Pvr55T`*A?y{v6|gi-7rA1gA>1saNj) zSfz@c*_pyJF-d9KM!fF}*g~^+(Om*js7f^4mxG^(3 zKHFdZBLfnqG5F<^_`@xmp=R-HKRD)IAoPSfot`s(~8XpTfqXhs}b1v-HLY1zZH$!4Yea$P!8?>yYX5T zAkC4mt(NQ&%b-J8#EE_&QM??i`x!!eG&orO*i4WijWh~}FcNBnC+2N0gH?t|I~*_J zL##ep)Ltr4#_{bkNjboFrHA@m^YVAF_3mtM2u=%TfJlT%=s|Y4iauN*Y?IRZmtC*0 z12U&l>HCe?0A{vBrvFd^Y*}A|5t%v^0(A3)?3f+D&`enyF8f&1~F%>$VU(Yxj^pi#tESK8j;D zu+b3}dLAR#>~Oah+L;tp9eQe7k$<}=ommnnuToJ zT05e@boqZ30z3ZT9(QIcI5O-QX9=%{cip#22o~A;cHu2un%Ew+!+!!~t{?Y3uYARx zJP`zK^*LPdM%&fXq`~yZ-_qoF8y~Sh1G758DuCh)J!w>EB~!WH*;HldfM{Hm)$1Bq zfW`_D8?-k(G+jrMu>hChFx!#-=s$4~CC*Q>SF1U_j^F5RfbEKMt`DkRvVW$UI`Y1o zAOgC{Ibd<-5c5GPwgS{%hlE8=1Ba+Zy$z!aq8KvqK5)@0bnOCFin8%zeA!{-$)+wa_s z#cz9(_JhD2YU>}Vu(Y<+_$`0mw3aQX+m{BBgKG5OY(=N8Dsg!^j_XGijfTda?hVtT z`>QfCqdaoj*@Ndlx2uG}mk|d=G8SiIxQ`t6(_j4j?I%|}{VR1O>TP1jz)+{o8L-M? zQ2yG*U*CZ+=106m7f+%%Dv;L`&1Ps=*A~Y>k$KPi2J%r(%YqVf-2>hU?afL!(|RV* z3JK^8OO2D68=h*i!r3?zZHtzE#YZ~`ocf^@GyW6qO4YkaT-%0+drpu z=RcWjj?LHjTkrE>)aFJRb|)9BZ7ac-15&N*snYA>?c;zGi{C-P8XEjIcG2 literal 0 HcmV?d00001 diff --git a/python/plugins/moFa4Q_plugin/icons/info_icon.png b/python/plugins/moFa4Q_plugin/icons/info_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ad058f4504f4175f7943c233aa8d9316521fb5e7 GIT binary patch literal 8597 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 Wmwb8V9q literal 0 HcmV?d00001 diff --git a/python/plugins/moFa4Q_plugin/icons/line_icon.png b/python/plugins/moFa4Q_plugin/icons/line_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..354212708119979fd646f5cf3623e46a29dae5b5 GIT binary patch literal 39626 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