Conversation
There was a problem hiding this comment.
Pull request overview
This pull request adds a standalone GUI application for managing PostgreSQL connection service files, porting functionality from the existing QGIS plugin to work as a standalone application.
Changes:
- Adds PyQt6-based GUI with service list, settings editor, and file management capabilities
- Introduces service settings definitions with widget type metadata for GUI rendering
- Implements Qt compatibility layer to support both QGIS plugin and standalone usage
Reviewed changes
Copilot reviewed 9 out of 11 changed files in this pull request and generated 12 comments.
Show a summary per file
| File | Description |
|---|---|
| pyproject.toml | Adds gui optional dependency (PyQt6) and console script entry point |
| pgserviceparser/service_settings.py | Defines PostgreSQL service settings with metadata for GUI editors including widget types and validation |
| pgserviceparser/gui/init.py | GUI module initialization with Qt import |
| pgserviceparser/gui/main.py | Entry point for standalone GUI application |
| pgserviceparser/gui/compat.py | Qt compatibility shim supporting both qgis.PyQt and PyQt6 |
| pgserviceparser/gui/main_window.py | Main application window wrapper |
| pgserviceparser/gui/setting_model.py | Qt model for service configuration table with dirty tracking |
| pgserviceparser/gui/item_delegates.py | Custom delegates for password, file, and combobox editors |
| pgserviceparser/gui/service_widget.py | Main widget for listing, creating, editing, and removing services |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…he service is created in the correct file
Guts
reviewed
Feb 24, 2026
Guts
reviewed
Feb 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is basically the main functionnality from the QGIS plugin