mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-24 08:49:42 +00:00
Added 4 more icons. Updated HNHUi
This commit is contained in:
@@ -135,6 +135,7 @@
|
||||
<string key="NSFrameSize">{293, 30}</string>
|
||||
<reference key="NSSuperview" ref="87082330"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<string key="NSClassName">HNHGradientView</string>
|
||||
</object>
|
||||
@@ -832,7 +833,7 @@
|
||||
<string key="NSFrame">{{1, 147}, {52, 16}}</string>
|
||||
<reference key="NSSuperview" ref="994354248"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="894571713"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:60</string>
|
||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
||||
<int key="NSsFlags">1</int>
|
||||
@@ -1511,7 +1512,7 @@
|
||||
<int key="NSButtonFlags2">164</int>
|
||||
<object class="NSCustomResource" key="NSNormalImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">99_SaveToDiskTemplate</string>
|
||||
<string key="NSResourceName">26_FileSaveTemplate</string>
|
||||
</object>
|
||||
<string key="NSAlternateContents"/>
|
||||
<string key="NSKeyEquivalent"/>
|
||||
@@ -4931,7 +4932,6 @@
|
||||
<string key="className">MPInspectorViewController</string>
|
||||
<string key="superclassName">MPViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="_popUpPasswordGenerator:">id</string>
|
||||
<string key="addAttachment:">id</string>
|
||||
<string key="addCustomField:">id</string>
|
||||
<string key="removeAttachment:">id</string>
|
||||
@@ -4939,10 +4939,6 @@
|
||||
<string key="saveAttachment:">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="_popUpPasswordGenerator:">
|
||||
<string key="name">_popUpPasswordGenerator:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="addAttachment:">
|
||||
<string key="name">addAttachment:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
@@ -5114,7 +5110,7 @@
|
||||
<string key="00_PasswordTemplate">{128, 128}</string>
|
||||
<string key="04_KlipperTemplate">{128, 128}</string>
|
||||
<string key="07_NotepadTemplate">{128, 128}</string>
|
||||
<string key="99_SaveToDiskTemplate">{128, 128}</string>
|
||||
<string key="26_FileSaveTemplate">{128, 128}</string>
|
||||
<string key="NSActionTemplate">{15, 15}</string>
|
||||
<string key="NSAddTemplate">{8, 8}</string>
|
||||
<string key="NSApplicationIcon">{128, 128}</string>
|
||||
|
||||
146
MacPass/Icons/06_BlockDeviceTemplate.pdf
Normal file
146
MacPass/Icons/06_BlockDeviceTemplate.pdf
Normal file
File diff suppressed because one or more lines are too long
146
MacPass/Icons/13_KeysTemplate.pdf
Normal file
146
MacPass/Icons/13_KeysTemplate.pdf
Normal file
File diff suppressed because one or more lines are too long
146
MacPass/Icons/18_DisplayTemplate.pdf
Normal file
146
MacPass/Icons/18_DisplayTemplate.pdf
Normal file
File diff suppressed because one or more lines are too long
148
MacPass/Icons/68_PhoneTemplate.pdf
Normal file
148
MacPass/Icons/68_PhoneTemplate.pdf
Normal file
File diff suppressed because one or more lines are too long
@@ -15,19 +15,23 @@ typedef NS_ENUM(NSUInteger, MPIconType) {
|
||||
MPIconServer,
|
||||
MPIconKlipper,
|
||||
MPIconLanguages,
|
||||
MPIconBlockDevice,
|
||||
MPIconNotepad,
|
||||
MPIconSocket,
|
||||
MPIconIdentity,
|
||||
MPIconContact,
|
||||
MPIconCamera,
|
||||
MPIconRemote,
|
||||
MPIconKeys,
|
||||
MPIconDisplay = 18,
|
||||
MPIconFileSave = 26,
|
||||
MPIconTrash = 43,
|
||||
MPIconFolder = 48,
|
||||
MPIconPhone = 68,
|
||||
/* Custom Icons not used in Database */
|
||||
MPIconInfo = 1000,
|
||||
MPIconAddFolder,
|
||||
MPIconHardDisk,
|
||||
MPIconSaveToDisk,
|
||||
};
|
||||
|
||||
@interface MPIconHelper : NSObject
|
||||
|
||||
@@ -41,20 +41,28 @@ static NSDictionary *icons;
|
||||
@(MPIconServer): @"03_ServerTemplate",
|
||||
@(MPIconKlipper): @"04_KlipperTemplate",
|
||||
@(MPIconLanguages): @"05_LanguagesTemplate",
|
||||
|
||||
@(MPIconBlockDevice): @"06_BlockDeviceTemplate",
|
||||
@(MPIconNotepad): @"07_NotepadTemplate",
|
||||
@(MPIconSocket): @"08_SocketTemplate",
|
||||
@(MPIconIdentity): @"09_IdentityTemplate",
|
||||
@(MPIconContact): @"10_ContactTemplate",
|
||||
@(MPIconCamera): @"11_CameraTemplate",
|
||||
@(MPIconRemote): @"12_RemoteTemplate",
|
||||
@(MPIconKeys): @"13_KeysTemplate",
|
||||
|
||||
@(MPIconDisplay): @"18_DisplayTemplate",
|
||||
|
||||
@(MPIconFileSave): @"26_FileSaveTemplate",
|
||||
|
||||
@(MPIconTrash): @"43_TrashTemplate",
|
||||
|
||||
@(MPIconFolder): @"48_FolderTemplate",
|
||||
|
||||
@(MPIconPhone): @"68_PhoneTemplate",
|
||||
|
||||
@(MPIconInfo): @"99_InfoTemplate",
|
||||
@(MPIconAddFolder): @"99_AddFolderTemplate",
|
||||
@(MPIconHardDisk): @"99_HarddiskTemplate",
|
||||
@(MPIconSaveToDisk): @"99_SaveToDiskTemplate"
|
||||
@(MPIconHardDisk): @"99_HarddiskTemplate"
|
||||
};
|
||||
return imageNames;
|
||||
}
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2135</string>
|
||||
<string>2155</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
|
||||
Reference in New Issue
Block a user