Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport release-3_40] [qgis.PyQt] Add qgis.PyQt.QtMultimedia #60298

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions python/PyQt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ set(PYQT_COMPAT_FILES
QtWebEngineCore.py
QtWebEngineQuick.py
QtWebEngineWidgets.py
QtMultimedia.py
QtNetwork.py
QtXml.py
QtQuickWidgets.py
Expand Down
24 changes: 24 additions & 0 deletions python/PyQt/PyQt/QtMultimedia.py.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
QtMultimedia.py
---------------------
Date : January 2025
Copyright : (C) 2025 by Julien Cabieces
Email : julien dot cabieces at oslandia dot com
***************************************************************************
* *
* 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. *
* *
***************************************************************************
"""

__author__ = 'Julien Cabieces'
__date__ = 'January 2025'
__copyright__ = '(C) 2025, Julien Cabieces'

from PyQt@[email protected] import *
Loading