Skip to content

Commit

Permalink
Add official icon name enum (libkeepass#281)
Browse files Browse the repository at this point in the history
* Add official icon name enum

* merge icons

Co-authored-by: evan <[email protected]>
  • Loading branch information
KeyWeeUsr and Evidlo authored Jul 15, 2022
1 parent 1efce5e commit 0b0b441
Showing 1 changed file with 75 additions and 0 deletions.
75 changes: 75 additions & 0 deletions pykeepass/icons.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,78 @@
# Official Icon names from KeePass2.x codebase:
# https://github.com/dlech/KeePass2.x/blob/0defb69f48/KeePassLib/PwEnums.cs#L83

Key = '0'
World = '1'
Warning = '2'
NetworkServer = '3'
MarkedDirectory = '4'
UserCommunication = '5'
Parts = '6'
Notepad = '7'
WorldSocket = '8'
Identity = '9'
PaperReady = '10'
Digicam = '11'
IRCommunication = '12'
MultiKeys = '13'
Energy = '14'
Scanner = '15'
WorldStar = '16'
CDRom = '17'
Monitor = '18'
EMail = '19'
Configuration = '20'
ClipboardReady = '21'
PaperNew = '22'
Screen = '23'
EnergyCareful = '24'
EMailBox = '25'
Disk = '26'
Drive = '27'
PaperQ = '28'
TerminalEncrypted = '29'
Console = '30'
Printer = '31'
ProgramIcons = '32'
Run = '33'
Settings = '34'
WorldComputer = '35'
Archive = '36'
Homebanking = '37'
DriveWindows = '38'
Clock = '39'
EMailSearch = '40'
PaperFlag = '41'
Memory = '42'
TrashBin = '43'
Note = '44'
Expired = '45'
Info = '46'
Package = '47'
Folder = '48'
FolderOpen = '49'
FolderPackage = '50'
LockOpen = '51'
PaperLocked = '52'
Checked = '53'
Pen = '54'
Thumbnail = '55'
Book = '56'
List = '57'
UserKey = '58'
Tool = '59'
Home = '60'
Star = '61'
Tux = '62'
Feather = '63'
Apple = '64'
Wiki = '65'
Money = '66'
Certificate = '67'
BlackBerry = '68'

# deprecated icons

KEY = '0'
GLOBE = '1'
WARNING_SIGN = '2'
Expand Down

0 comments on commit 0b0b441

Please sign in to comment.