diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6c7ffe2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,222 @@ +Disk Inventory X 1.0 src/make/build/ + +######################### +# Retrieved from +# https://gist.githubusercontent.com/adamgit/3786883/raw/1756f42f5ac4d6ce68e917e6e7edbb4574582dc8/.gitignore +######################### +# .gitignore file for Xcode4 and Xcode5 Source projects +# +# Apple bugs, waiting for Apple to fix/respond: +# +# 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation? +# +# Version 2.6 +# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects +# +# 2015 updates: +# - Fixed typo in "xccheckout" line - thanks to @lyck for pointing it out! +# - Fixed the .idea optional ignore. Thanks to @hashier for pointing this out +# - Finally added "xccheckout" to the ignore. Apple still refuses to answer support requests about this, but in practice it seems you should ignore it. +# - minor tweaks from Jona and Coeur (slightly more precise xc* filtering/names) +# 2014 updates: +# - appended non-standard items DISABLED by default (uncomment if you use those tools) +# - removed the edit that an SO.com moderator made without bothering to ask me +# - researched CocoaPods .lock more carefully, thanks to Gokhan Celiker +# 2013 updates: +# - fixed the broken "save personal Schemes" +# - added line-by-line explanations for EVERYTHING (some were missing) +# +# NB: if you are storing "built" products, this WILL NOT WORK, +# and you should use a different .gitignore (or none at all) +# This file is for SOURCE projects, where there are many extra +# files that we want to exclude +# +######################### + +##### +# OS X temporary files that should never be committed +# +# c.f. http://www.westwind.com/reference/os-x/invisibles.html + +.DS_Store + +# c.f. http://www.westwind.com/reference/os-x/invisibles.html + +.Trashes + +# c.f. http://www.westwind.com/reference/os-x/invisibles.html + +*.swp + +# +# *.lock - this is used and abused by many editors for many different things. +# For the main ones I use (e.g. Eclipse), it should be excluded +# from source-control, but YMMV. +# (lock files are usually local-only file-synchronization on the local FS that should NOT go in git) +# c.f. the "OPTIONAL" section at bottom though, for tool-specific variations! +# +# In particular, if you're using CocoaPods, you'll want to comment-out this line: +*.lock + + +# +# profile - REMOVED temporarily (on double-checking, I can't find it in OS X docs?) +#profile + + +#### +# Xcode temporary files that should never be committed +# +# NB: NIB/XIB files still exist even on Storyboard projects, so we want this... + +*~.nib + + +#### +# Xcode build files - +# +# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "DerivedData" + +DerivedData/ + +# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "build" + +build/ + + +##### +# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups) +# +# This is complicated: +# +# SOMETIMES you need to put this file in version control. +# Apple designed it poorly - if you use "custom executables", they are +# saved in this file. +# 99% of projects do NOT use those, so they do NOT want to version control this file. +# ..but if you're in the 1%, comment out the line "*.pbxuser" + +# .pbxuser: http://lists.apple.com/archives/xcode-users/2004/Jan/msg00193.html + +*.pbxuser + +# .mode1v3: http://lists.apple.com/archives/xcode-users/2007/Oct/msg00465.html + +*.mode1v3 + +# .mode2v3: http://lists.apple.com/archives/xcode-users/2007/Oct/msg00465.html + +*.mode2v3 + +# .perspectivev3: http://stackoverflow.com/questions/5223297/xcode-projects-what-is-a-perspectivev3-file + +*.perspectivev3 + +# NB: also, whitelist the default ones, some projects need to use these +!default.pbxuser +!default.mode1v3 +!default.mode2v3 +!default.perspectivev3 + + +#### +# Xcode 4 - semi-personal settings +# +# Apple Shared data that Apple put in the wrong folder +# c.f. http://stackoverflow.com/a/19260712/153422 +# FROM ANSWER: Apple says "don't ignore it" +# FROM COMMENTS: Apple is wrong; Apple code is too buggy to trust; there are no known negative side-effects to ignoring Apple's unofficial advice and instead doing the thing that actively fixes bugs in Xcode +# Up to you, but ... current advice: ignore it. +*.xccheckout + +# +# +# OPTION 1: --------------------------------- +# throw away ALL personal settings (including custom schemes! +# - unless they are "shared") +# As per build/ and DerivedData/, this ought to have a trailing slash +# +# NB: this is exclusive with OPTION 2 below +xcuserdata/ + +# OPTION 2: --------------------------------- +# get rid of ALL personal settings, but KEEP SOME OF THEM +# - NB: you must manually uncomment the bits you want to keep +# +# NB: this *requires* git v1.8.2 or above; you may need to upgrade to latest OS X, +# or manually install git over the top of the OS X version +# NB: this is exclusive with OPTION 1 above +# +#xcuserdata/**/* + +# (requires option 2 above): Personal Schemes +# +#!xcuserdata/**/xcschemes/* + +#### +# XCode 4 workspaces - more detailed +# +# Workspaces are important! They are a core feature of Xcode - don't exclude them :) +# +# Workspace layout is quite spammy. For reference: +# +# /(root)/ +# /(project-name).xcodeproj/ +# project.pbxproj +# /project.xcworkspace/ +# contents.xcworkspacedata +# /xcuserdata/ +# /(your name)/xcuserdatad/ +# UserInterfaceState.xcuserstate +# /xcshareddata/ +# /xcschemes/ +# (shared scheme name).xcscheme +# /xcuserdata/ +# /(your name)/xcuserdatad/ +# (private scheme).xcscheme +# xcschememanagement.plist +# +# + +#### +# Xcode 4 - Deprecated classes +# +# Allegedly, if you manually "deprecate" your classes, they get moved here. +# +# We're using source-control, so this is a "feature" that we do not want! + +*.moved-aside + +#### +# OPTIONAL: Some well-known tools that people use side-by-side with Xcode / iOS development +# +# NB: I'd rather not include these here, but gitignore's design is weak and doesn't allow +# modular gitignore: you have to put EVERYTHING in one file. +# +# COCOAPODS: +# +# c.f. http://guides.cocoapods.org/using/using-cocoapods.html#what-is-a-podfilelock +# c.f. http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control +# +#!Podfile.lock +# +# RUBY: +# +# c.f. http://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/ +# +#!Gemfile.lock +# +# IDEA: +# +# c.f. https://www.jetbrains.com/objc/help/managing-projects-under-version-control.html?search=workspace.xml +# +#.idea/workspace.xml +# +# TEXTMATE: +# +# -- UNVERIFIED: c.f. http://stackoverflow.com/a/50283/153422 +# +#tm_build_errors + +#### +# UNKNOWN: recommended by others, but I can't discover what these files are +# diff --git a/Disk Inventory X 1.0 src/make/src/Disk Inventory X.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Disk Inventory X 1.0 src/make/src/Disk Inventory X.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/Disk Inventory X 1.0 src/make/src/Disk Inventory X.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/classes.nib b/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/classes.nib deleted file mode 100644 index 1ca2ea8..0000000 --- a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/classes.nib +++ /dev/null @@ -1,146 +0,0 @@ -{ - IBClasses = ( - {CLASS = FileKindStatistic; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, - { - CLASS = FileKindsPopupController; - LANGUAGE = ObjC; - OUTLETS = {"_kindsPopUpButton" = NSPopUpButton; "_windowController" = id; }; - SUPERCLASS = GenericArrayController; - }, - { - ACTIONS = {showFilesInSelectionList = id; }; - CLASS = FileKindsTableController; - LANGUAGE = ObjC; - OUTLETS = { - "_kindsPopupArrayController" = NSArrayController; - "_kindsTableArrayController" = NSArrayController; - "_tableView" = NSTableView; - "_windowController" = MainWindowController; - }; - SUPERCLASS = NSObject; - }, - { - ACTIONS = {revealInFinder = id; zoomIn = id; zoomOut = id; }; - CLASS = FileSystemDoc; - LANGUAGE = ObjC; - SUPERCLASS = NSDocument; - }, - { - CLASS = FilesOutlineViewController; - LANGUAGE = ObjC; - OUTLETS = { - "_contextMenu" = NSMenu; - "_document" = FileSystemDoc; - "_outlineView" = NSOutlineView; - }; - SUPERCLASS = NSObject; - }, - { - CLASS = GenericArrayController; - LANGUAGE = ObjC; - SUPERCLASS = NSArrayController; - }, - { - ACTIONS = { - changeSplitting = id; - ignoreCreatorCode = id; - moveToTrash = id; - performLayoutBenchmark = id; - performRenderBenchmark = id; - refresh = id; - refreshAll = id; - selectParentItem = id; - showFreeSpace = id; - showInFinder = id; - showInformationPanel = id; - showOtherSpace = id; - showPackageContents = id; - showPhysicalSizes = id; - toggleFileKindsDrawer = id; - zoomIn = id; - zoomOut = id; - zoomOutTo = id; - }; - CLASS = MainWindowController; - LANGUAGE = ObjC; - OUTLETS = { - "_filesOutlineView" = NSOutlineView; - "_kindsDrawer" = NSDrawer; - "_selectionListDrawer" = NSDrawer; - "_splitter" = NSSplitView; - "_treeMapView" = TreeMapView; - }; - SUPERCLASS = OAToolbarWindowControllerEx; - }, - {CLASS = NSDictionary; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, - {ACTIONS = {splitViewDoubleClick = id; }; CLASS = NSObject; LANGUAGE = ObjC; }, - { - CLASS = NSTableViewWithContextMenu; - LANGUAGE = ObjC; - SUPERCLASS = NSTableView; - }, - { - CLASS = NSToolbarItemValidationAdapter; - LANGUAGE = ObjC; - SUPERCLASS = NSObject; - }, - {CLASS = OASplitView; LANGUAGE = ObjC; SUPERCLASS = NSSplitView; }, - { - CLASS = OAToolbarWindowController; - LANGUAGE = ObjC; - SUPERCLASS = NSWindowController; - }, - { - CLASS = OAToolbarWindowControllerEx; - LANGUAGE = ObjC; - SUPERCLASS = OAToolbarWindowController; - }, - { - ACTIONS = { - search = id; - searchInAll = id; - searchInKindNames = id; - searchInNames = id; - searchInPaths = id; - }; - CLASS = SelectionListController; - LANGUAGE = ObjC; - OUTLETS = { - "_kindsPopupController" = GenericArrayController; - "_progressIndicator" = NSProgressIndicator; - "_searchField" = NSSearchField; - "_windowController" = NSWindowController; - }; - SUPERCLASS = GenericArrayController; - }, - { - CLASS = SelectionListTableController; - LANGUAGE = ObjC; - OUTLETS = { - "_kindStatisticsArrayController" = GenericArrayController; - "_selectionListArrayController" = GenericArrayController; - "_tableView" = NSTableView; - "_windowController" = MainWindowController; - }; - SUPERCLASS = NSObject; - }, - { - CLASS = TreeMapView; - LANGUAGE = ObjC; - OUTLETS = {dataSource = id; delegate = id; }; - SUPERCLASS = NSView; - }, - { - CLASS = TreeMapViewController; - LANGUAGE = ObjC; - OUTLETS = { - "_document" = FileSystemDoc; - "_fileNameTextField" = id; - "_fileSizeTextField" = id; - "_treeMapView" = id; - }; - SUPERCLASS = NSObject; - } - ); - IBVersion = 1; -} \ No newline at end of file diff --git a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/designable.nib b/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/designable.nib new file mode 100644 index 0000000..2b0d284 --- /dev/null +++ b/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/designable.nib @@ -0,0 +1,3463 @@ + + + + 101000 + 15G1108 + 11542 + 1404.47 + 807.20 + + com.apple.InterfaceBuilder.CocoaPlugin + 11542 + + + NSArrayController + NSCustomObject + NSCustomView + NSDrawer + NSImageCell + NSMenu + NSMenuItem + NSOutlineView + NSPopUpButton + NSPopUpButtonCell + NSProgressIndicator + NSScrollView + NSScroller + NSSearchField + NSSearchFieldCell + NSSplitView + NSTableColumn + NSTableHeaderView + NSTableView + NSTextField + NSTextFieldCell + NSView + NSWindowTemplate + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + MainWindowController + + + FirstResponder + + + NSApplication + + + + {330, 346} + {20, 50} + {1000, 400} + 0 + 0.0 + 15 + + + + + 15 + 2 + {{240, 289}, {572, 521}} + 1886912512 + Window + NSWindow + + View + + + + + 256 + + + + 290 + {{17, 42}, {538, 17}} + + + + YES + + 67108864 + 4194304 + file name + + YES + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + NO + 2 + + + + 290 + {{17, 20}, {538, 14}} + + + + YES + + 67108864 + 4194304 + file size + + YES + 11 + 3100 + + + + + + NO + 2 + + + + 274 + + + + 282 + + + + 2322 + + + + 256 + {259, 412} + + + + YES + NO + YES + + + 256 + {259, 23} + + + + + + + + 256 + {{245, 0}, {16, 17}} + + + + displayName + 181 + 16 + 1000 + + 75497536 + 2048 + Name + + + 3 + MC4zMzMzMzI5OQA + + + 6 + System + headerTextColor + + + + + 338690112 + 1024 + + + + 3 + MQA + + + + 3 + YES + + + + size + 72.038002014160156 + 29.538000106811523 + 1000 + + 75497536 + 67110912 + Size + + + + + + 338690112 + 67109888 + + + + + + 3 + YES + + + + 3 + 2 + + 6 + System + controlBackgroundColor + + + + 6 + System + gridColor + + 3 + MC41AA + + + 17 + -750780416 + + + FilesView + 4 + 15 + 0 + YES + 0 + 1 + + + {{1, 0}, {259, 435}} + {{0, -23}, {259, 435}} + + + + + + 4 + YES + + + + 256 + {{244, 23}, {16, 412}} + + + + NO + _doScroller: + + + _doScroller: + 0.67669171094894409 + + + + 256 + {{1, 419}, {259, 16}} + + + + NO + _doScroller: + + 1 + + _doScroller: + 0.9384615421295166 + + + + 2338 + + + + {{1, 0}, {259, 23}} + + + + + YES + + + {261, 436} + + + + YES + 133170 + + + + + QSAAAEEgAABBmAAAQZgAAA + 0.25 + 4 + 1 + + + + 306 + {{270, 0}, {262, 436}} + + + + YES + TreeMapView + NSQuickDrawView + + + {{20, 65}, {532, 436}} + + + + YES + + + {572, 521} + + + + + {{0, 0}, {1680, 1050}} + {213, 129} + {3.4028200000000001e+38, 3.4028200000000001e+38} + MainWindow + YES + + + + 256 + + + + 274 + + + + 2304 + + + + 256 + {284, 289} + + YES + NO + YES + + + 256 + {284, 23} + + + + + + 256 + {{285, 0}, {12, 17}} + + + + + color + 35 + 20 + 1000 + + 75497536 + 2048 + Color + + + 3 + MC4zMzMzMzI5OQA + + + + + 134217728 + 33554432 + 0 + 0 + 0 + YES + + 3 + YES + + + + kindName + 135 + 51.370998382568359 + 1000 + + 75497536 + 2048 + Kind + + + + + + 338690112 + 1024 + + + + + + 3 + YES + + + kindName + YES + compareAsFilesystemName: + + + + size + 55.221000671386719 + 25.221000671386719 + 1000 + + 75497536 + 67110912 + Size + + + 6 + System + headerColor + + + + + + 338690112 + 67109888 + + YES + 12 + 4883 + + + YES + + + + 3 + YES + + + size + YES + compare: + + + + fileCount + 46.992000579833984 + 27.992000579833984 + 1000 + + 75497536 + 67110912 + Files + + + + + + 338690112 + 67109888 + + + YES + + + + 3 + YES + + + fileCount + YES + compare: + + + + 3 + 2 + + + 17 + -750780416 + + + KindStatisticView + 4 + 15 + 0 + YES + 0 + 1 + + + {{1, 17}, {284, 289}} + + + + + 4 + YES + + + + 256 + {{285, 17}, {11, 289}} + + NO + _doScroller: + + 256 + + _doScroller: + 0.99568963050842285 + + + + 256 + {{1, 306}, {284, 11}} + + NO + _doScroller: + + 257 + + _doScroller: + 0.9861111044883728 + + + + 2304 + + + + {{1, 0}, {284, 17}} + + + + YES + + + + {{8, 0}, {297, 318}} + + + 133170 + + + + + QSAAAEEgAABBmAAAQZgAAA + 0.25 + 4 + 1 + + + {305, 318} + NSView + NSResponder + + + TreeMapViewController + + + FileKindsTableController + + + FilesOutlineViewController + + + Menu + + + + Reveal in Finder + + 1048576 + 2147483647 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + + + + Refresh + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Move To Trash + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Zoom In + + 1048576 + 2147483647 + + + + + + Zoom Out + + 1048576 + 2147483647 + + + + + + + + + {541, 200} + {50, 30} + {600, 1000} + 1 + 0.0 + 15 + + + + + + 274 + + + + 274 + + + + 2304 + + + + 256 + {443, 108} + + YES + NO + YES + + + 256 + {443, 23} + + + + + + 256 + {{444, 0}, {12, 17}} + + + + + displayName + 168 + 40 + 1000 + + 75497536 + 2048 + Name + + + 3 + MC4zMzMzMzI5OQA + + + + + 338690112 + 1024 + + + + + + 3 + YES + + + displayName + YES + compareAsFilesystemName: + + + + size + 59 + 10 + 1000 + + 75497536 + 2048 + Size + + + + + + 338690112 + 1024 + + + + + + 3 + YES + + + size + YES + compare: + + + + displayPath + 150 + 31.094999313354492 + 1000 + + 75497536 + 2048 + Path + + + + + + 338690112 + 1024 + + + + + + 3 + YES + + + displayPath + YES + compareAsFilesystemName: + + + + 3 + 2 + + + 17 + -685768704 + + + SelectionList + 4 + 15 + 0 + YES + 0 + 1 + + + {{1, 17}, {443, 108}} + + + + + 4 + YES + + + + 256 + {{444, 17}, {11, 108}} + + NO + _doScroller: + + 256 + + _doScroller: + 0.56842106580734253 + + + + 256 + {{1, 125}, {443, 11}} + + NO + _doScroller: + + 257 + + _doScroller: + 0.98873871564865112 + + + + 2304 + + + + {{1, 0}, {443, 17}} + + + + YES + + + + {456, 137} + + + 133170 + + + + + QSAAAEEgAABBmAAAQZgAAA + 0.25 + 4 + 1 + + + + 270 + {{145, 141}, {185, 22}} + + YES + + -2076180416 + 132096 + + + 109199360 + 1 + + LucidaGrande + 11 + 16 + + + + + + 400 + 75 + + + Item1 + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + + OtherViews + + + + + + 3 + YES + YES + 1 + + NO + + + + 268 + {{8, 146}, {135, 14}} + + YES + + 67108864 + 4325376 + Show all files of kind: + + + + + + NO + 2 + + + + 271 + {{349, 143}, {107, 22}} + + YES + + 342884416 + 1024 + + + search + + YES + 1 + + 6 + System + textBackgroundColor + + + + + 0 + 0 + search + + _searchFieldSearch: + + 138690560 + 0 + + 400 + 75 + + + 0 + 0 + clear + + + cancel + + + + _searchFieldCancel: + + 138428416 + 0 + + 400 + 75 + + 255 + BgAAAA + + NO + 2 + + + + -2147482355 + {{330, 146}, {16, 16}} + + 20746 + 100 + + + {456, 167} + NSView + NSResponder + + + + kindName + fileCount + items + + + YES + YES + YES + YES + + + + displayName + displayFolderName + size + + YES + + YES + YES + YES + YES + + + SelectionListTableController + + + Menu + + + + Show Files in Selection List + + 1048576 + 2147483647 + + + + + + + + + kindName + size + fileCount + + YES + + YES + YES + YES + YES + + + Menu + + + + All + + 1048576 + 2147483647 + + + + + + Name + + 1048576 + 2147483647 + + + + + + Kind + + 1048576 + 2147483647 + + + + + + Path + + 1048576 + 2147483647 + + + + + + + + + + + + window + + + + 28 + + + + _kindsDrawer + + + + 102 + + + + zoomIn: + + + + 106 + + + + zoomOut: + + + + 107 + + + + showInFinder: + + + + 108 + + + + _splitter + + + + 116 + + + + moveToTrash: + + + + 120 + + + + _filesOutlineView + + + + 124 + + + + _treeMapView + + + + 125 + + + + refresh: + + + + 128 + + + + _selectionListDrawer + + + + 149 + + + + parentWindow + + + + 25 + + + + contentView + + + + 26 + + + + delegate + + + + 103 + + + + initialFirstResponder + + + + 126 + + + + dataSource + + + + 41 + + + + delegate + + + + 42 + + + + menu + + + + 83 + + + + _treeMapView + + + + 35 + + + + _fileNameTextField + + + + 36 + + + + _fileSizeTextField + + + + 46 + + + + value: arrangedObjects.kindName + + + + + + value: arrangedObjects.kindName + value + arrangedObjects.kindName + 2 + + + 311 + + + + delegate + + + + 54 + + + + menu + + + + 295 + + + + _tableView + + + + 56 + + + + _windowController + + + + 105 + + + + _kindsPopupArrayController + + + + 293 + + + + showFilesInSelectionList: + + + + 294 + + + + _kindsTableArrayController + + + + 301 + + + + value: arrangedObjects.fileCount + + + + + + value: arrangedObjects.fileCount + value + arrangedObjects.fileCount + 2 + + + 310 + + + + value: arrangedObjects.size + + + + + + value: arrangedObjects.size + value + arrangedObjects.size + + NSValueTransformerName + fileSizeTransformer + + 2 + + + 307 + + + + menu + + + + 113 + + + + dataSource + + + + 70 + + + + delegate + + + + 71 + + + + _outlineView + + + + 73 + + + + _contextMenu + + + + 114 + + + + contentView + + + + 139 + + + + parentWindow + + + + 150 + + + + value: arrangedObjects.displayName + + + + + + value: arrangedObjects.displayName + value + arrangedObjects.displayName + 2 + + + 285 + + + + delegate + + + + 207 + + + + menu + + + + 222 + + + + value: arrangedObjects.displayFolderName + + + + + + value: arrangedObjects.displayFolderName + value + arrangedObjects.displayFolderName + 2 + + + 287 + + + + content: arrangedObjects + + + + + + content: arrangedObjects + content + arrangedObjects + 2 + + + 274 + + + + contentValues: arrangedObjects.kindName + + + + + + contentValues: arrangedObjects.kindName + contentValues + arrangedObjects.kindName + + 2 + + + 275 + + + + selectedIndex: selectionIndex + + + + + + selectedIndex: selectionIndex + selectedIndex + selectionIndex + + NSNoSelectionPlaceholder + + 0 + 0 + NO + NO + 1 + AAAAAAAAAAAAAAAAAAAAAA + + + + 2 + + + 276 + + + + contentArray: document.kindStatistics + + + + + + contentArray: document.kindStatistics + contentArray + document.kindStatistics + 2 + + + 173 + + + + _kindsPopUpButton + + + + 280 + + + + _windowController + + + + 338 + + + + _kindsPopupController + + + + 288 + + + + contentArray: selection + + + + + + contentArray: selection + contentArray + selection + 2 + + + 289 + + + + search: + + + + 316 + + + + _windowController + + + + 317 + + + + _progressIndicator + + + + 319 + + + + searchInAll: + + + + 329 + + + + searchInPaths: + + + + 330 + + + + searchInKindNames: + + + + 331 + + + + searchInNames: + + + + 333 + + + + _searchField + + + + 337 + + + + value: arrangedObjects.size + + + + + + value: arrangedObjects.size + value + arrangedObjects.size + + NSValueTransformerName + fileSizeTransformer + + 2 + + + 286 + + + + _tableView + + + + 208 + + + + _windowController + + + + 209 + + + + _selectionListArrayController + + + + 210 + + + + _kindStatisticsArrayController + + + + 282 + + + + contentArray: document.kindStatistics + + + + + + contentArray: document.kindStatistics + contentArray + document.kindStatistics + 2 + + + 300 + + + + searchMenuTemplate + + + + 326 + + + + delegate + + + + 335 + + + + delegate + + + + 336 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 21 + + + + + 22 + + + + + + Parent Window + + + 23 + + + + + + + + + + 33 + + + + + + + + 45 + + + + + + + + 95 + + + + + + + + + 30 + + + + + 63 + + + + + + + + + + + 65 + + + + + + + + + 62 + + + + + + + + 64 + + + + + + + + 24 + + + + + + DrawContentView + + + 50 + + + + + + + + + + + 48 + + + + + + + + + + + 47 + + + + + + + + 49 + + + + + + + + 123 + + + + + 60 + + + + + + + + 61 + + + + + + + + 31 + + + TreeMapViewController + + + 51 + + + FileKindsTableController + + + 69 + + + FilesOutlineViewController + + + 80 + + + + + + + + + + + + + + 81 + + + + + 82 + + + + + 98 + + + + + 99 + + + + + 117 + + + + + 119 + + + + + 127 + + + + + 137 + + + SelectionListDrawer + + + 138 + + + + + + + + + + SelectionListContentView + + + 140 + + + + + + + + + + + 142 + + + + + + + + + + 141 + + + + + + + + 143 + + + + + + + + 185 + + + + + + + + 147 + + + + + + + + 205 + + + + + + + + 312 + + + + + + + + 318 + + + + + 156 + + + FileKindsPopupController + + + 174 + + + SelectionListController + + + 206 + + + SelectionListTableController + + + 291 + + + + + + FileKindsTableViewContextMenu + + + 290 + + + + + 296 + + + FileKindsTableController2 + + + 321 + + + + + + + + + SearchFieldMenu + + + 323 + + + + + 324 + + + + + 325 + + + + + 328 + + + + + 340 + + + + + 341 + + + + + 342 + + + + + + + + 343 + + + + + 344 + + + + + 345 + + + + + 346 + + + + + 347 + + + + + 348 + + + + + 349 + + + + + 350 + + + + + 351 + + + + + 352 + + + + + 148 + + + + + + + + 144 + + + + + 353 + + + + + 354 + + + + + 355 + + + + + 356 + + + + + 357 + + + + + 358 + + + + + 359 + + + + + 360 + + + + + 361 + + + + + -3 + + + Application + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Synchronizes folder or file with Finder. + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + NSTableViewWithContextMenu + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + FileKindsPopupController + com.apple.InterfaceBuilder.CocoaPlugin + SelectionListController + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + GenericArrayController + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + NSTableViewWithContextMenu + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + OASplitView + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 365 + + + + + FileKindsPopupController + GenericArrayController + + NSPopUpButton + id + + + + _kindsPopUpButton + NSPopUpButton + + + _windowController + id + + + + IBProjectSource + ../FileKindsPopupController.h + + + + FileKindsTableController + NSObject + + showFilesInSelectionList: + id + + + showFilesInSelectionList: + + showFilesInSelectionList: + id + + + + NSArrayController + NSArrayController + NSTableView + MainWindowController + + + + _kindsPopupArrayController + NSArrayController + + + _kindsTableArrayController + NSArrayController + + + _tableView + NSTableView + + + _windowController + MainWindowController + + + + IBProjectSource + ../FileKindsTableController.h + + + + FileKindsTableController + + showFilesInSelectionList: + id + + + showFilesInSelectionList: + + showFilesInSelectionList: + id + + + + IBProjectSource + ../FileKindsTableController.m + + + + FileSystemDoc + NSDocument + + IBProjectSource + ../FileSystemDoc.h + + + + FileSystemDoc + + cancelScanningFolder: + id + + + cancelScanningFolder: + + cancelScanningFolder: + id + + + + IBProjectSource + ../FileSystemDoc.m + + + + FilesOutlineViewController + NSObject + + NSMenu + FileSystemDoc + NSOutlineView + + + + _contextMenu + NSMenu + + + _document + FileSystemDoc + + + _outlineView + NSOutlineView + + + + IBProjectSource + ../FilesOutlineViewController.h + + + + GenericArrayController + NSArrayController + + IBProjectSource + ../GenericArrayController.h + + + + MainWindowController + OAToolbarWindowControllerEx + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + changeSplitting: + id + + + ignoreCreatorCode: + id + + + moveToTrash: + id + + + performLayoutBenchmark: + id + + + performRenderBenchmark: + id + + + refresh: + id + + + refreshAll: + id + + + selectParentItem: + id + + + showFreeSpace: + id + + + showInFinder: + id + + + showInformationPanel: + id + + + showOtherSpace: + id + + + showPackageContents: + id + + + showPhysicalSizes: + id + + + toggleFileKindsDrawer: + id + + + toggleSelectionListDrawer: + id + + + zoomIn: + id + + + zoomOut: + id + + + zoomOutTo: + id + + + + NSOutlineView + NSDrawer + NSDrawer + OASplitView + TreeMapView + + + + _filesOutlineView + NSOutlineView + + + _kindsDrawer + NSDrawer + + + _selectionListDrawer + NSDrawer + + + _splitter + OASplitView + + + _treeMapView + TreeMapView + + + + IBProjectSource + ../MainWindowController.h + + + + MainWindowController + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + changeSplitting: + id + + + ignoreCreatorCode: + id + + + moveToTrash: + id + + + performLayoutBenchmark: + id + + + performRenderBenchmark: + id + + + refresh: + id + + + refreshAll: + id + + + selectParentItem: + id + + + showFreeSpace: + id + + + showInFinder: + id + + + showInformationPanel: + id + + + showOtherSpace: + id + + + showPackageContents: + id + + + showPhysicalSizes: + id + + + toggleFileKindsDrawer: + id + + + toggleSelectionListDrawer: + id + + + zoomIn: + id + + + zoomOut: + id + + + zoomOutTo: + id + + + + IBProjectSource + ../MainWindowController.m + + + + NSTableViewWithContextMenu + NSTableView + + IBProjectSource + ../NSTableViewWithContextMenu.h + + + + OAToolbarWindowControllerEx + OAToolbarWindowController + + IBProjectSource + ../OAToolbarWindowControllerEx.h + + + + SelectionListController + GenericArrayController + + id + id + id + id + id + + + + search: + id + + + searchInAll: + id + + + searchInKindNames: + id + + + searchInNames: + id + + + searchInPaths: + id + + + + GenericArrayController + NSProgressIndicator + NSSearchField + NSWindowController + + + + _kindsPopupController + GenericArrayController + + + _progressIndicator + NSProgressIndicator + + + _searchField + NSSearchField + + + _windowController + NSWindowController + + + + IBProjectSource + ../SelectionListController.h + + + + SelectionListController + + id + id + id + id + id + + + + search: + id + + + searchInAll: + id + + + searchInKindNames: + id + + + searchInNames: + id + + + searchInPaths: + id + + + + IBProjectSource + ../SelectionListController.m + + + + SelectionListTableController + NSObject + + FileKindsPopupController + GenericArrayController + NSTableView + MainWindowController + + + + _kindStatisticsArrayController + FileKindsPopupController + + + _selectionListArrayController + GenericArrayController + + + _tableView + NSTableView + + + _windowController + MainWindowController + + + + IBProjectSource + ../SelectionListTableController.h + + + + TreeMapViewController + NSObject + + FileSystemDoc + id + id + id + + + + _document + FileSystemDoc + + + _fileNameTextField + id + + + _fileSizeTextField + id + + + _treeMapView + id + + + + IBProjectSource + ../TreeMapViewController.h + + + + + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSArrayController + NSObjectController + + IBFrameworkSource + AppKit.framework/Headers/NSArrayController.h + + + + NSButton + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSButton.h + + + + NSButtonCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSButtonCell.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSController + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSController.h + + + + NSDocument + NSObject + + id + id + id + id + id + id + + + + printDocument: + id + + + revertDocumentToSaved: + id + + + runPageLayout: + id + + + saveDocument: + id + + + saveDocumentAs: + id + + + saveDocumentTo: + id + + + + IBFrameworkSource + AppKit.framework/Headers/NSDocument.h + + + + NSDrawer + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSDrawer.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSImageCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSImageCell.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSMenuItem + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSMenuItemCell + NSButtonCell + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItemCell.h + + + + NSObjectController + NSController + + IBFrameworkSource + AppKit.framework/Headers/NSObjectController.h + + + + NSOutlineView + NSTableView + + IBFrameworkSource + AppKit.framework/Headers/NSOutlineView.h + + + + NSOutlineView + + id + id + + + + contractAll: + id + + + expandAll: + id + + + + IBFrameworkSource + OmniAppKit.framework/Headers/NSOutlineView-OAExtensions.h + + + + NSPopUpButton + NSButton + + IBFrameworkSource + AppKit.framework/Headers/NSPopUpButton.h + + + + NSPopUpButtonCell + NSMenuItemCell + + IBFrameworkSource + AppKit.framework/Headers/NSPopUpButtonCell.h + + + + NSProgressIndicator + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSProgressIndicator.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSScrollView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSScrollView.h + + + + NSScroller + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSScroller.h + + + + NSSearchField + NSTextField + + IBFrameworkSource + AppKit.framework/Headers/NSSearchField.h + + + + NSSearchFieldCell + NSTextFieldCell + + IBFrameworkSource + AppKit.framework/Headers/NSSearchFieldCell.h + + + + NSSplitView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSSplitView.h + + + + NSTableColumn + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableColumn.h + + + + NSTableHeaderView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSTableHeaderView.h + + + + NSTableView + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSTableView + + id + id + id + id + id + + + + copy: + id + + + cut: + id + + + delete: + id + + + duplicate: + id + + + paste: + id + + + + IBFrameworkSource + OmniAppKit.framework/Headers/NSTableView-OAExtensions.h + + + + NSTextField + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTextField.h + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSView + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSWindow + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSWindow.h + + + + NSWindowController + NSResponder + + showWindow: + id + + + showWindow: + + showWindow: + id + + + + IBFrameworkSource + AppKit.framework/Headers/NSWindowController.h + + + + OASplitView + NSSplitView + + IBFrameworkSource + OmniAppKit.framework/Headers/OASplitView.h + + + + OAToolbarWindowController + NSWindowController + + IBFrameworkSource + OmniAppKit.framework/Headers/OAToolbarWindowController.h + + + + TreeMapView + NSView + + id + id + + + + dataSource + id + + + delegate + id + + + + IBFrameworkSource + TreeMapView.framework/Headers/TreeMapView.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + 3 + + {12, 12} + {10, 2} + + + diff --git a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/info.nib b/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/info.nib deleted file mode 100644 index b57f054..0000000 --- a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/info.nib +++ /dev/null @@ -1,32 +0,0 @@ - - - - - IBDocumentLocation - 206 27 487 388 0 0 1280 832 - IBEditorPositions - - 138 - 372 450 476 209 0 0 1280 832 - 24 - 448 374 325 360 0 0 1280 832 - 291 - 206 420 217 49 0 0 1280 832 - 321 - 192 428 75 106 0 0 1280 832 - 80 - 537 365 144 149 0 0 1280 832 - - IBFramework Version - 439.0 - IBOpenObjects - - 291 - 321 - 80 - 138 - - IBSystem Version - 8B15 - - diff --git a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/keyedobjects.nib b/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/keyedobjects.nib index 3604b0d..1beeee8 100644 Binary files a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/keyedobjects.nib and b/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap.nib/keyedobjects.nib differ diff --git a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap~.nib/classes.nib b/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap~.nib/classes.nib deleted file mode 100644 index 6b428f4..0000000 --- a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap~.nib/classes.nib +++ /dev/null @@ -1,145 +0,0 @@ -{ - IBClasses = ( - {CLASS = FileKindStatistic; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, - { - CLASS = FileKindsPopupController; - LANGUAGE = ObjC; - OUTLETS = {"_kindsPopUpButton" = NSPopUpButton; }; - SUPERCLASS = GenericArrayController; - }, - { - ACTIONS = {showFilesInSelectionList = id; }; - CLASS = FileKindsTableController; - LANGUAGE = ObjC; - OUTLETS = { - "_kindsPopupArrayController" = NSArrayController; - "_kindsTableArrayController" = NSArrayController; - "_tableView" = NSTableView; - "_windowController" = MainWindowController; - }; - SUPERCLASS = NSObject; - }, - { - ACTIONS = {revealInFinder = id; zoomIn = id; zoomOut = id; }; - CLASS = FileSystemDoc; - LANGUAGE = ObjC; - SUPERCLASS = NSDocument; - }, - { - CLASS = FilesOutlineViewController; - LANGUAGE = ObjC; - OUTLETS = { - "_contextMenu" = NSMenu; - "_document" = FileSystemDoc; - "_outlineView" = NSOutlineView; - }; - SUPERCLASS = NSObject; - }, - { - CLASS = GenericArrayController; - LANGUAGE = ObjC; - SUPERCLASS = NSArrayController; - }, - { - ACTIONS = { - changeSplitting = id; - ignoreCreatorCode = id; - moveToTrash = id; - performLayoutBenchmark = id; - performRenderBenchmark = id; - refresh = id; - refreshAll = id; - selectParentItem = id; - showFreeSpace = id; - showInFinder = id; - showInformationPanel = id; - showOtherSpace = id; - showPackageContents = id; - showPhysicalSizes = id; - toggleFileKindsDrawer = id; - zoomIn = id; - zoomOut = id; - zoomOutTo = id; - }; - CLASS = MainWindowController; - LANGUAGE = ObjC; - OUTLETS = { - "_filesOutlineView" = NSOutlineView; - "_kindsDrawer" = NSDrawer; - "_selectionListDrawer" = NSDrawer; - "_splitter" = NSSplitView; - "_treeMapView" = TreeMapView; - }; - SUPERCLASS = OAToolbarWindowControllerEx; - }, - {ACTIONS = {splitViewDoubleClick = id; }; CLASS = NSObject; LANGUAGE = ObjC; }, - { - CLASS = NSTableViewWithContextMenu; - LANGUAGE = ObjC; - SUPERCLASS = NSTableView; - }, - { - CLASS = NSToolbarItemValidationAdapter; - LANGUAGE = ObjC; - SUPERCLASS = NSObject; - }, - {CLASS = OASplitView; LANGUAGE = ObjC; SUPERCLASS = NSSplitView; }, - { - CLASS = OAToolbarWindowController; - LANGUAGE = ObjC; - SUPERCLASS = NSWindowController; - }, - { - CLASS = OAToolbarWindowControllerEx; - LANGUAGE = ObjC; - SUPERCLASS = OAToolbarWindowController; - }, - { - ACTIONS = { - search = id; - searchInAll = id; - searchInKindNames = id; - searchInNames = id; - searchInPaths = id; - }; - CLASS = SelectionListController; - LANGUAGE = ObjC; - OUTLETS = { - "_kindsPopupController" = GenericArrayController; - "_progressIndicator" = NSProgressIndicator; - "_searchField" = NSSearchField; - "_windowController" = NSWindowController; - }; - SUPERCLASS = GenericArrayController; - }, - { - CLASS = SelectionListTableController; - LANGUAGE = ObjC; - OUTLETS = { - "_kindStatisticsArrayController" = GenericArrayController; - "_selectionListArrayController" = GenericArrayController; - "_tableView" = NSTableView; - "_windowController" = MainWindowController; - }; - SUPERCLASS = NSObject; - }, - { - CLASS = TreeMapView; - LANGUAGE = ObjC; - OUTLETS = {dataSource = id; delegate = id; }; - SUPERCLASS = NSView; - }, - { - CLASS = TreeMapViewController; - LANGUAGE = ObjC; - OUTLETS = { - "_document" = FileSystemDoc; - "_fileNameTextField" = id; - "_fileSizeTextField" = id; - "_treeMapView" = id; - }; - SUPERCLASS = NSObject; - } - ); - IBVersion = 1; -} \ No newline at end of file diff --git a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap~.nib/info.nib b/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap~.nib/info.nib deleted file mode 100644 index 6cb3676..0000000 --- a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap~.nib/info.nib +++ /dev/null @@ -1,32 +0,0 @@ - - - - - IBDocumentLocation - 206 27 487 388 0 0 1280 832 - IBEditorPositions - - 138 - 372 450 476 209 0 0 1280 832 - 24 - 448 374 325 360 0 0 1280 832 - 291 - 206 420 204 49 0 0 1280 832 - 321 - 192 428 72 106 0 0 1280 832 - 80 - 537 365 136 149 0 0 1280 832 - - IBFramework Version - 364.0 - IBOpenObjects - - 80 - 138 - 321 - 291 - - IBSystem Version - 7U16 - - diff --git a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap~.nib/keyedobjects.nib b/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap~.nib/keyedobjects.nib deleted file mode 100644 index 90a6da2..0000000 Binary files a/Disk Inventory X 1.0 src/make/src/English.lproj/TreeMap~.nib/keyedobjects.nib and /dev/null differ diff --git a/README.md b/README.md index 4d1d5a9..49ed8ca 100644 --- a/README.md +++ b/README.md @@ -35,3 +35,14 @@ The Xcode project file is no longer compatible with contemporary versions of Xco Clone the repository and open the project file located in Disk Inventory X 1.0 src/make/src/Disk Inventory X.xcodeproj and then hit CMD+B. +If you cannot hit CMD+B (the run button in the top left is greyed out as well) +then do this: + +1. Open the above xcodeproj file +2. Click the `Disk Inventory X` button in the top left +3. Click `Edit Scheme` +4. Click `Run` on the left bar of the popup +5. Change the executable to `Disk Inventory X.app` + +See the images from this PR here for clearer instructions: +https://github.com/clawoo/Disk-Inventory-X/pull/7