22 lines
821 B
Markdown
Executable File
22 lines
821 B
Markdown
Executable File
# Application icons
|
|
|
|
Place SVG/PNG icons here. The application currently uses Qt's built-in
|
|
standard icons (via `QStyle.SP_*`) so no custom icons are required to
|
|
run; this directory is reserved for future custom artwork.
|
|
|
|
Suggested icons (24x24 SVG, monochrome, currentColor):
|
|
|
|
- `new.svg` — document with a plus
|
|
- `open.svg` — folder opening
|
|
- `save.svg` — floppy disk
|
|
- `add.svg` — arrow pointing right (into the image)
|
|
- `extract.svg` — arrow pointing left (out of the image)
|
|
- `folder.svg` — folder with a plus
|
|
- `delete.svg` — trash can
|
|
- `boot.svg` — disc with a lightning bolt
|
|
- `app.svg` — application logo (scalpel over a disc)
|
|
|
|
Icons are loaded in `iso_scalpel/main_window.py` via
|
|
`QStyle.standardIcon()`; swap them for `QIcon("resources/icons/...")`
|
|
to use custom art.
|