File: kiconutils.py

package info (click to toggle)
kf6-kguiaddons 6.23.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 1,152 kB
  • sloc: cpp: 6,656; xml: 401; python: 108; java: 74; ansic: 18; sh: 13; makefile: 11
file content (29 lines) | stat: -rwxr-xr-x 819 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/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())