├── .DS_Store ├── .gitignore ├── DetectingTableView.h ├── DetectingTableView.m ├── English.lproj ├── InfoPlist.strings └── MainMenu.xib ├── JGMenuItem.h ├── JGMenuItem.m ├── PaddedTextFieldCell.h ├── PaddedTextFieldCell.m ├── README.markdown ├── Status View + Coloring ├── .DS_Store ├── CustomStatusItemView.h ├── CustomStatusItemView.m ├── FullMenuView.h └── FullMenuView.m ├── StatusItem-Info.plist ├── StatusItem.xcodeproj ├── joshuagarnham.pbxuser ├── joshuagarnham.perspectivev3 ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── StatusItem.xccheckout │ └── xcuserdata │ │ └── joshuagarnham.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── StatusItem.xcscheme └── xcuserdata │ └── joshuagarnham.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── StatusItemAppDelegate.h ├── StatusItemAppDelegate.m ├── StatusItem_Prefix.pch ├── Window ├── BorderlessWindow.h ├── BorderlessWindow.m ├── JGMenuWindow.xib ├── JGMenuWindowController.h ├── JGMenuWindowController.m ├── NSBezierPath+PXRoundedRectangleAdditions.h ├── NSBezierPath+PXRoundedRectangleAdditions.m ├── RoundWindowFrameView.h └── RoundWindowFrameView.m ├── img.png └── main.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DSStore -------------------------------------------------------------------------------- /DetectingTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/DetectingTableView.h -------------------------------------------------------------------------------- /DetectingTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/DetectingTableView.m -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /JGMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/JGMenuItem.h -------------------------------------------------------------------------------- /JGMenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/JGMenuItem.m -------------------------------------------------------------------------------- /PaddedTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/PaddedTextFieldCell.h -------------------------------------------------------------------------------- /PaddedTextFieldCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/PaddedTextFieldCell.m -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/README.markdown -------------------------------------------------------------------------------- /Status View + Coloring/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Status View + Coloring/.DS_Store -------------------------------------------------------------------------------- /Status View + Coloring/CustomStatusItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Status View + Coloring/CustomStatusItemView.h -------------------------------------------------------------------------------- /Status View + Coloring/CustomStatusItemView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Status View + Coloring/CustomStatusItemView.m -------------------------------------------------------------------------------- /Status View + Coloring/FullMenuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Status View + Coloring/FullMenuView.h -------------------------------------------------------------------------------- /Status View + Coloring/FullMenuView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Status View + Coloring/FullMenuView.m -------------------------------------------------------------------------------- /StatusItem-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/StatusItem-Info.plist -------------------------------------------------------------------------------- /StatusItem.xcodeproj/joshuagarnham.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/StatusItem.xcodeproj/joshuagarnham.pbxuser -------------------------------------------------------------------------------- /StatusItem.xcodeproj/joshuagarnham.perspectivev3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/StatusItem.xcodeproj/joshuagarnham.perspectivev3 -------------------------------------------------------------------------------- /StatusItem.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/StatusItem.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StatusItem.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/StatusItem.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StatusItem.xcodeproj/project.xcworkspace/xcshareddata/StatusItem.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/StatusItem.xcodeproj/project.xcworkspace/xcshareddata/StatusItem.xccheckout -------------------------------------------------------------------------------- /StatusItem.xcodeproj/project.xcworkspace/xcuserdata/joshuagarnham.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/StatusItem.xcodeproj/project.xcworkspace/xcuserdata/joshuagarnham.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /StatusItem.xcodeproj/xcshareddata/xcschemes/StatusItem.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/StatusItem.xcodeproj/xcshareddata/xcschemes/StatusItem.xcscheme -------------------------------------------------------------------------------- /StatusItem.xcodeproj/xcuserdata/joshuagarnham.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/StatusItem.xcodeproj/xcuserdata/joshuagarnham.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /StatusItemAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/StatusItemAppDelegate.h -------------------------------------------------------------------------------- /StatusItemAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/StatusItemAppDelegate.m -------------------------------------------------------------------------------- /StatusItem_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/StatusItem_Prefix.pch -------------------------------------------------------------------------------- /Window/BorderlessWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Window/BorderlessWindow.h -------------------------------------------------------------------------------- /Window/BorderlessWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Window/BorderlessWindow.m -------------------------------------------------------------------------------- /Window/JGMenuWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Window/JGMenuWindow.xib -------------------------------------------------------------------------------- /Window/JGMenuWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Window/JGMenuWindowController.h -------------------------------------------------------------------------------- /Window/JGMenuWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Window/JGMenuWindowController.m -------------------------------------------------------------------------------- /Window/NSBezierPath+PXRoundedRectangleAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Window/NSBezierPath+PXRoundedRectangleAdditions.h -------------------------------------------------------------------------------- /Window/NSBezierPath+PXRoundedRectangleAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Window/NSBezierPath+PXRoundedRectangleAdditions.m -------------------------------------------------------------------------------- /Window/RoundWindowFrameView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Window/RoundWindowFrameView.h -------------------------------------------------------------------------------- /Window/RoundWindowFrameView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/Window/RoundWindowFrameView.m -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/img.png -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquaredTiki/JGMenuWindow/HEAD/main.m --------------------------------------------------------------------------------