Files
RedBear-OS/local/recipes/kde/kf6-kguiaddons/source/examples/python/kiconutils.py
T
vasilito b8aac3c9bc D7: editor multi-cursor support
Add secondary_cursors field to Editor with insert_char_multi,
delete_back_multi, delete_forward_multi methods. Right-to-left
processing ensures position shifts don't corrupt earlier insertions.

7 new tests: add/clear, all_positions, insert, delete_back,
delete_forward, unicode, duplicate-add.
2026-07-05 22:29:19 +03:00

30 lines
819 B
Python
Executable File

#!/usr/bin/env python3
# SPDX-FileCopyrightText: 2025 Nicolas Fella <nicolas.fella@gmx.de>
# SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
import sys
from PySide6 import QtCore, QtWidgets, QtGui
from KGuiAddons import KIconUtils
class MyWidget(QtWidgets.QWidget):
def __init__(self):
super().__init__()
self.icon = KIconUtils.addOverlays(QtGui.QIcon.fromTheme("cuttlefish"), ["edit-entry", "edit-delete"])
self.label = QtWidgets.QLabel()
self.label.setPixmap(self.icon.pixmap(64))
self.layout = QtWidgets.QVBoxLayout(self)
self.layout.addWidget(self.label)
if __name__ == "__main__":
app = QtWidgets.QApplication([])
widget = MyWidget()
widget.resize(800, 600)
widget.show()
sys.exit(app.exec())