roster/src/constants.py
Pavel Baksy 0d2a70f425 Update project icons and fix icon picker selection
Replace several icon names with available alternatives and fix icon selection by handling button clicks directly instead of flowbox activation.
2025-12-18 21:24:17 +01:00

70 lines
2.1 KiB
Python

# constants.py
#
# Copyright 2025 Pavel Baksy
#
# 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 <https://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
# 36 symbolic icons for projects (6x6 grid)
PROJECT_ICONS = [
# Row 1: Folders & Organization
"folder-symbolic",
"folder-open-symbolic",
"folder-documents-symbolic",
"folder-download-symbolic",
"folder-music-symbolic",
"folder-pictures-symbolic",
# Row 2: Development & Code
"application-x-executable-symbolic",
"text-x-generic-symbolic",
"text-x-script-symbolic",
"utilities-terminal-symbolic",
"package-x-generic-symbolic",
"software-update-available-symbolic",
# Row 3: Network & Web
"network-server-symbolic",
"network-wireless-symbolic",
"network-workgroup-symbolic",
"network-vpn-symbolic",
"preferences-desktop-locale-symbolic",
"web-browser-symbolic",
# Row 4: Tools & Actions
"document-edit-symbolic",
"document-new-symbolic",
"system-search-symbolic",
"view-list-symbolic",
"emblem-system-symbolic",
"edit-find-symbolic",
# Row 5: Objects & Concepts
"starred-symbolic",
"non-starred-symbolic",
"bookmark-new-symbolic",
"user-bookmarks-symbolic",
"document-open-recent-symbolic",
"mail-send-symbolic",
# Row 6: Status & Symbols
"emblem-ok-symbolic",
"dialog-warning-symbolic",
"dialog-information-symbolic",
"security-high-symbolic",
"changes-prevent-symbolic",
"document-properties-symbolic",
]