You can subscribe to this list here.
| 2005 |
Jan
(13) |
Feb
(37) |
Mar
(12) |
Apr
(15) |
May
(46) |
Jun
(40) |
Jul
(27) |
Aug
|
Sep
(35) |
Oct
(15) |
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(6) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Geisschaes <gei...@us...> - 2005-09-26 19:43:26
|
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3373 Modified Files: PlayerTableView.m Log Message: add/remove icons added. they should be integrated better Index: PlayerTableView.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableView.m,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** PlayerTableView.m 26 Sep 2005 19:33:58 -0000 1.5 --- PlayerTableView.m 26 Sep 2005 19:43:16 -0000 1.6 *************** *** 59,63 **** } - (IBAction) showDetails: (id) sender { - NSLog(@"event"); [controller doubleClicked]; } --- 59,62 ---- *************** *** 80,84 **** NSMenu *groupMenu = [[NSMenu alloc] init]; NSArray *groups = [[Team currentTeam] userDefinedPlayerLists]; - NSLog(@"%@", groups); NSEnumerator *en = [groups objectEnumerator]; PlayerList *current; --- 79,82 ---- |
|
From: Geisschaes <gei...@us...> - 2005-09-26 19:34:09
|
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv833 Modified Files: PlayerList.m PlayerListsViewController.m PlayerTableController.m PlayerTableView.m Log Message: some bugs removed Index: PlayerTableView.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableView.m,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** PlayerTableView.m 26 Sep 2005 17:47:38 -0000 1.4 --- PlayerTableView.m 26 Sep 2005 19:33:58 -0000 1.5 *************** *** 39,42 **** --- 39,47 ---- [controller removeSelectedPlayers]; } + [self reloadData]; + [self setNeedsDisplay:YES]; + } + else { + [super keyDown:event]; } } Index: PlayerListsViewController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerListsViewController.m,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** PlayerListsViewController.m 24 Sep 2005 11:50:30 -0000 1.5 --- PlayerListsViewController.m 26 Sep 2005 19:33:58 -0000 1.6 *************** *** 56,59 **** --- 56,60 ---- [playerLists release]; playerLists = newPlayerLists; + [[Team currentTeam] setUserDefinedPlayerLists:playerLists]; } Index: PlayerList.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerList.m,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** PlayerList.m 17 Sep 2005 16:22:27 -0000 1.16 --- PlayerList.m 26 Sep 2005 19:33:58 -0000 1.17 *************** *** 288,292 **** ! - (NSMutableArray *) formerDates { return formerDates; } - (void) setFormerDates: (NSMutableArray *) newFormerDates { [newFormerDates retain]; --- 288,299 ---- ! - (NSMutableArray *) formerDates { ! if( self == [[Team currentTeam] allPlayersList]) { ! return formerDates; ! } ! else { ! return [[[Team currentTeam] allPlayersList] formerDates]; ! } ! } - (void) setFormerDates: (NSMutableArray *) newFormerDates { [newFormerDates retain]; Index: PlayerTableController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableController.m,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** PlayerTableController.m 17 Sep 2005 16:22:27 -0000 1.12 --- PlayerTableController.m 26 Sep 2005 19:33:58 -0000 1.13 *************** *** 54,57 **** --- 54,72 ---- } + - (void) setTeam: (Team*) newTeam { + if(team) { + [team removeObserver:self forKeyPath:@"playerList"]; + } + [newTeam addObserver: self forKeyPath: @"playerList" options: NSKeyValueObservingOptionNew context:nil]; + [super setTeam: newTeam]; + } + + + // observing + - (void) observeValueForKeyPath: (NSString*) keyPath ofObject: (id) object change: (NSDictionary*) change context: (void *) context { + if([keyPath isEqualToString: @"playerList"] ) { + [self setSelectedDate: [self selectedDate]]; // force update + } + } - (void) addSelectedPlayersToPlayerList: (PlayerList*) aPlayerList { NSArray *selectedPlayers = [playerListController selectedObjects]; *************** *** 62,65 **** --- 77,81 ---- NSArray *selected = [playerListController selectedObjects]; [[team playerList] removePlayers:selected]; + [team setPlayerList: [team playerList]]; // force update of binding [playerTable setNeedsDisplay:YES]; } |
|
From: Geisschaes <gei...@us...> - 2005-09-26 19:34:08
|
Update of /cvsroot/macattrick/macattrick/Macattrick.xcodeproj In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv833/Macattrick.xcodeproj Modified Files: project.pbxproj roman.mode1 roman.pbxuser Log Message: some bugs removed Index: project.pbxproj =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/project.pbxproj,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** project.pbxproj 18 Sep 2005 14:55:14 -0000 1.6 --- project.pbxproj 26 Sep 2005 19:33:59 -0000 1.7 *************** *** 234,237 **** --- 234,261 ---- 30769E330763548A00AA1F39 /* LineUpView.nib in Resources */ = {isa = PBXBuildFile; fileRef = 30769E310763548A00AA1F39 /* LineUpView.nib */; }; 30769E340763548A00AA1F39 /* LineUpView.nib in Resources */ = {isa = PBXBuildFile; fileRef = 30769E310763548A00AA1F39 /* LineUpView.nib */; }; + 307E363408E88442001E709A /* Add.active.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363008E88442001E709A /* Add.active.png */; }; + 307E363508E88442001E709A /* Add.clickmask.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363108E88442001E709A /* Add.clickmask.png */; }; + 307E363608E88442001E709A /* Add.disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363208E88442001E709A /* Add.disabled.png */; }; + 307E363708E88442001E709A /* Add.mousedown.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363308E88442001E709A /* Add.mousedown.png */; }; + 307E363808E88442001E709A /* Add.active.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363008E88442001E709A /* Add.active.png */; }; + 307E363908E88442001E709A /* Add.clickmask.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363108E88442001E709A /* Add.clickmask.png */; }; + 307E363A08E88442001E709A /* Add.disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363208E88442001E709A /* Add.disabled.png */; }; + 307E363B08E88442001E709A /* Add.mousedown.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363308E88442001E709A /* Add.mousedown.png */; }; + 307E364008E88454001E709A /* Help.active.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363C08E88454001E709A /* Help.active.png */; }; + 307E364108E88454001E709A /* Help.clickmask.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363D08E88454001E709A /* Help.clickmask.png */; }; + 307E364208E88454001E709A /* Help.disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363E08E88454001E709A /* Help.disabled.png */; }; + 307E364308E88454001E709A /* Help.mousedown.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363F08E88454001E709A /* Help.mousedown.png */; }; + 307E364408E88454001E709A /* Help.active.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363C08E88454001E709A /* Help.active.png */; }; + 307E364508E88454001E709A /* Help.clickmask.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363D08E88454001E709A /* Help.clickmask.png */; }; + 307E364608E88454001E709A /* Help.disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363E08E88454001E709A /* Help.disabled.png */; }; + 307E364708E88454001E709A /* Help.mousedown.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E363F08E88454001E709A /* Help.mousedown.png */; }; + 307E364C08E88462001E709A /* Remove.active.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E364808E88462001E709A /* Remove.active.png */; }; + 307E364D08E88462001E709A /* Remove.clickmask.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E364908E88462001E709A /* Remove.clickmask.png */; }; + 307E364E08E88462001E709A /* Remove.disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E364A08E88462001E709A /* Remove.disabled.png */; }; + 307E364F08E88462001E709A /* Remove.mousedown.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E364B08E88462001E709A /* Remove.mousedown.png */; }; + 307E365008E88462001E709A /* Remove.active.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E364808E88462001E709A /* Remove.active.png */; }; + 307E365108E88462001E709A /* Remove.clickmask.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E364908E88462001E709A /* Remove.clickmask.png */; }; + 307E365208E88462001E709A /* Remove.disabled.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E364A08E88462001E709A /* Remove.disabled.png */; }; + 307E365308E88462001E709A /* Remove.mousedown.png in Resources */ = {isa = PBXBuildFile; fileRef = 307E364B08E88462001E709A /* Remove.mousedown.png */; }; 307FC4C0068F43CB00B9BA7C /* PlayerTableController.h in Headers */ = {isa = PBXBuildFile; fileRef = 308426AA0643ABD200173CCD /* PlayerTableController.h */; }; 307FC4C1068F43CC00B9BA7C /* PositionsController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3076CB5006675EC000C72BA4 /* PositionsController.h */; }; *************** *** 872,875 **** --- 896,911 ---- 307D961E063DA831008E2586 /* TeamTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TeamTest.h; sourceTree = "<group>"; }; 307D961F063DA831008E2586 /* TeamTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TeamTest.m; sourceTree = "<group>"; }; + 307E363008E88442001E709A /* Add.active.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Add.active.png; sourceTree = "<group>"; }; + 307E363108E88442001E709A /* Add.clickmask.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Add.clickmask.png; sourceTree = "<group>"; }; + 307E363208E88442001E709A /* Add.disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Add.disabled.png; sourceTree = "<group>"; }; + 307E363308E88442001E709A /* Add.mousedown.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Add.mousedown.png; sourceTree = "<group>"; }; + 307E363C08E88454001E709A /* Help.active.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Help.active.png; sourceTree = "<group>"; }; + 307E363D08E88454001E709A /* Help.clickmask.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Help.clickmask.png; sourceTree = "<group>"; }; + 307E363E08E88454001E709A /* Help.disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Help.disabled.png; sourceTree = "<group>"; }; + 307E363F08E88454001E709A /* Help.mousedown.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Help.mousedown.png; sourceTree = "<group>"; }; + 307E364808E88462001E709A /* Remove.active.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Remove.active.png; sourceTree = "<group>"; }; + 307E364908E88462001E709A /* Remove.clickmask.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Remove.clickmask.png; sourceTree = "<group>"; }; + 307E364A08E88462001E709A /* Remove.disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Remove.disabled.png; sourceTree = "<group>"; }; + 307E364B08E88462001E709A /* Remove.mousedown.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Remove.mousedown.png; sourceTree = "<group>"; }; 3083EF6D085C8C790006D9C5 /* ValueToColorTransformer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ValueToColorTransformer.h; sourceTree = "<group>"; }; 3083EF6E085C8C7A0006D9C5 /* ValueToColorTransformer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ValueToColorTransformer.m; sourceTree = "<group>"; }; *************** *** 1188,1194 **** 30BB2140067DC1CA00B1C71A /* Controller */, 29B97315FDCFA39411CA2CEA /* Other Sources */, 307D956A063D9208008E2586 /* Test */, 30D558060674F5590059F8D8 /* Images */, - 29B97317FDCFA39411CA2CEA /* Resources */, 301244D406F3298200DE7918 /* Scripts */, 30B355F80690131C00571DE8 /* Interfaces */, --- 1224,1230 ---- 30BB2140067DC1CA00B1C71A /* Controller */, 29B97315FDCFA39411CA2CEA /* Other Sources */, + 29B97317FDCFA39411CA2CEA /* Resources */, 307D956A063D9208008E2586 /* Test */, 30D558060674F5590059F8D8 /* Images */, 301244D406F3298200DE7918 /* Scripts */, 30B355F80690131C00571DE8 /* Interfaces */, *************** *** 1256,1259 **** --- 1292,1314 ---- sourceTree = "<group>"; }; + 307E362D08E8842E001E709A /* buttons */ = { + isa = PBXGroup; + children = ( + 307E364808E88462001E709A /* Remove.active.png */, + 307E364908E88462001E709A /* Remove.clickmask.png */, + 307E364A08E88462001E709A /* Remove.disabled.png */, + 307E364B08E88462001E709A /* Remove.mousedown.png */, + 307E363C08E88454001E709A /* Help.active.png */, + 307E363D08E88454001E709A /* Help.clickmask.png */, + 307E363E08E88454001E709A /* Help.disabled.png */, + 307E363F08E88454001E709A /* Help.mousedown.png */, + 307E363008E88442001E709A /* Add.active.png */, + 307E363108E88442001E709A /* Add.clickmask.png */, + 307E363208E88442001E709A /* Add.disabled.png */, + 307E363308E88442001E709A /* Add.mousedown.png */, + ); + name = buttons; + sourceTree = "<group>"; + }; 30B355F80690131C00571DE8 /* Interfaces */ = { isa = PBXGroup; *************** *** 1282,1288 **** isa = PBXGroup; children = ( ! 30626B6708DDB696005FE099 /* groups.icns */, ! 3069618A08D882450056662D /* customlist.icns */, ! 3069618708D8823C0056662D /* alllist.icns */, 30DE3F8C07C3F00700342677 /* formulas.tiff */, 30E8346D078DAD9700274608 /* flags */, --- 1337,1341 ---- isa = PBXGroup; children = ( ! 307E362D08E8842E001E709A /* buttons */, 30DE3F8C07C3F00700342677 /* formulas.tiff */, 30E8346D078DAD9700274608 /* flags */, *************** *** 1602,1605 **** --- 1655,1661 ---- isa = PBXGroup; children = ( + 3069618A08D882450056662D /* customlist.icns */, + 3069618708D8823C0056662D /* alllist.icns */, + 30626B6708DDB696005FE099 /* groups.icns */, 10A233D307327EA7007529F7 /* positions.icns */, 10A233D407327EA7007529F7 /* players.icns */, *************** *** 2413,2416 **** --- 2469,2484 ---- 3069618C08D882450056662D /* customlist.icns in Resources */, 30626B6908DDB697005FE099 /* groups.icns in Resources */, + 307E363808E88442001E709A /* Add.active.png in Resources */, + 307E363908E88442001E709A /* Add.clickmask.png in Resources */, + 307E363A08E88442001E709A /* Add.disabled.png in Resources */, + 307E363B08E88442001E709A /* Add.mousedown.png in Resources */, + 307E364408E88454001E709A /* Help.active.png in Resources */, + 307E364508E88454001E709A /* Help.clickmask.png in Resources */, + 307E364608E88454001E709A /* Help.disabled.png in Resources */, + 307E364708E88454001E709A /* Help.mousedown.png in Resources */, + 307E365008E88462001E709A /* Remove.active.png in Resources */, + 307E365108E88462001E709A /* Remove.clickmask.png in Resources */, + 307E365208E88462001E709A /* Remove.disabled.png in Resources */, + 307E365308E88462001E709A /* Remove.mousedown.png in Resources */, ); runOnlyForDeploymentPostprocessing = 0; *************** *** 2567,2570 **** --- 2635,2650 ---- 3069618B08D882450056662D /* customlist.icns in Resources */, 30626B6808DDB697005FE099 /* groups.icns in Resources */, + 307E363408E88442001E709A /* Add.active.png in Resources */, + 307E363508E88442001E709A /* Add.clickmask.png in Resources */, + 307E363608E88442001E709A /* Add.disabled.png in Resources */, + 307E363708E88442001E709A /* Add.mousedown.png in Resources */, + 307E364008E88454001E709A /* Help.active.png in Resources */, + 307E364108E88454001E709A /* Help.clickmask.png in Resources */, + 307E364208E88454001E709A /* Help.disabled.png in Resources */, + 307E364308E88454001E709A /* Help.mousedown.png in Resources */, + 307E364C08E88462001E709A /* Remove.active.png in Resources */, + 307E364D08E88462001E709A /* Remove.clickmask.png in Resources */, + 307E364E08E88462001E709A /* Remove.disabled.png in Resources */, + 307E364F08E88462001E709A /* Remove.mousedown.png in Resources */, ); runOnlyForDeploymentPostprocessing = 0; Index: roman.mode1 =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.mode1,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** roman.mode1 26 Sep 2005 17:47:38 -0000 1.16 --- roman.mode1 26 Sep 2005 19:33:59 -0000 1.17 *************** *** 186,190 **** <array/> <key>OpenEditors</key> ! <array/> <key>PerspectiveWidths</key> <array> --- 186,231 ---- <array/> <key>OpenEditors</key> ! <array> ! <dict> ! <key>Content</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>307E361808E88329001E709A</string> ! <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.m</string> ! <key>PBXSplitModuleInNavigatorKey</key> ! <dict> ! <key>Split0</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>307E362B08E8840F001E709A</string> ! <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.m</string> ! <key>_historyCapacity</key> ! <integer>0</integer> ! <key>bookmark</key> ! <string>307E362F08E88439001E709A</string> ! <key>history</key> ! <array> ! <string>307E361708E88329001E709A</string> ! </array> ! </dict> ! <key>SplitCount</key> ! <string>1</string> ! </dict> ! <key>StatusBarVisibility</key> ! <true/> ! </dict> ! <key>Geometry</key> ! <dict> ! <key>Frame</key> ! <string>{{0, 20}, {1051, 635}}</string> ! <key>PBXModuleWindowStatusBarHidden2</key> ! <false/> ! <key>RubberWindowFrame</key> ! <string>166 85 1051 676 0 0 1280 832 </string> ! </dict> ! </dict> ! </array> <key>PerspectiveWidths</key> <array> *************** *** 258,262 **** --- 299,307 ---- <array> <string>29B97314FDCFA39411CA2CEA</string> + <string>080E96DDFE201D6D7F000001</string> <string>30BB2140067DC1CA00B1C71A</string> + <string>307D956A063D9208008E2586</string> + <string>30D558060674F5590059F8D8</string> + <string>30E83458078DAC5D00274608</string> <string>1C37FBAC04509CD000000102</string> <string>1C37FAAC04509CD000000102</string> *************** *** 266,275 **** <array> <array> ! <integer>14</integer> <integer>0</integer> </array> </array> <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> ! <string>{{0, 0}, {244, 545}}</string> </dict> <key>PBXTopSmartGroupGIDs</key> --- 311,321 ---- <array> <array> ! <integer>23</integer> ! <integer>22</integer> <integer>0</integer> </array> </array> <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> ! <string>{{0, 354}, {244, 545}}</string> </dict> <key>PBXTopSmartGroupGIDs</key> *************** *** 306,310 **** <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableView.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 352,356 ---- <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>alllist.icns</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 314,322 **** <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableView.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>307E35BD08E86B81001E709A</string> <key>history</key> <array> --- 360,368 ---- <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>alllist.icns</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>307E362E08E88439001E709A</string> <key>history</key> <array> *************** *** 406,418 **** <string>30294092088EDB4100C9C2BC</string> <string>30294093088EDB4100C9C2BC</string> - <string>30424BE108D878FC0078B25B</string> - <string>306961B308D8CDA20056662D</string> <string>306961B408D8CDA20056662D</string> - <string>306961B508D8CDA20056662D</string> <string>306961B708D8CDA20056662D</string> <string>306961BA08D8CDA20056662D</string> <string>30B304C108DC4BDB00C0E803</string> <string>30B304C308DC4BDB00C0E803</string> - <string>30B304C408DC4BDB00C0E803</string> <string>302204BF08E078DB005CEB6C</string> <string>302204D308E07C42005CEB6C</string> --- 452,460 ---- *************** *** 422,430 **** <string>30E7292F08E56CD9005AC187</string> <string>30E7293008E56CD9005AC187</string> - <string>30E7296408E56FF4005AC187</string> <string>30E7297808E57078005AC187</string> <string>30E729AA08E583B2005AC187</string> <string>307E35BA08E86B81001E709A</string> ! <string>307E35BB08E86B81001E709A</string> </array> <key>prevStack</key> --- 464,477 ---- <string>30E7292F08E56CD9005AC187</string> <string>30E7293008E56CD9005AC187</string> <string>30E7297808E57078005AC187</string> <string>30E729AA08E583B2005AC187</string> <string>307E35BA08E86B81001E709A</string> ! <string>307E35D008E879A1001E709A</string> ! <string>307E361D08E8840F001E709A</string> ! <string>307E361E08E8840F001E709A</string> ! <string>307E361F08E8840F001E709A</string> ! <string>307E362008E8840F001E709A</string> ! <string>307E362108E8840F001E709A</string> ! <string>307E362208E8840F001E709A</string> </array> <key>prevStack</key> *************** *** 537,540 **** --- 584,596 ---- <string>302204D408E07C42005CEB6C</string> <string>307E35BC08E86B81001E709A</string> + <string>307E35D208E879A1001E709A</string> + <string>307E35D308E879A1001E709A</string> + <string>307E362308E8840F001E709A</string> + <string>307E362408E8840F001E709A</string> + <string>307E362508E8840F001E709A</string> + <string>307E362608E8840F001E709A</string> + <string>307E362708E8840F001E709A</string> + <string>307E362808E8840F001E709A</string> + <string>307E362908E8840F001E709A</string> </array> </dict> *************** *** 709,713 **** <false/> <key>PinnedNavigatorIdentifier</key> ! <string>30E7291C08E568E1005AC187</string> <key>ShelfIsVisible</key> <false/> --- 765,769 ---- <false/> <key>PinnedNavigatorIdentifier</key> ! <string>307E361808E88329001E709A</string> <key>ShelfIsVisible</key> <false/> *************** *** 732,740 **** <key>WindowOrderList</key> <array> ! <string>307E35B008E86A10001E709A</string> <string>1CD10A99069EF8BA00B06720</string> <string>1C0AD2B3069F1EA900FABCE6</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> - <string>1C530D57069F1CE1000CFCEE</string> </array> <key>WindowString</key> --- 788,797 ---- <key>WindowOrderList</key> <array> ! <string>1C530D57069F1CE1000CFCEE</string> <string>1CD10A99069EF8BA00B06720</string> + <string>307E35B008E86A10001E709A</string> + <string>307E361808E88329001E709A</string> <string>1C0AD2B3069F1EA900FABCE6</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> </array> <key>WindowString</key> *************** *** 942,946 **** <string>1CD10A99069EF8BA00B06720</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> --- 999,1003 ---- <string>1CD10A99069EF8BA00B06720</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> *************** *** 967,971 **** <string>1CDD528C0622207200134675</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableView.m</string> <key>StatusBarVisibility</key> <true/> --- 1024,1028 ---- <string>1CDD528C0622207200134675</string> <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> <key>StatusBarVisibility</key> <true/> *************** *** 1033,1037 **** <string>1C530D57069F1CE1000CFCEE</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> --- 1090,1094 ---- <string>1C530D57069F1CE1000CFCEE</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> *************** *** 1161,1165 **** <string>{{0, 0}, {1061, 332}}</string> <key>RubberWindowFrame</key> ! <string>349 119 1061 373 0 0 1280 832 </string> </dict> <key>Module</key> --- 1218,1222 ---- <string>{{0, 0}, {1061, 332}}</string> <key>RubberWindowFrame</key> ! <string>205 144 1061 373 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1191,1195 **** <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>349 119 1061 373 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> --- 1248,1252 ---- <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>205 144 1061 373 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> Index: roman.pbxuser =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.pbxuser,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** roman.pbxuser 26 Sep 2005 17:47:38 -0000 1.16 --- roman.pbxuser 26 Sep 2005 19:33:59 -0000 1.17 *************** *** 1123,1126 **** --- 1123,1174 ---- 307E35BC08E86B81001E709A /* PBXTextBookmark */ = 307E35BC08E86B81001E709A /* PBXTextBookmark */; 307E35BD08E86B81001E709A /* PBXTextBookmark */ = 307E35BD08E86B81001E709A /* PBXTextBookmark */; + 307E35C508E86CFB001E709A /* PBXTextBookmark */ = 307E35C508E86CFB001E709A /* PBXTextBookmark */; + 307E35C608E86CFB001E709A /* PBXTextBookmark */ = 307E35C608E86CFB001E709A /* PBXTextBookmark */; + 307E35CF08E879A1001E709A /* PBXTextBookmark */ = 307E35CF08E879A1001E709A /* PBXTextBookmark */; + 307E35D008E879A1001E709A /* PBXTextBookmark */ = 307E35D008E879A1001E709A /* PBXTextBookmark */; + 307E35D108E879A1001E709A /* PBXTextBookmark */ = 307E35D108E879A1001E709A /* PBXTextBookmark */; + 307E35D208E879A1001E709A /* PBXTextBookmark */ = 307E35D208E879A1001E709A /* PBXTextBookmark */; + 307E35D308E879A1001E709A /* PBXTextBookmark */ = 307E35D308E879A1001E709A /* PBXTextBookmark */; + 307E35D408E879A1001E709A /* PBXTextBookmark */ = 307E35D408E879A1001E709A /* PBXTextBookmark */; + 307E35D608E879A2001E709A /* PBXTextBookmark */ = 307E35D608E879A2001E709A /* PBXTextBookmark */; + 307E35D708E879A2001E709A /* PBXTextBookmark */ = 307E35D708E879A2001E709A /* PBXTextBookmark */; + 307E35D808E879A2001E709A /* PBXTextBookmark */ = 307E35D808E879A2001E709A /* PBXTextBookmark */; + 307E35D908E879A2001E709A /* PBXTextBookmark */ = 307E35D908E879A2001E709A /* PBXTextBookmark */; + 307E35DA08E879A2001E709A /* PBXTextBookmark */ = 307E35DA08E879A2001E709A /* PBXTextBookmark */; + 307E35DB08E879A2001E709A /* PBXTextBookmark */ = 307E35DB08E879A2001E709A /* PBXTextBookmark */; + 307E35DC08E879A2001E709A /* PBXTextBookmark */ = 307E35DC08E879A2001E709A /* PBXTextBookmark */; + 307E360808E88322001E709A /* PBXTextBookmark */ = 307E360808E88322001E709A /* PBXTextBookmark */; + 307E360908E88322001E709A /* PBXTextBookmark */ = 307E360908E88322001E709A /* PBXTextBookmark */; + 307E360A08E88322001E709A /* PBXTextBookmark */ = 307E360A08E88322001E709A /* PBXTextBookmark */; + 307E360B08E88322001E709A /* PBXTextBookmark */ = 307E360B08E88322001E709A /* PBXTextBookmark */; + 307E360C08E88322001E709A /* PBXTextBookmark */ = 307E360C08E88322001E709A /* PBXTextBookmark */; + 307E360D08E88322001E709A /* PBXTextBookmark */ = 307E360D08E88322001E709A /* PBXTextBookmark */; + 307E360E08E88322001E709A /* PBXTextBookmark */ = 307E360E08E88322001E709A /* PBXTextBookmark */; + 307E360F08E88322001E709A /* PBXTextBookmark */ = 307E360F08E88322001E709A /* PBXTextBookmark */; + 307E361008E88322001E709A /* PBXTextBookmark */ = 307E361008E88322001E709A /* PBXTextBookmark */; + 307E361108E88322001E709A /* PBXTextBookmark */ = 307E361108E88322001E709A /* PBXTextBookmark */; + 307E361208E88322001E709A /* PBXTextBookmark */ = 307E361208E88322001E709A /* PBXTextBookmark */; + 307E361308E88322001E709A /* PBXTextBookmark */ = 307E361308E88322001E709A /* PBXTextBookmark */; + 307E361408E88322001E709A /* PBXTextBookmark */ = 307E361408E88322001E709A /* PBXTextBookmark */; + 307E361508E88322001E709A /* PBXTextBookmark */ = 307E361508E88322001E709A /* PBXTextBookmark */; + 307E361608E88322001E709A /* PBXTextBookmark */ = 307E361608E88322001E709A /* PBXTextBookmark */; + 307E361708E88329001E709A /* PBXBookmark */ = 307E361708E88329001E709A /* PBXBookmark */; + 307E361D08E8840F001E709A /* PBXTextBookmark */ = 307E361D08E8840F001E709A /* PBXTextBookmark */; + 307E361E08E8840F001E709A /* PBXTextBookmark */ = 307E361E08E8840F001E709A /* PBXTextBookmark */; + 307E361F08E8840F001E709A /* PBXTextBookmark */ = 307E361F08E8840F001E709A /* PBXTextBookmark */; + 307E362008E8840F001E709A /* PBXBookmark */ = 307E362008E8840F001E709A /* PBXBookmark */; + 307E362108E8840F001E709A /* PBXBookmark */ = 307E362108E8840F001E709A /* PBXBookmark */; + 307E362208E8840F001E709A /* PBXBookmark */ = 307E362208E8840F001E709A /* PBXBookmark */; + 307E362308E8840F001E709A /* PBXTextBookmark */ = 307E362308E8840F001E709A /* PBXTextBookmark */; + 307E362408E8840F001E709A /* PBXTextBookmark */ = 307E362408E8840F001E709A /* PBXTextBookmark */; + 307E362508E8840F001E709A /* PBXTextBookmark */ = 307E362508E8840F001E709A /* PBXTextBookmark */; + 307E362608E8840F001E709A /* PBXTextBookmark */ = 307E362608E8840F001E709A /* PBXTextBookmark */; + 307E362708E8840F001E709A /* PBXBookmark */ = 307E362708E8840F001E709A /* PBXBookmark */; + 307E362808E8840F001E709A /* PBXBookmark */ = 307E362808E8840F001E709A /* PBXBookmark */; + 307E362908E8840F001E709A /* PBXBookmark */ = 307E362908E8840F001E709A /* PBXBookmark */; + 307E362A08E8840F001E709A /* PBXBookmark */ = 307E362A08E8840F001E709A /* PBXBookmark */; + 307E362C08E8840F001E709A /* PBXTextBookmark */ = 307E362C08E8840F001E709A /* PBXTextBookmark */; + 307E362E08E88439001E709A /* PBXBookmark */ = 307E362E08E88439001E709A /* PBXBookmark */; + 307E362F08E88439001E709A /* PBXTextBookmark */ = 307E362F08E88439001E709A /* PBXTextBookmark */; 3083EF22085C81F30006D9C5 = 3083EF22085C81F30006D9C5 /* PBXTextBookmark */; 3083EF9A085C98F60006D9C5 = 3083EF9A085C98F60006D9C5 /* PBXTextBookmark */; *************** *** 1470,1483 **** 30294065088ED7B500C9C2BC /* PlayerTableView.h */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1006, 603}}"; ! sepNavSelRange = "{2407, 0}"; ! sepNavVisRect = "{{0, 0}, {1006, 603}}"; }; }; 30294066088ED7B500C9C2BC /* PlayerTableView.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {848, 1344}}"; ! sepNavSelRange = "{2611, 0}"; ! sepNavVisRect = "{{0, 485}, {601, 277}}"; }; }; --- 1518,1531 ---- 30294065088ED7B500C9C2BC /* PlayerTableView.h */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {601, 588}}"; ! sepNavSelRange = "{2148, 0}"; ! sepNavVisRect = "{{0, 311}, {601, 277}}"; }; }; 30294066088ED7B500C9C2BC /* PlayerTableView.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {848, 1414}}"; ! sepNavSelRange = "{2778, 0}"; ! sepNavVisRect = "{{0, 555}, {601, 277}}"; }; }; *************** *** 1725,1731 **** 3041B58B06F623640055CB6D /* PlayerList.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1148, 5516}}"; ! sepNavSelRange = "{6246, 0}"; ! sepNavVisRect = "{{0, 2894}, {705, 437}}"; sepNavWindowFrame = "{{68, 216}, {1157, 604}}"; }; --- 1773,1779 ---- 3041B58B06F623640055CB6D /* PlayerList.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1148, 5614}}"; ! sepNavSelRange = "{9162, 0}"; ! sepNavVisRect = "{{0, 3528}, {1006, 603}}"; sepNavWindowFrame = "{{68, 216}, {1157, 604}}"; }; *************** *** 2234,2239 **** uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {984, 1666}}"; ! sepNavSelRange = "{2330, 12}"; ! sepNavVisRect = "{{0, 534}, {984, 176}}"; sepNavWindowFrame = "{{96, 112}, {1051, 708}}"; }; --- 2282,2287 ---- uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {984, 1666}}"; ! sepNavSelRange = "{2536, 14}"; ! sepNavVisRect = "{{0, 535}, {984, 176}}"; sepNavWindowFrame = "{{96, 112}, {1051, 708}}"; }; *************** *** 2337,2343 **** 3076CB5106675EC000C72BA4 /* PositionsController.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1006, 2730}}"; ! sepNavSelRange = "{2477, 0}"; ! sepNavVisRect = "{{0, 350}, {1006, 603}}"; sepNavWindowFrame = "{{359, 283}, {750, 534}}"; }; --- 2385,2391 ---- 3076CB5106675EC000C72BA4 /* PositionsController.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {984, 2730}}"; ! sepNavSelRange = "{2987, 261}"; ! sepNavVisRect = "{{0, 773}, {984, 176}}"; sepNavWindowFrame = "{{359, 283}, {750, 534}}"; }; *************** *** 2442,2446 **** fRef = 30294066088ED7B500C9C2BC /* PlayerTableView.m */; rLen = 0; ! rLoc = 2611; rType = 0; }; --- 2490,2494 ---- fRef = 30294066088ED7B500C9C2BC /* PlayerTableView.m */; rLen = 0; ! rLoc = 2722; rType = 0; }; *************** *** 2460,2468 **** name = "PlayerTableView.m: 45"; rLen = 0; ! rLoc = 2611; rType = 0; vrLen = 633; vrLoc = 2250; }; 3083EF22085C81F30006D9C5 /* PBXTextBookmark */ = { isa = PBXTextBookmark; --- 2508,2936 ---- name = "PlayerTableView.m: 45"; rLen = 0; ! rLoc = 2722; ! rType = 0; ! vrLen = 633; ! vrLoc = 2250; ! }; ! 307E35C508E86CFB001E709A /* PBXTextBookmark */ = { ! isa = PBXTextBookmark; ! fRef = 30294066088ED7B500C9C2BC /* PlayerTableView.m */; ! rLen = 5; ! rLoc = 2998; ! rType = 0; ! }; ! 307E35C608E86CFB001E709A /* PBXTextBookmark */ = { ! isa = PBXTextBookmark; ! fRef = 30294066088ED7B500C9C2BC /* PlayerTableView.m */; ! name = "NSLog(@\"event\");"; ! rLen = 21; ! rLoc = 2997; ! rType = 0; ! vrLen = 698; ! vrLoc = 3266; ! }; ! 307E35CF08E879A1001E709A /* PBXTextBookmark */ = { ! isa = PBXTextBookmark; ! fRef = 30294066088ED7B500C9C2BC /* PlayerTableView.m */; ! name = "PlayerTableView.m: 45"; ! rLen = 0; ! rLoc = 2722; ! rType = 0; ! vrLen = 633; ! vrLoc = 2250; ! }; ! 307E35D008E879A1001E709A /* PBXTextBookmark */ = { ! isa = PBXTextBookmark; ! fRef = 30BFF65508784A2300CC3E0E /* PlayerListsViewController.m */; ! name = "PlayerListsViewController.m: 37"; ! rLen = 0; ! rLoc = 2295; ! rType = 0; ! vrLen = 527; ! vrLoc = 2205; ! }; ! 307E35D108E879A1001E709A /* PBXTextBookmark */ = { ! isa = PBXTextBookmark; ! fRef = 3041B58B06F623640055CB6D /* PlayerList.m */; ! name = "- (BOOL) removePlayers: (NSArray*) players"; ! rLen = 42; ! rLoc = 8113; ! rType = 0; ! vrLen = 422; ! vrLoc = 6494; ! }; ! 307E35D208E879A1001E709A /* PBXTextBookmark */ = { ! isa = PBXTextBookmark; ! fRef = 30294066088ED7B500C9C2BC /* PlayerTableView.m */; ! name = "PlayerTableView.m: 45"; ! rLen = 0; ! rLoc = 2722; rType = 0; vrLen = 633; vrLoc = 2250; }; + 307E35D308E879A1001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30BFF65508784A2300CC3E0E /* PlayerListsViewController.m */; + name = "PlayerListsViewController.m: 37"; + rLen = 0; + rLoc = 2295; + rType = 0; + vrLen = 527; + vrLoc = 2205; + }; + 307E35D408E879A1001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 3041B58B06F623640055CB6D /* PlayerList.m */; + name = "PlayerList.m: 43"; + rLen = 0; + rLoc = 2503; + rType = 0; + vrLen = 705; + vrLoc = 2189; + }; + 307E35D608E879A2001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30BFF65408784A2300CC3E0E /* PlayerListsViewController.h */; + name = "PlayerListsViewController.h: 46"; + rLen = 0; + rLoc = 2688; + rType = 0; + vrLen = 2446; + vrLoc = 243; + }; + 307E35D708E879A2001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30BFF65508784A2300CC3E0E /* PlayerListsViewController.m */; + name = "PlayerListsViewController.m: 38"; + rLen = 0; + rLoc = 2304; + rType = 0; + vrLen = 1130; + vrLoc = 2247; + }; + 307E35D808E879A2001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30BFF65508784A2300CC3E0E /* PlayerListsViewController.m */; + name = "PlayerListsViewController.m: 38"; + rLen = 0; + rLoc = 2304; + rType = 0; + vrLen = 1275; + vrLoc = 2726; + }; + 307E35D908E879A2001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30BFF65408784A2300CC3E0E /* PlayerListsViewController.h */; + name = PlayerListsViewController; + rLen = 25; + rLoc = 2184; + rType = 0; + vrLen = 2683; + vrLoc = 0; + }; + 307E35DA08E879A2001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30BFF65508784A2300CC3E0E /* PlayerListsViewController.m */; + name = "PlayerListsViewController.m: 38"; + rLen = 0; + rLoc = 2304; + rType = 0; + vrLen = 1130; + vrLoc = 2247; + }; + 307E35DB08E879A2001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30BFF65408784A2300CC3E0E /* PlayerListsViewController.h */; + name = "PlayerListsViewController.h: 46"; + rLen = 0; + rLoc = 2688; + rType = 0; + vrLen = 2446; + vrLoc = 243; + }; + 307E35DC08E879A2001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30BFF65508784A2300CC3E0E /* PlayerListsViewController.m */; + name = setPlayerLists; + rLen = 14; + rLoc = 2798; + rType = 0; + vrLen = 1180; + vrLoc = 2205; + }; + 307E360808E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30294066088ED7B500C9C2BC /* PlayerTableView.m */; + name = "NSLog(@\"event\");"; + rLen = 21; + rLoc = 2997; + rType = 0; + vrLen = 698; + vrLoc = 3266; + }; + 307E360908E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 306D2F7A068AC8EB00CB623F /* MainWindowController.m */; + name = setPlayerLists; + rLen = 14; + rLoc = 2536; + rType = 0; + vrLen = 425; + vrLoc = 2325; + }; + 307E360A08E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30BFF65508784A2300CC3E0E /* PlayerListsViewController.m */; + name = setPlayerLists; + rLen = 14; + rLoc = 2304; + rType = 0; + vrLen = 324; + vrLoc = 2204; + }; + 307E360B08E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30A1800D0640E5C300D2836F /* Player.h */; + name = differenceTo; + rLen = 12; + rLoc = 2411; + rType = 0; + vrLen = 300; + vrLoc = 2251; + }; + 307E360C08E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30A1800F0640E5C300D2836F /* Player.m */; + name = setSelectedDate; + rLen = 15; + rLoc = 5629; + rType = 0; + vrLen = 380; + vrLoc = 5567; + }; + 307E360D08E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 308426AB0643ABD200173CCD /* PlayerTableController.m */; + name = setSelectedDate; + rLen = 15; + rLoc = 4154; + rType = 0; + vrLen = 379; + vrLoc = 3529; + }; + 307E360E08E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 3076CB5106675EC000C72BA4 /* PositionsController.m */; + rLen = 7; + rLoc = 2829; + rType = 0; + }; + 307E360F08E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30294066088ED7B500C9C2BC /* PlayerTableView.m */; + name = "NSLog(@\"event\");"; + rLen = 21; + rLoc = 2997; + rType = 0; + vrLen = 698; + vrLoc = 3266; + }; + 307E361008E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30BFF65508784A2300CC3E0E /* PlayerListsViewController.m */; + name = setPlayerLists; + rLen = 14; + rLoc = 2304; + rType = 0; + vrLen = 324; + vrLoc = 2204; + }; + 307E361108E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 306D2F7A068AC8EB00CB623F /* MainWindowController.m */; + name = setPlayerLists; + rLen = 14; + rLoc = 2536; + rType = 0; + vrLen = 425; + vrLoc = 2325; + }; + 307E361208E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30BFF65508784A2300CC3E0E /* PlayerListsViewController.m */; + name = setPlayerLists; + rLen = 14; + rLoc = 2304; + rType = 0; + vrLen = 324; + vrLoc = 2204; + }; + 307E361308E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30A1800D0640E5C300D2836F /* Player.h */; + name = differenceTo; + rLen = 12; + rLoc = 2411; + rType = 0; + vrLen = 300; + vrLoc = 2251; + }; + 307E361408E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30A1800F0640E5C300D2836F /* Player.m */; + name = setSelectedDate; + rLen = 15; + rLoc = 5629; + rType = 0; + vrLen = 380; + vrLoc = 5567; + }; + 307E361508E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 308426AB0643ABD200173CCD /* PlayerTableController.m */; + name = setSelectedDate; + rLen = 15; + rLoc = 4154; + rType = 0; + vrLen = 379; + vrLoc = 3529; + }; + 307E361608E88322001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 3076CB5106675EC000C72BA4 /* PositionsController.m */; + name = "PositionsController.m: 60"; + rLen = 261; + rLoc = 2987; + rType = 0; + vrLen = 458; + vrLoc = 2813; + }; + 307E361708E88329001E709A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 308426AB0643ABD200173CCD /* PlayerTableController.m */; + }; + 307E361D08E8840F001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 3041B58B06F623640055CB6D /* PlayerList.m */; + name = "PlayerList.m: 43"; + rLen = 0; + rLoc = 2503; + rType = 0; + vrLen = 705; + vrLoc = 2189; + }; + 307E361E08E8840F001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30294065088ED7B500C9C2BC /* PlayerTableView.h */; + name = "PlayerTableView.h: 29"; + rLen = 0; + rLoc = 2148; + rType = 0; + vrLen = 671; + vrLoc = 1742; + }; + 307E361F08E8840F001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30294066088ED7B500C9C2BC /* PlayerTableView.m */; + name = "PlayerTableView.m: 52"; + rLen = 0; + rLoc = 2778; + rType = 0; + vrLen = 443; + vrLoc = 2551; + }; + 307E362008E8840F001E709A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 3069618A08D882450056662D /* customlist.icns */; + }; + 307E362108E8840F001E709A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 30DE3F8C07C3F00700342677 /* formulas.tiff */; + }; + 307E362208E8840F001E709A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 3069618708D8823C0056662D /* alllist.icns */; + }; + 307E362308E8840F001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 3041B58B06F623640055CB6D /* PlayerList.m */; + name = "PlayerList.m: 43"; + rLen = 0; + rLoc = 2503; + rType = 0; + vrLen = 705; + vrLoc = 2189; + }; + 307E362408E8840F001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30294066088ED7B500C9C2BC /* PlayerTableView.m */; + name = "PlayerTableView.m: 45"; + rLen = 0; + rLoc = 2722; + rType = 0; + vrLen = 599; + vrLoc = 2284; + }; + 307E362508E8840F001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30294065088ED7B500C9C2BC /* PlayerTableView.h */; + name = "PlayerTableView.h: 29"; + rLen = 0; + rLoc = 2148; + rType = 0; + vrLen = 671; + vrLoc = 1742; + }; + 307E362608E8840F001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 30294066088ED7B500C9C2BC /* PlayerTableView.m */; + name = "PlayerTableView.m: 52"; + rLen = 0; + rLoc = 2778; + rType = 0; + vrLen = 443; + vrLoc = 2551; + }; + 307E362708E8840F001E709A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 3069618708D8823C0056662D /* alllist.icns */; + }; + 307E362808E8840F001E709A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 3069618A08D882450056662D /* customlist.icns */; + }; + 307E362908E8840F001E709A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 30DE3F8C07C3F00700342677 /* formulas.tiff */; + }; + 307E362A08E8840F001E709A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 3069618708D8823C0056662D /* alllist.icns */; + }; + 307E362C08E8840F001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 308426AB0643ABD200173CCD /* PlayerTableController.m */; + name = "PlayerTableController.m: 68"; + rLen = 0; + rLoc = 3388; + rType = 0; + vrLen = 1262; + vrLoc = 2809; + }; + 307E362E08E88439001E709A /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = 3069618708D8823C0056662D /* alllist.icns */; + }; + 307E362F08E88439001E709A /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 308426AB0643ABD200173CCD /* PlayerTableController.m */; + name = "PlayerTableController.m: 68"; + rLen = 0; + rLoc = 3388; + rType = 0; + vrLen = 1262; + vrLoc = 2809; + }; 3083EF22085C81F30006D9C5 /* PBXTextBookmark */ = { isa = PBXTextBookmark; *************** *** 2601,2607 **** 308426AA0643ABD200173CCD /* PlayerTableController.h */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1054, 784}}"; sepNavSelRange = "{2767, 0}"; ! sepNavVisRect = "{{0, 343}, {1054, 326}}"; sepNavWindowFrame = "{{346, 244}, {750, 542}}"; }; --- 3069,3075 ---- 308426AA0643ABD200173CCD /* PlayerTableController.h */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1006, 784}}"; sepNavSelRange = "{2767, 0}"; ! sepNavVisRect = "{{0, 181}, {1006, 603}}"; sepNavWindowFrame = "{{346, 244}, {750, 542}}"; }; *************** *** 2609,2616 **** 308426AB0643ABD200173CCD /* PlayerTableController.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {602, 1778}}"; ! sepNavSelRange = "{3053, 21}"; ! sepNavVisRect = "{{0, 3}, {601, 277}}"; ! sepNavWindowFrame = "{{636, 93}, {921, 656}}"; }; }; --- 3077,3084 ---- 308426AB0643ABD200173CCD /* PlayerTableController.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1006, 2002}}"; ! sepNavSelRange = "{3388, 0}"; ! sepNavVisRect = "{{0, 701}, {1006, 603}}"; ! sepNavWindowFrame = "{{166, 53}, {1051, 708}}"; }; }; *************** *** 2981,2987 **** 30A1800D0640E5C300D2836F /* Player.h */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1112, 1960}}"; ! sepNavSelRange = "{2874, 5}"; ! sepNavVisRect = "{{0, 682}, {1112, 499}}"; sepNavWindowFrame = "{{164, 95}, {927, 685}}"; }; --- 3449,3455 ---- 30A1800D0640E5C300D2836F /* Player.h */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1006, 1960}}"; ! sepNavSelRange = "{4374, 27}"; ! sepNavVisRect = "{{0, 1357}, {1006, 603}}"; sepNavWindowFrame = "{{164, 95}, {927, 685}}"; }; *************** *** 2997,3003 **** 30A1800F0640E5C300D2836F /* Player.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1112, 5992}}"; ! sepNavSelRange = "{7284, 0}"; ! sepNavVisRect = "{{0, 2914}, {1112, 499}}"; sepNavWindowFrame = "{{61, 251}, {750, 534}}"; }; --- 3465,3471 ---- 30A1800F0640E5C300D2836F /* Player.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1058, 5992}}"; ! sepNavSelRange = "{5629, 15}"; ! sepNavVisRect = "{{0, 1991}, {984, 176}}"; sepNavWindowFrame = "{{61, 251}, {750, 534}}"; }; *************** *** 3228,3232 **** uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1006, 658}}"; ! sepNavSelRange = "{2184, 25}"; sepNavVisRect = "{{0, 55}, {1006, 603}}"; sepNavWindowFrame = "{{65, 120}, {936, 647}}"; --- 3696,3700 ---- uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {1006, 658}}"; ! sepNavSelRange = "{2688, 0}"; sepNavVisRect = "{{0, 55}, {1006, 603}}"; sepNavWindowFrame = "{{65, 120}, {936, 647}}"; *************** *** 3235,3241 **** 30BFF65508784A2300CC3E0E /* PlayerListsViewController.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {1006, 1302}}"; ! sepNavSelRange = "{2295, 0}"; ! sepNavVisRect = "{{0, 354}, {1006, 603}}"; sepNavWindowFrame = "{{96, 112}, {1051, 708}}"; }; --- 3703,3709 ---- 30BFF65508784A2300CC3E0E /* PlayerListsViewController.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {984, 1316}}"; ! sepNavSelRange = "{2304, 14}"; ! sepNavVisRect = "{{0, 437}, {984, 176}}"; sepNavWindowFrame = "{{96, 112}, {1051, 708}}"; }; *************** *** 4506,4510 **** name = "PlayerTableView.m: 40"; rLen = 0; ! rLoc = 2560; rType = 0; vrLen = 933; --- 4974,4978 ---- name = "PlayerTableView.m: 40"; rLen = 0; ! rLoc = 2623; rType = 0; vrLen = 933; *************** *** 4516,4520 **** name = removeSelectedPlayers; rLen = 21; ! rLoc = 3053; rType = 0; vrLen = 1599; --- 4984,4988 ---- name = removeSelectedPlayers; rLen = 21; ! rLoc = 3595; rType = 0; vrLen = 1599; |
|
From: Geisschaes <gei...@us...> - 2005-09-26 17:47:54
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PlayerListsView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5918/English.lproj/PlayerListsView.nib Modified Files: info.nib keyedobjects.nib Log Message: size of playerlist changed Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerListsView.nib/info.nib,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** info.nib 14 Sep 2005 17:11:11 -0000 1.3 --- info.nib 26 Sep 2005 17:47:38 -0000 1.4 *************** *** 8,12 **** <dict> <key>6</key> ! <string>567 257 182 509 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> --- 8,12 ---- <dict> <key>6</key> ! <string>549 313 182 509 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerListsView.nib/keyedobjects.nib,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 Binary files /tmp/cvsIHVTan and /tmp/cvsNH6A8x differ |
|
From: Geisschaes <gei...@us...> - 2005-09-26 17:47:51
|
Update of /cvsroot/macattrick/macattrick/Macattrick.xcodeproj In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5918/Macattrick.xcodeproj Modified Files: roman.mode1 roman.pbxuser Log Message: size of playerlist changed Index: roman.mode1 =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.mode1,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** roman.mode1 24 Sep 2005 11:50:31 -0000 1.15 --- roman.mode1 26 Sep 2005 17:47:38 -0000 1.16 *************** *** 186,251 **** <array/> <key>OpenEditors</key> ! <array> ! <dict> ! <key>Content</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>30E7291C08E568E1005AC187</string> ! <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> ! <key>PBXSplitModuleInNavigatorKey</key> ! <dict> ! <key>Split0</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>30E7293608E56CD9005AC187</string> ! <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> ! <key>_historyCapacity</key> ! <integer>0</integer> ! <key>bookmark</key> ! <string>30E7298908E57183005AC187</string> ! <key>history</key> ! <array> ! <string>30E7293708E56CD9005AC187</string> ! <string>30E7293808E56CD9005AC187</string> ! <string>30E7293908E56CD9005AC187</string> ! <string>30E7293A08E56CD9005AC187</string> ! <string>30E7296808E56FF4005AC187</string> ! <string>30E7296908E56FF4005AC187</string> ! <string>30E7296108E56F93005AC187</string> ! </array> ! <key>prevStack</key> ! <array> ! <string>30E7293C08E56CD9005AC187</string> ! <string>30E7293D08E56CD9005AC187</string> ! <string>30E7293E08E56CD9005AC187</string> ! <string>30E7293F08E56CD9005AC187</string> ! <string>30E7294008E56CD9005AC187</string> ! <string>30E7294108E56CD9005AC187</string> ! <string>30E7294208E56CD9005AC187</string> ! <string>30E7294308E56CD9005AC187</string> ! <string>30E7296A08E56FF4005AC187</string> ! <string>30E7296B08E56FF4005AC187</string> ! <string>30E7296C08E56FF4005AC187</string> ! </array> ! </dict> ! <key>SplitCount</key> ! <string>1</string> ! </dict> ! <key>StatusBarVisibility</key> ! <true/> ! </dict> ! <key>Geometry</key> ! <dict> ! <key>Frame</key> ! <string>{{0, 20}, {1051, 635}}</string> ! <key>PBXModuleWindowStatusBarHidden2</key> ! <false/> ! <key>RubberWindowFrame</key> ! <string>96 144 1051 676 0 0 1280 832 </string> ! </dict> ! </dict> ! </array> <key>PerspectiveWidths</key> <array> --- 186,190 ---- <array/> <key>OpenEditors</key> ! <array/> <key>PerspectiveWidths</key> <array> *************** *** 281,284 **** --- 220,225 ---- <array> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 325,330 **** <array> <array> ! <integer>8</integer> ! <integer>3</integer> <integer>0</integer> </array> --- 266,270 ---- <array> <array> ! <integer>14</integer> <integer>0</integer> </array> *************** *** 366,370 **** <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>MainWindowController.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 306,310 ---- <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableView.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 374,382 **** <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>MainWindowController.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>30E7298808E57183005AC187</string> <key>history</key> <array> --- 314,322 ---- <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableView.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>307E35BD08E86B81001E709A</string> <key>history</key> <array> *************** *** 456,460 **** <string>30D32404088C364C0010BC3F</string> <string>30E30128088D5A51003395B7</string> - <string>30E30146088D5D33003395B7</string> <string>30E30147088D5D33003395B7</string> <string>30E30148088D5D33003395B7</string> --- 396,399 ---- *************** *** 480,484 **** <string>302204E908E0805B005CEB6C</string> <string>30E728D008E564ED005AC187</string> - <string>30E728D108E564ED005AC187</string> <string>30E728D208E564ED005AC187</string> <string>30E7292F08E56CD9005AC187</string> --- 419,422 ---- *************** *** 486,490 **** <string>30E7296408E56FF4005AC187</string> <string>30E7297808E57078005AC187</string> ! <string>30E7294F08E56D43005AC187</string> </array> <key>prevStack</key> --- 424,430 ---- <string>30E7296408E56FF4005AC187</string> <string>30E7297808E57078005AC187</string> ! <string>30E729AA08E583B2005AC187</string> ! <string>307E35BA08E86B81001E709A</string> ! <string>307E35BB08E86B81001E709A</string> </array> <key>prevStack</key> *************** *** 596,612 **** <string>302204C208E078DB005CEB6C</string> <string>302204D408E07C42005CEB6C</string> ! <string>30E728D608E564ED005AC187</string> ! <string>30E728D708E564ED005AC187</string> ! <string>30E728D808E564ED005AC187</string> ! <string>30E728D908E564ED005AC187</string> ! <string>30E728DA08E564ED005AC187</string> ! <string>30E728DB08E564ED005AC187</string> ! <string>30E728DC08E564ED005AC187</string> ! <string>30E728DD08E564ED005AC187</string> ! <string>30E7293208E56CD9005AC187</string> ! <string>30E7293308E56CD9005AC187</string> ! <string>30E7293408E56CD9005AC187</string> ! <string>30E7296608E56FF4005AC187</string> ! <string>30E7297908E57078005AC187</string> </array> </dict> --- 536,540 ---- <string>302204C208E078DB005CEB6C</string> <string>302204D408E07C42005CEB6C</string> ! <string>307E35BC08E86B81001E709A</string> </array> </dict> *************** *** 630,635 **** </dict> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> --- 558,561 ---- *************** *** 668,674 **** <key>TableOfContents</key> <array> ! <string>30E728DF08E564ED005AC187</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>30E728E008E564ED005AC187</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> --- 594,600 ---- <key>TableOfContents</key> <array> ! <string>307E35BE08E86B81001E709A</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>307E35BF08E86B81001E709A</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> *************** *** 806,820 **** <key>WindowOrderList</key> <array> ! <string>30E728F808E564ED005AC187</string> ! <string>30E728F908E564ED005AC187</string> ! <string>1C530D57069F1CE1000CFCEE</string> ! <string>30E728F208E564ED005AC187</string> ! <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> ! <string>30A82A48082E9E83003C97DB</string> ! <string>30E7291C08E568E1005AC187</string> ! <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>30BE4823082FED6F00826659</string> ! <string>30E7297608E57063005AC187</string> <string>1CD10A99069EF8BA00B06720</string> </array> <key>WindowString</key> --- 732,740 ---- <key>WindowOrderList</key> <array> ! <string>307E35B008E86A10001E709A</string> <string>1CD10A99069EF8BA00B06720</string> + <string>1C0AD2B3069F1EA900FABCE6</string> + <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> + <string>1C530D57069F1CE1000CFCEE</string> </array> <key>WindowString</key> *************** *** 942,947 **** <key>sizes</key> <array> ! <string>{{0, 0}, {294, 415}}</string> ! <string>{{294, 0}, {726, 415}}</string> </array> </dict> --- 862,867 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {265, 409}}</string> ! <string>{{265, 0}, {755, 409}}</string> </array> </dict> *************** *** 958,963 **** <key>sizes</key> <array> ! <string>{{0, 0}, {1020, 415}}</string> ! <string>{{0, 415}, {1020, 225}}</string> </array> </dict> --- 878,883 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {1020, 409}}</string> ! <string>{{0, 409}, {1020, 231}}</string> </array> </dict> *************** *** 983,987 **** <string>{{0, 0}, {1020, 640}}</string> <key>RubberWindowFrame</key> ! <string>88 114 1020 681 0 0 1280 832 </string> </dict> <key>Module</key> --- 903,907 ---- <string>{{0, 0}, {1020, 640}}</string> <key>RubberWindowFrame</key> ! <string>162 122 1020 681 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1006,1022 **** <array> <string>1CD10A99069EF8BA00B06720</string> ! <string>30E728EC08E564ED005AC187</string> <string>1C162984064C10D400B95A72</string> ! <string>30E728ED08E564ED005AC187</string> ! <string>30E728EE08E564ED005AC187</string> ! <string>30E728EF08E564ED005AC187</string> ! <string>30E728F008E564ED005AC187</string> ! <string>30E728F108E564ED005AC187</string> ! <string>30E728F208E564ED005AC187</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.debug</string> <key>WindowString</key> ! <string>88 114 1020 681 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1CD10A99069EF8BA00B06720</string> --- 926,942 ---- <array> <string>1CD10A99069EF8BA00B06720</string> ! <string>307E35AA08E86A10001E709A</string> <string>1C162984064C10D400B95A72</string> ! <string>307E35AB08E86A10001E709A</string> ! <string>307E35AC08E86A10001E709A</string> ! <string>307E35AD08E86A10001E709A</string> ! <string>307E35AE08E86A10001E709A</string> ! <string>307E35AF08E86A10001E709A</string> ! <string>307E35B008E86A10001E709A</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.debug</string> <key>WindowString</key> ! <string>162 122 1020 681 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1CD10A99069EF8BA00B06720</string> *************** *** 1047,1051 **** <string>1CDD528C0622207200134675</string> <key>PBXProjectModuleLabel</key> ! <string>MainWindowController.m</string> <key>StatusBarVisibility</key> <true/> --- 967,971 ---- <string>1CDD528C0622207200134675</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableView.m</string> <key>StatusBarVisibility</key> <true/> *************** *** 1103,1108 **** <array> <string>1C530D57069F1CE1000CFCEE</string> ! <string>30E728F308E564ED005AC187</string> ! <string>30E728F408E564ED005AC187</string> <string>1CDD528C0622207200134675</string> <string>1CD0528E0623707200166675</string> --- 1023,1028 ---- <array> <string>1C530D57069F1CE1000CFCEE</string> ! <string>307E35C008E86B81001E709A</string> ! <string>307E35C108E86B81001E709A</string> <string>1CDD528C0622207200134675</string> <string>1CD0528E0623707200166675</string> *************** *** 1113,1117 **** <string>1C530D57069F1CE1000CFCEE</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> --- 1033,1037 ---- <string>1C530D57069F1CE1000CFCEE</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> *************** *** 1214,1219 **** <key>sizes</key> <array> ! <string>{{0, 0}, {493, 168}}</string> ! <string>{{0, 173}, {493, 270}}</string> </array> </dict> --- 1134,1139 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {366, 168}}</string> ! <string>{{0, 173}, {366, 270}}</string> </array> </dict> *************** *** 1241,1245 **** <string>{{0, 0}, {1061, 332}}</string> <key>RubberWindowFrame</key> ! <string>175 172 1061 373 0 0 1280 832 </string> </dict> <key>Module</key> --- 1161,1165 ---- <string>{{0, 0}, {1061, 332}}</string> <key>RubberWindowFrame</key> ! <string>349 119 1061 373 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1264,1275 **** <array> <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>30E728F608E564ED005AC187</string> <string>1CD0528B0623707200166675</string> ! <string>30E728F708E564ED005AC187</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>175 172 1061 373 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> --- 1184,1195 ---- <array> <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>307E35B108E86A10001E709A</string> <string>1CD0528B0623707200166675</string> ! <string>307E35B208E86A10001E709A</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>349 119 1061 373 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> *************** *** 1390,1393 **** --- 1310,1315 ---- <array> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 1418,1425 **** --- 1340,1350 ---- <array> <string>1C77FABC04509CD000000102</string> + <string>1C3E0DCA080725EA00A55177</string> + <string>1C3E0DCC080725EA11A45113</string> </array> <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key> <array> <array> + <integer>15</integer> <integer>0</integer> </array> *************** *** 1451,1456 **** </dict> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> --- 1376,1379 ---- Index: roman.pbxuser =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.pbxuser,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** roman.pbxuser 24 Sep 2005 11:50:31 -0000 1.15 --- roman.pbxuser 26 Sep 2005 17:47:38 -0000 1.16 *************** *** 230,234 **** ); }; ! PBXPerProjectTemplateStateSaveDate = 149246405; PBXPrepackagedSmartGroups_v2 = ( { --- 230,234 ---- ); }; ! PBXPerProjectTemplateStateSaveDate = 149449223; PBXPrepackagedSmartGroups_v2 = ( [...1815 lines suppressed...] ! command = ""; ! fallbackIsa = XCBreakpointAction; ! logCommand = 0; ! useDebuggerSideImplementation = 1; }; 30EC0BDE06425043008B3F6B /* HattrickOrg.h */ = { --- 4635,4647 ---- vrLoc = 2230; }; ! 30E729AD08E583B2005AC187 /* PBXTextBookmark */ = { isa = PBXTextBookmark; ! fRef = 306D2FC3068AC9CB00CB623F /* TeamController.m */; ! name = "TeamController.m: 38"; rLen = 0; ! rLoc = 2304; rType = 0; ! vrLen = 267; ! vrLoc = 2148; }; 30EC0BDE06425043008B3F6B /* HattrickOrg.h */ = { |
|
From: Geisschaes <gei...@us...> - 2005-09-26 17:47:50
|
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5918 Modified Files: PlayerTableView.h PlayerTableView.m Log Message: size of playerlist changed Index: PlayerTableView.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableView.m,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PlayerTableView.m 17 Sep 2005 16:22:27 -0000 1.3 --- PlayerTableView.m 26 Sep 2005 17:47:38 -0000 1.4 *************** *** 42,45 **** --- 42,49 ---- } + - (void)mouseDown:(NSEvent *)event { + [self updateContextMenu]; + [super mouseDown:event]; + } - (id) controller { return controller; } *************** *** 50,53 **** --- 54,58 ---- } - (IBAction) showDetails: (id) sender { + NSLog(@"event"); [controller doubleClicked]; } *************** *** 61,64 **** --- 66,73 ---- } - (void) awakeFromNib { + [self updateContextMenu]; + } + + - (void) updateContextMenu { NSMenu *men = [[NSMenu alloc] init]; [men addItemWithTitle:NSLocalizedString(@"Show Details",@"Show Details") action:@selector(showDetails:) keyEquivalent:@""]; *************** *** 66,69 **** --- 75,79 ---- NSMenu *groupMenu = [[NSMenu alloc] init]; NSArray *groups = [[Team currentTeam] userDefinedPlayerLists]; + NSLog(@"%@", groups); NSEnumerator *en = [groups objectEnumerator]; PlayerList *current; *************** *** 81,84 **** --- 91,95 ---- [men release]; [gr release]; + } @end Index: PlayerTableView.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableView.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PlayerTableView.h 24 Sep 2005 11:50:30 -0000 1.3 --- PlayerTableView.h 26 Sep 2005 17:47:38 -0000 1.4 *************** *** 38,41 **** - (IBAction) showDetails: (id) sender; - (IBAction) deletePlayer: (id)sender; ! @end --- 38,41 ---- - (IBAction) showDetails: (id) sender; - (IBAction) deletePlayer: (id)sender; ! - (void) updateContextMenu; @end |
|
From: Gfive <gf...@us...> - 2005-09-26 14:06:14
|
Update of /cvsroot/macattrick/macattrick/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15394/images Modified Files: alllist.icns customlist.icns groups.icns playerinfo.icns Log Message: icon update Index: groups.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/groups.icns,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsrUBYtY and /tmp/cvsUphcOI differ Index: playerinfo.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/playerinfo.icns,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsq4kGw2 and /tmp/cvsXMm8UM differ Index: alllist.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/alllist.icns,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsm7qxq1 and /tmp/cvsTOD2RL differ Index: customlist.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/customlist.icns,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsJ5wPT4 and /tmp/cvsJbKioP differ |
|
From: Geisschaes <gei...@us...> - 2005-09-24 11:50:39
|
Update of /cvsroot/macattrick/macattrick/Macattrick.xcodeproj In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26871/Macattrick.xcodeproj Modified Files: roman.mode1 roman.pbxuser Log Message: memory bug fixed. no more crash after login Index: roman.mode1 =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.mode1,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** roman.mode1 18 Sep 2005 14:55:14 -0000 1.14 --- roman.mode1 24 Sep 2005 11:50:31 -0000 1.15 *************** *** 186,190 **** <array/> <key>OpenEditors</key> ! <array/> <key>PerspectiveWidths</key> <array> --- 186,251 ---- <array/> <key>OpenEditors</key> ! <array> ! <dict> ! <key>Content</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>30E7291C08E568E1005AC187</string> ! <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> ! <key>PBXSplitModuleInNavigatorKey</key> ! <dict> ! <key>Split0</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>30E7293608E56CD9005AC187</string> ! <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> ! <key>_historyCapacity</key> ! <integer>0</integer> ! <key>bookmark</key> ! <string>30E7298908E57183005AC187</string> ! <key>history</key> ! <array> ! <string>30E7293708E56CD9005AC187</string> ! <string>30E7293808E56CD9005AC187</string> ! <string>30E7293908E56CD9005AC187</string> ! <string>30E7293A08E56CD9005AC187</string> ! <string>30E7296808E56FF4005AC187</string> ! <string>30E7296908E56FF4005AC187</string> ! <string>30E7296108E56F93005AC187</string> ! </array> ! <key>prevStack</key> ! <array> ! <string>30E7293C08E56CD9005AC187</string> ! <string>30E7293D08E56CD9005AC187</string> ! <string>30E7293E08E56CD9005AC187</string> ! <string>30E7293F08E56CD9005AC187</string> ! <string>30E7294008E56CD9005AC187</string> ! <string>30E7294108E56CD9005AC187</string> ! <string>30E7294208E56CD9005AC187</string> ! <string>30E7294308E56CD9005AC187</string> ! <string>30E7296A08E56FF4005AC187</string> ! <string>30E7296B08E56FF4005AC187</string> ! <string>30E7296C08E56FF4005AC187</string> ! </array> ! </dict> ! <key>SplitCount</key> ! <string>1</string> ! </dict> ! <key>StatusBarVisibility</key> ! <true/> ! </dict> ! <key>Geometry</key> ! <dict> ! <key>Frame</key> ! <string>{{0, 20}, {1051, 635}}</string> ! <key>PBXModuleWindowStatusBarHidden2</key> ! <false/> ! <key>RubberWindowFrame</key> ! <string>96 144 1051 676 0 0 1280 832 </string> ! </dict> ! </dict> ! </array> <key>PerspectiveWidths</key> <array> *************** *** 257,261 **** <string>29B97314FDCFA39411CA2CEA</string> <string>30BB2140067DC1CA00B1C71A</string> - <string>30B355F80690131C00571DE8</string> <string>1C37FBAC04509CD000000102</string> <string>1C37FAAC04509CD000000102</string> --- 318,321 ---- *************** *** 265,269 **** <array> <array> ! <integer>2</integer> <integer>0</integer> </array> --- 325,330 ---- <array> <array> ! <integer>8</integer> ! <integer>3</integer> <integer>0</integer> </array> *************** *** 289,293 **** </array> <key>RubberWindowFrame</key> ! <string>252 218 914 604 0 0 1280 832 </string> </dict> <key>Module</key> --- 350,354 ---- </array> <key>RubberWindowFrame</key> ! <string>92 203 914 604 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 305,309 **** <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 366,370 ---- <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>MainWindowController.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 313,321 **** <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>30B305B308DC93F400C0E803</string> <key>history</key> <array> --- 374,382 ---- <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>MainWindowController.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>30E7298808E57183005AC187</string> <key>history</key> <array> *************** *** 386,397 **** <string>309229060868898900C1568B</string> <string>3096320A086ED54100970F48</string> - <string>3096320B086ED54100970F48</string> <string>3096320E086ED54100970F48</string> - <string>3096320F086ED54100970F48</string> <string>30963210086ED54100970F48</string> <string>30BFF6010878402700CC3E0E</string> <string>305EB2670888261A007A6071</string> <string>305EB2680888261A007A6071</string> - <string>306949DE08891194009C98DE</string> <string>30D323FF088C364C0010BC3F</string> <string>30D32403088C364C0010BC3F</string> --- 447,455 ---- *************** *** 410,427 **** <string>30294093088EDB4100C9C2BC</string> <string>30424BE108D878FC0078B25B</string> - <string>306961B208D8CDA20056662D</string> <string>306961B308D8CDA20056662D</string> <string>306961B408D8CDA20056662D</string> <string>306961B508D8CDA20056662D</string> <string>306961B708D8CDA20056662D</string> - <string>306961B908D8CDA20056662D</string> <string>306961BA08D8CDA20056662D</string> - <string>30B304BF08DC4BDB00C0E803</string> - <string>30B304C008DC4BDB00C0E803</string> <string>30B304C108DC4BDB00C0E803</string> - <string>30B304C208DC4BDB00C0E803</string> <string>30B304C308DC4BDB00C0E803</string> <string>30B304C408DC4BDB00C0E803</string> ! <string>30B304C508DC4BDB00C0E803</string> </array> <key>prevStack</key> --- 468,490 ---- <string>30294093088EDB4100C9C2BC</string> <string>30424BE108D878FC0078B25B</string> <string>306961B308D8CDA20056662D</string> <string>306961B408D8CDA20056662D</string> <string>306961B508D8CDA20056662D</string> <string>306961B708D8CDA20056662D</string> <string>306961BA08D8CDA20056662D</string> <string>30B304C108DC4BDB00C0E803</string> <string>30B304C308DC4BDB00C0E803</string> <string>30B304C408DC4BDB00C0E803</string> ! <string>302204BF08E078DB005CEB6C</string> ! <string>302204D308E07C42005CEB6C</string> ! <string>302204E908E0805B005CEB6C</string> ! <string>30E728D008E564ED005AC187</string> ! <string>30E728D108E564ED005AC187</string> ! <string>30E728D208E564ED005AC187</string> ! <string>30E7292F08E56CD9005AC187</string> ! <string>30E7293008E56CD9005AC187</string> ! <string>30E7296408E56FF4005AC187</string> ! <string>30E7297808E57078005AC187</string> ! <string>30E7294F08E56D43005AC187</string> </array> <key>prevStack</key> *************** *** 530,547 **** <string>306961C108D8CDA20056662D</string> <string>306961C808D8CDA20056662D</string> - <string>30B304C608DC4BDB00C0E803</string> - <string>30B304C708DC4BDB00C0E803</string> - <string>30B304C808DC4BDB00C0E803</string> - <string>30B304C908DC4BDB00C0E803</string> - <string>30B304CA08DC4BDB00C0E803</string> - <string>30B304CB08DC4BDB00C0E803</string> <string>30B304CC08DC4BDB00C0E803</string> ! <string>30B304CD08DC4BDB00C0E803</string> ! <string>30B304CE08DC4BDB00C0E803</string> ! <string>30B304CF08DC4BDB00C0E803</string> ! <string>30B304D008DC4BDB00C0E803</string> ! <string>30B304D108DC4BDB00C0E803</string> ! <string>30B304D208DC4BDB00C0E803</string> ! <string>30B304D308DC4BDB00C0E803</string> </array> </dict> --- 593,612 ---- <string>306961C108D8CDA20056662D</string> <string>306961C808D8CDA20056662D</string> <string>30B304CC08DC4BDB00C0E803</string> ! <string>302204C208E078DB005CEB6C</string> ! <string>302204D408E07C42005CEB6C</string> ! <string>30E728D608E564ED005AC187</string> ! <string>30E728D708E564ED005AC187</string> ! <string>30E728D808E564ED005AC187</string> ! <string>30E728D908E564ED005AC187</string> ! <string>30E728DA08E564ED005AC187</string> ! <string>30E728DB08E564ED005AC187</string> ! <string>30E728DC08E564ED005AC187</string> ! <string>30E728DD08E564ED005AC187</string> ! <string>30E7293208E56CD9005AC187</string> ! <string>30E7293308E56CD9005AC187</string> ! <string>30E7293408E56CD9005AC187</string> ! <string>30E7296608E56FF4005AC187</string> ! <string>30E7297908E57078005AC187</string> </array> </dict> *************** *** 557,561 **** <string>{{0, 0}, {648, 309}}</string> <key>RubberWindowFrame</key> ! <string>252 218 914 604 0 0 1280 832 </string> </dict> <key>Module</key> --- 622,626 ---- <string>{{0, 0}, {648, 309}}</string> <key>RubberWindowFrame</key> ! <string>92 203 914 604 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 579,583 **** <string>{{0, 314}, {648, 249}}</string> <key>RubberWindowFrame</key> ! <string>252 218 914 604 0 0 1280 832 </string> </dict> <key>Module</key> --- 644,648 ---- <string>{{0, 314}, {648, 249}}</string> <key>RubberWindowFrame</key> ! <string>92 203 914 604 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 603,609 **** <key>TableOfContents</key> <array> ! <string>30B304D508DC4BDB00C0E803</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>30B304D608DC4BDB00C0E803</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> --- 668,674 ---- <key>TableOfContents</key> <array> ! <string>30E728DF08E564ED005AC187</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>30E728E008E564ED005AC187</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> *************** *** 718,722 **** <false/> <key>PinnedNavigatorIdentifier</key> ! <string>30B304A408DC245C00C0E803</string> <key>ShelfIsVisible</key> <false/> --- 783,787 ---- <false/> <key>PinnedNavigatorIdentifier</key> ! <string>30E7291C08E568E1005AC187</string> <key>ShelfIsVisible</key> <false/> *************** *** 741,756 **** <key>WindowOrderList</key> <array> ! <string>30B3054E08DC57F800C0E803</string> ! <string>30B3054708DC57AF00C0E803</string> ! <string>30BE4823082FED6F00826659</string> ! <string>1CD10A99069EF8BA00B06720</string> ! <string>30B3054508DC57AF00C0E803</string> ! <string>1C0AD2AF069F1E9B00FABCE6</string> ! <string>1C0AD2B3069F1EA900FABCE6</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> <string>30A82A48082E9E83003C97DB</string> </array> <key>WindowString</key> ! <string>252 218 914 604 0 0 1280 832 </string> <key>WindowTools</key> <array> --- 806,823 ---- <key>WindowOrderList</key> <array> ! <string>30E728F808E564ED005AC187</string> ! <string>30E728F908E564ED005AC187</string> ! <string>1C530D57069F1CE1000CFCEE</string> ! <string>30E728F208E564ED005AC187</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> <string>30A82A48082E9E83003C97DB</string> + <string>30E7291C08E568E1005AC187</string> + <string>1C0AD2B3069F1EA900FABCE6</string> + <string>30BE4823082FED6F00826659</string> + <string>30E7297608E57063005AC187</string> + <string>1CD10A99069EF8BA00B06720</string> </array> <key>WindowString</key> ! <string>92 203 914 604 0 0 1280 832 </string> <key>WindowTools</key> <array> *************** *** 768,773 **** <array> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> --- 835,838 ---- *************** *** 775,779 **** <string>1CD0528F0623707200166675</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerList.m</string> <key>StatusBarVisibility</key> <true/> --- 840,844 ---- <string>1CD0528F0623707200166675</string> <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> <key>StatusBarVisibility</key> <true/> *************** *** 784,788 **** <string>{{0, 0}, {787, 343}}</string> <key>RubberWindowFrame</key> ! <string>369 127 787 699 0 0 1280 832 </string> </dict> <key>Module</key> --- 849,853 ---- <string>{{0, 0}, {787, 343}}</string> <key>RubberWindowFrame</key> ! <string>434 105 787 699 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 792,799 **** </dict> <dict> <key>ContentConfiguration</key> <dict> <key>PBXBuildLogShowsTranscriptDefaultKey</key> ! <string>{{0, 208}, {787, 102}}</string> <key>PBXProjectModuleGUID</key> <string>XCMainBuildResultsModuleGUID</string> --- 857,866 ---- </dict> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> <key>PBXBuildLogShowsTranscriptDefaultKey</key> ! <string>{{0, 188}, {787, 122}}</string> <key>PBXProjectModuleGUID</key> <string>XCMainBuildResultsModuleGUID</string> *************** *** 810,814 **** <string>{{0, 348}, {787, 310}}</string> <key>RubberWindowFrame</key> ! <string>369 127 787 699 0 0 1280 832 </string> </dict> <key>Module</key> --- 877,881 ---- <string>{{0, 348}, {787, 310}}</string> <key>RubberWindowFrame</key> ! <string>434 105 787 699 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 833,837 **** <array> <string>30A82A48082E9E83003C97DB</string> ! <string>30B304F208DC4BDB00C0E803</string> <string>1CD0528F0623707200166675</string> <string>XCMainBuildResultsModuleGUID</string> --- 900,904 ---- <array> <string>30A82A48082E9E83003C97DB</string> ! <string>30E728EB08E564ED005AC187</string> <string>1CD0528F0623707200166675</string> <string>XCMainBuildResultsModuleGUID</string> *************** *** 840,844 **** <string>xcode.toolbar.config.build</string> <key>WindowString</key> ! <string>369 127 787 699 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>30A82A48082E9E83003C97DB</string> --- 907,911 ---- <string>xcode.toolbar.config.build</string> <key>WindowString</key> ! <string>434 105 787 699 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>30A82A48082E9E83003C97DB</string> *************** *** 875,880 **** <key>sizes</key> <array> ! <string>{{0, 0}, {256, 173}}</string> ! <string>{{256, 0}, {1024, 173}}</string> </array> </dict> --- 942,947 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {294, 415}}</string> ! <string>{{294, 0}, {726, 415}}</string> </array> </dict> *************** *** 891,896 **** <key>sizes</key> <array> ! <string>{{0, 0}, {1280, 173}}</string> ! <string>{{0, 173}, {1280, 513}}</string> </array> </dict> --- 958,963 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {1020, 415}}</string> ! <string>{{0, 415}, {1020, 225}}</string> </array> </dict> *************** *** 914,929 **** <string>{{200, 200}, {500, 300}}</string> <key>Frame</key> ! <string>{{0, 0}, {1280, 686}}</string> <key>RubberWindowFrame</key> ! <string>-2 105 1280 727 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXDebugSessionModule</string> <key>Proportion</key> ! <string>686pt</string> </dict> </array> <key>Proportion</key> ! <string>686pt</string> </dict> </array> --- 981,996 ---- <string>{{200, 200}, {500, 300}}</string> <key>Frame</key> ! <string>{{0, 0}, {1020, 640}}</string> <key>RubberWindowFrame</key> ! <string>88 114 1020 681 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXDebugSessionModule</string> <key>Proportion</key> ! <string>640pt</string> </dict> </array> <key>Proportion</key> ! <string>640pt</string> </dict> </array> *************** *** 939,959 **** <array> <string>1CD10A99069EF8BA00B06720</string> ! <string>30B3053F08DC57AF00C0E803</string> <string>1C162984064C10D400B95A72</string> ! <string>30B3054008DC57AF00C0E803</string> ! <string>30B3054108DC57AF00C0E803</string> ! <string>30B3054208DC57AF00C0E803</string> ! <string>30B3054308DC57AF00C0E803</string> ! <string>30B3054408DC57AF00C0E803</string> ! <string>30B3054508DC57AF00C0E803</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.debug</string> <key>WindowString</key> ! <string>-2 105 1280 727 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1CD10A99069EF8BA00B06720</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> --- 1006,1026 ---- <array> <string>1CD10A99069EF8BA00B06720</string> ! <string>30E728EC08E564ED005AC187</string> <string>1C162984064C10D400B95A72</string> ! <string>30E728ED08E564ED005AC187</string> ! <string>30E728EE08E564ED005AC187</string> ! <string>30E728EF08E564ED005AC187</string> ! <string>30E728F008E564ED005AC187</string> ! <string>30E728F108E564ED005AC187</string> ! <string>30E728F208E564ED005AC187</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.debug</string> <key>WindowString</key> ! <string>88 114 1020 681 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1CD10A99069EF8BA00B06720</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> *************** *** 973,976 **** --- 1040,1045 ---- <array> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 978,982 **** <string>1CDD528C0622207200134675</string> <key>PBXProjectModuleLabel</key> ! <string>Team.m</string> <key>StatusBarVisibility</key> <true/> --- 1047,1051 ---- <string>1CDD528C0622207200134675</string> <key>PBXProjectModuleLabel</key> ! <string>MainWindowController.m</string> <key>StatusBarVisibility</key> <true/> *************** *** 985,1004 **** <dict> <key>Frame</key> ! <string>{{0, 0}, {1280, 409}}</string> <key>RubberWindowFrame</key> ! <string>238 49 1280 783 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXNavigatorGroup</string> <key>Proportion</key> ! <string>1280pt</string> </dict> </array> <key>Proportion</key> ! <string>409pt</string> </dict> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> --- 1054,1071 ---- <dict> <key>Frame</key> ! <string>{{0, 0}, {1031, 208}}</string> <key>RubberWindowFrame</key> ! <string>50 250 1031 582 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXNavigatorGroup</string> <key>Proportion</key> ! <string>1031pt</string> </dict> </array> <key>Proportion</key> ! <string>208pt</string> </dict> <dict> <key>ContentConfiguration</key> <dict> *************** *** 1011,1017 **** <dict> <key>Frame</key> ! <string>{{0, 414}, {1280, 328}}</string> <key>RubberWindowFrame</key> ! <string>238 49 1280 783 0 0 1280 832 </string> </dict> <key>Module</key> --- 1078,1084 ---- <dict> <key>Frame</key> ! <string>{{0, 213}, {1031, 328}}</string> <key>RubberWindowFrame</key> ! <string>50 250 1031 582 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1022,1026 **** </array> <key>Proportion</key> ! <string>742pt</string> </dict> </array> --- 1089,1093 ---- </array> <key>Proportion</key> ! <string>541pt</string> </dict> </array> *************** *** 1036,1046 **** <array> <string>1C530D57069F1CE1000CFCEE</string> ! <string>306961A208D882E90056662D</string> ! <string>306961A308D882E90056662D</string> <string>1CDD528C0622207200134675</string> <string>1CD0528E0623707200166675</string> </array> <key>WindowString</key> ! <string>238 49 1280 783 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C530D57069F1CE1000CFCEE</string> --- 1103,1113 ---- <array> <string>1C530D57069F1CE1000CFCEE</string> ! <string>30E728F308E564ED005AC187</string> ! <string>30E728F408E564ED005AC187</string> <string>1CDD528C0622207200134675</string> <string>1CD0528E0623707200166675</string> </array> <key>WindowString</key> ! <string>50 250 1031 582 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C530D57069F1CE1000CFCEE</string> *************** *** 1065,1068 **** --- 1132,1137 ---- <array> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 1075,1090 **** <dict> <key>Frame</key> ! <string>{{0, 0}, {440, 358}}</string> <key>RubberWindowFrame</key> ! <string>824 359 440 400 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXDebugCLIModule</string> <key>Proportion</key> ! <string>358pt</string> </dict> </array> <key>Proportion</key> ! <string>359pt</string> </dict> </array> --- 1144,1159 ---- <dict> <key>Frame</key> ! <string>{{0, 0}, {983, 380}}</string> <key>RubberWindowFrame</key> ! <string>320 228 983 421 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXDebugCLIModule</string> <key>Proportion</key> ! <string>380pt</string> </dict> </array> <key>Proportion</key> ! <string>380pt</string> </dict> </array> *************** *** 1100,1112 **** <array> <string>30BE4823082FED6F00826659</string> ! <string>30B3054608DC57AF00C0E803</string> <string>1C78EAAC065D492600B07095</string> </array> <key>WindowString</key> ! <string>824 359 440 400 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>30BE4823082FED6F00826659</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> --- 1169,1181 ---- <array> <string>30BE4823082FED6F00826659</string> ! <string>30E728F508E564ED005AC187</string> <string>1C78EAAC065D492600B07095</string> </array> <key>WindowString</key> ! <string>320 228 983 421 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>30BE4823082FED6F00826659</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> *************** *** 1145,1150 **** <key>sizes</key> <array> ! <string>{{0, 0}, {367, 168}}</string> ! <string>{{0, 173}, {367, 270}}</string> </array> </dict> --- 1214,1219 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {493, 168}}</string> ! <string>{{0, 173}, {493, 270}}</string> </array> </dict> *************** *** 1172,1176 **** <string>{{0, 0}, {1061, 332}}</string> <key>RubberWindowFrame</key> ! <string>94 220 1061 373 0 0 1280 832 </string> </dict> <key>Module</key> --- 1241,1245 ---- <string>{{0, 0}, {1061, 332}}</string> <key>RubberWindowFrame</key> ! <string>175 172 1061 373 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1195,1210 **** <array> <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>30B304F308DC4BDB00C0E803</string> <string>1CD0528B0623707200166675</string> ! <string>30B304F408DC4BDB00C0E803</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>94 220 1061 373 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> --- 1264,1279 ---- <array> <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>30E728F608E564ED005AC187</string> <string>1CD0528B0623707200166675</string> ! <string>30E728F708E564ED005AC187</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>175 172 1061 373 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> *************** *** 1309,1312 **** --- 1378,1383 ---- </dict> <dict> + <key>FirstTimeWindowDisplayed</key> + <false/> <key>Identifier</key> <string>windowTool.breakpoints</string> *************** *** 1319,1324 **** <array> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> --- 1390,1393 ---- *************** *** 1374,1378 **** </array> <key>RubberWindowFrame</key> ! <string>315 424 744 409 0 0 1440 878 </string> </dict> <key>Module</key> --- 1443,1447 ---- </array> <key>RubberWindowFrame</key> ! <string>188 347 744 409 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1382,1385 **** --- 1451,1456 ---- </dict> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 1394,1398 **** <string>{{190, 0}, {554, 368}}</string> <key>RubberWindowFrame</key> ! <string>315 424 744 409 0 0 1440 878 </string> </dict> <key>Module</key> --- 1465,1469 ---- <string>{{190, 0}, {554, 368}}</string> <key>RubberWindowFrame</key> ! <string>188 347 744 409 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1421,1426 **** <key>TableOfContents</key> <array> ! <string>1CDDB66807F98D9800BB5817</string> ! <string>1CDDB66907F98D9800BB5817</string> <string>1CE0B1FE06471DED0097A5F4</string> <string>1CA1AED706398EBD00589147</string> --- 1492,1497 ---- <key>TableOfContents</key> <array> ! <string>30E7297608E57063005AC187</string> ! <string>30E7297708E57063005AC187</string> <string>1CE0B1FE06471DED0097A5F4</string> <string>1CA1AED706398EBD00589147</string> *************** *** 1429,1435 **** <string>xcode.toolbar.config.breakpoints</string> <key>WindowString</key> ! <string>315 424 744 409 0 0 1440 878 </string> <key>WindowToolGUID</key> ! <string>1CDDB66807F98D9800BB5817</string> <key>WindowToolIsVisible</key> <true/> --- 1500,1506 ---- <string>xcode.toolbar.config.breakpoints</string> <key>WindowString</key> ! <string>188 347 744 409 0 0 1280 832 </string> <key>WindowToolGUID</key> ! <string>30E7297608E57063005AC187</string> <key>WindowToolIsVisible</key> <true/> Index: roman.pbxuser =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.pbxuser,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** roman.pbxuser 18 Sep 2005 14:55:14 -0000 1.14 --- roman.pbxuser 24 Sep 2005 11:50:31 -0000 1.15 *************** *** 25,30 **** uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {830, 1778}}"; ! sepNavSelRange = "{5407, 0}"; ! sepNavVisRect = "{{90, 1322}, {740, 311}}"; sepNavWindowFrame = "{{412, 136}, {750, 542}}"; }; --- 25,30 ---- uiCtxt = { sepNavIntBoundsRect = "{{0, 0}, {830, 1778}}"; ! sepNavSelRange = "{5408, 42}"; [...2499 lines suppressed...] + command = ""; + fallbackIsa = XCBreakpointAction; + logCommand = 0; + useDebuggerSideImplementation = 1; + }; 30EC0BDE06425043008B3F6B /* HattrickOrg.h */ = { uiCtxt = { *************** *** 4866,4870 **** name = "Team *temp ="; rLen = 12; ! rLoc = 7460; rType = 0; vrLen = 712; --- 6181,6185 ---- name = "Team *temp ="; rLen = 12; ! rLoc = 7517; rType = 0; vrLen = 712; |
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26871 Modified Files: MainController.m MainWindowController.m PlayerListsViewController.h PlayerListsViewController.m PlayerTableView.h PositionsController.m Team.m Log Message: memory bug fixed. no more crash after login Index: MainController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/MainController.m,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** MainController.m 14 Sep 2005 15:32:06 -0000 1.19 --- MainController.m 24 Sep 2005 11:50:30 -0000 1.20 *************** *** 188,192 **** [self loadTransformers]; mainController = self; - // [self showLoginWindow:self]; if(!mainWindowController) { mainWindowController = [[MainWindowController alloc] initWithWindowNibName:@"MainWindow"]; --- 188,191 ---- *************** *** 197,201 **** [mainWindowController setTeam:team]; } - [team release]; } @end --- 196,199 ---- Index: PositionsController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PositionsController.m,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** PositionsController.m 17 Sep 2005 16:22:27 -0000 1.12 --- PositionsController.m 24 Sep 2005 11:50:30 -0000 1.13 *************** *** 42,46 **** [positionsTable setDoubleAction:@selector(doubleClicked)]; [positionsTable setController: self]; - [[Team currentTeam] addObserver: self forKeyPath: @"playerList" options: NSKeyValueObservingOptionNew context:nil]; return self; } --- 42,45 ---- *************** *** 51,54 **** --- 50,62 ---- } + - (void) setTeam: (Team*) newTeam { + if(team) { + [team removeObserver:self forKeyPath:@"playerList"]; + } + [newTeam addObserver: self forKeyPath: @"playerList" options: NSKeyValueObservingOptionNew context:nil]; + [super setTeam: newTeam]; + [positionsTable reloadData]; + } + // observing - (void) observeValueForKeyPath: (NSString*) keyPath ofObject: (id) object change: (NSDictionary*) change context: (void *) context { *************** *** 167,175 **** } ! - (void)setTeam:(Team *)newTeam ! { ! [super setTeam: newTeam]; ! [positionsTable reloadData]; ! } // drag and drop --- 175,179 ---- } ! // drag and drop Index: Team.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/Team.m,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** Team.m 17 Sep 2005 16:22:27 -0000 1.31 --- Team.m 24 Sep 2005 11:50:30 -0000 1.32 *************** *** 65,69 **** return nil; } ! playerList = [[PlayerList alloc] initFromLocalFile]; [playerList loadFormerPlayerStates]; arena = [[Arena alloc] init]; --- 65,71 ---- return nil; } ! PlayerList *aList = [[PlayerList alloc] initFromLocalFile]; ! [self setAllPlayersList:aList]; ! [self setPlayerList:allPlayersList]; [playerList loadFormerPlayerStates]; arena = [[Arena alloc] init]; *************** *** 75,80 **** [url release]; ! [self setAllPlayersList:playerList]; ! [self loadUserDefinedPlayerLists: [Properties userDefinedPlayerListsFile]]; } --- 77,81 ---- [url release]; ! [self loadUserDefinedPlayerLists: [Properties userDefinedPlayerListsFile]]; } Index: PlayerTableView.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableView.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PlayerTableView.h 17 Sep 2005 14:05:48 -0000 1.2 --- PlayerTableView.h 24 Sep 2005 11:50:30 -0000 1.3 *************** *** 33,36 **** --- 33,37 ---- id controller; } + - (id) controller; - (void) setController: (id) newController; Index: MainWindowController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/MainWindowController.m,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** MainWindowController.m 18 Sep 2005 14:55:13 -0000 1.10 --- MainWindowController.m 24 Sep 2005 11:50:30 -0000 1.11 *************** *** 34,45 **** @implementation MainWindowController -(void)setTeam: (Team*) newTeam { ! [newTeam retain]; [team release]; ! team = newTeam; [teamInfoController setTeam:team]; [playerTableController setTeam:team]; [positionsController setTeam:team]; [lineUpController setTeam:team]; } --- 34,47 ---- @implementation MainWindowController + -(void)setTeam: (Team*) newTeam { ! [newTeam retain]; [team release]; ! team = newTeam; [teamInfoController setTeam:team]; [playerTableController setTeam:team]; [positionsController setTeam:team]; [lineUpController setTeam:team]; + [playerListsViewController setPlayerLists:[team userDefinedPlayerLists]]; } Index: PlayerListsViewController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerListsViewController.m,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** PlayerListsViewController.m 14 Sep 2005 15:32:06 -0000 1.4 --- PlayerListsViewController.m 24 Sep 2005 11:50:30 -0000 1.5 *************** *** 36,40 **** self = [super init]; if(self) { ! // [self setPlayerLists: [[Team currentTeam] userDefinedPlayerLists]]; [NSBundle loadNibNamed:@"PlayerListsView" owner: self]; [tableView registerForDraggedTypes:[NSArray arrayWithObject:NSDragPboard]]; --- 36,40 ---- self = [super init]; if(self) { ! [self setPlayerLists: [[Team currentTeam] userDefinedPlayerLists]]; [NSBundle loadNibNamed:@"PlayerListsView" owner: self]; [tableView registerForDraggedTypes:[NSArray arrayWithObject:NSDragPboard]]; *************** *** 51,57 **** } ! - (NSMutableArray *) playerLists { return [[Team currentTeam] userDefinedPlayerLists]; } - (void) setPlayerLists: (NSMutableArray *) newPlayerLists { ! [[Team currentTeam] setUserDefinedPlayerLists:newPlayerLists]; } --- 51,59 ---- } ! - (NSMutableArray *) playerLists { return playerLists; } - (void) setPlayerLists: (NSMutableArray *) newPlayerLists { ! [newPlayerLists retain]; ! [playerLists release]; ! playerLists = newPlayerLists; } Index: PlayerListsViewController.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerListsViewController.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PlayerListsViewController.h 14 Sep 2005 16:20:08 -0000 1.3 --- PlayerListsViewController.h 24 Sep 2005 11:50:30 -0000 1.4 *************** *** 30,34 **** @interface PlayerListsViewController : NSObject { ! // NSMutableArray *playerLists; managed by team IBOutlet NSView *playerListsView; IBOutlet NSTableView *tableView; --- 30,34 ---- @interface PlayerListsViewController : NSObject { ! NSMutableArray *playerLists; IBOutlet NSView *playerListsView; IBOutlet NSTableView *tableView; |
|
From: Gfive <gf...@us...> - 2005-09-21 16:02:25
|
Update of /cvsroot/macattrick/macattrick/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17534/images Modified Files: alllist.icns customlist.icns groups.icns Log Message: icon update Index: groups.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/groups.icns,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsVoycsI and /tmp/cvsjaLmo1 differ Index: alllist.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/alllist.icns,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsILwR3Q and /tmp/cvsLHw1ra differ Index: customlist.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/customlist.icns,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs98Xswl and /tmp/cvsarq33F differ |
|
From: Gfive <gf...@us...> - 2005-09-19 21:03:36
|
Update of /cvsroot/macattrick/macattrick/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22901 Added Files: Add.active.png Add.clickmask.png Add.disabled.png Add.mousedown.png Help.active.png Help.clickmask.png Help.disabled.png Help.mousedown.png Remove.active.png Remove.clickmask.png Remove.disabled.png Remove.mousedown.png Log Message: New icons --- NEW FILE: Help.clickmask.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Help.disabled.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Remove.mousedown.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Remove.disabled.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Help.mousedown.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Remove.clickmask.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Add.clickmask.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Add.active.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Add.mousedown.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Add.disabled.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Help.active.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Remove.active.png --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/macattrick/macattrick/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22154/images Modified Files: alllist.icns customlist.icns lineup.icns mainwindow.icns playerinfo.icns players.icns positions.icns Log Message: icon changes Index: mainwindow.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/mainwindow.icns,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsONegJr and /tmp/cvsRuBqah differ Index: positions.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/positions.icns,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsn0Lcnv and /tmp/cvs9jBFRk differ Index: playerinfo.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/playerinfo.icns,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsDnsUKu and /tmp/cvszjjujk differ Index: customlist.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/customlist.icns,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs34gEsy and /tmp/cvsl30M4n differ Index: alllist.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/alllist.icns,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsrjogEx and /tmp/cvs2YRikn differ Index: players.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/players.icns,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs9xymjB and /tmp/cvsRqRB2q differ Index: lineup.icns =================================================================== RCS file: /cvsroot/macattrick/macattrick/images/lineup.icns,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs1YoKDC and /tmp/cvs3sMAqs differ |
|
From: Geisschaes <gei...@us...> - 2005-09-18 14:55:53
|
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24761 Modified Files: MainWindowController.m Toolbar.m Log Message: groups toggle added. but icon is just a copy Index: Toolbar.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/Toolbar.m,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Toolbar.m 20 May 2005 18:30:35 -0000 1.4 --- Toolbar.m 18 Sep 2005 14:55:13 -0000 1.5 *************** *** 85,89 **** [item setTarget:self]; [item setAction:@selector(showPlayerDetails)]; ! } return [item autorelease]; --- 85,96 ---- [item setTarget:self]; [item setAction:@selector(showPlayerDetails)]; ! } else if ( [itemIdentifier isEqualToString:@"Groups"] ) { ! [item setLabel:NSLocalizedString(@"Groups",@"Groups")]; ! [item setToolTip: NSLocalizedString(@"Groups",@"Groups")]; ! [item setPaletteLabel:[item label]]; ! [item setImage:[NSImage imageNamed:@"groups"]]; ! [item setTarget:self]; ! [item setAction:@selector(toggleGroups)]; ! } return [item autorelease]; *************** *** 96,100 **** - (NSArray *)toolbarAllowedItemIdentifiers:(NSToolbar*)toolbar { ! return [NSArray arrayWithObjects: @"TeamInfo", @"PlayerTable", @"PositionTable", @"LineUp",@"PlayerDetails", NSToolbarSeparatorItemIdentifier, NSToolbarShowColorsItemIdentifier, --- 103,107 ---- - (NSArray *)toolbarAllowedItemIdentifiers:(NSToolbar*)toolbar { ! return [NSArray arrayWithObjects: @"TeamInfo", @"PlayerTable", @"PositionTable", @"LineUp",@"PlayerDetails",@"Groups", NSToolbarSeparatorItemIdentifier, NSToolbarShowColorsItemIdentifier, *************** *** 109,113 **** NSToolbarSeparatorItemIdentifier, NSToolbarFlexibleSpaceItemIdentifier, ! NSToolbarCustomizeToolbarItemIdentifier, nil]; } // This will give the button the activated backgroundcolor --- 116,122 ---- NSToolbarSeparatorItemIdentifier, NSToolbarFlexibleSpaceItemIdentifier, ! @"Groups", ! NSToolbarFlexibleSpaceItemIdentifier, ! NSToolbarCustomizeToolbarItemIdentifier, nil]; } // This will give the button the activated backgroundcolor Index: MainWindowController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/MainWindowController.m,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** MainWindowController.m 3 Jul 2005 19:52:13 -0000 1.9 --- MainWindowController.m 18 Sep 2005 14:55:13 -0000 1.10 *************** *** 88,91 **** --- 88,94 ---- } } + -(void) toggleGroups { + [playerListsDrawer toggle:self]; + } - (void) dealloc { |
|
From: Geisschaes <gei...@us...> - 2005-09-18 14:55:26
|
Update of /cvsroot/macattrick/macattrick/Macattrick.xcodeproj In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24761/Macattrick.xcodeproj Modified Files: project.pbxproj roman.mode1 roman.pbxuser Log Message: groups toggle added. but icon is just a copy Index: project.pbxproj =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/project.pbxproj,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** project.pbxproj 14 Sep 2005 16:20:08 -0000 1.5 --- project.pbxproj 18 Sep 2005 14:55:14 -0000 1.6 *************** *** 127,130 **** --- 127,132 ---- 30609699079320AC00BAA4CF /* WorldTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 30609695079320AC00BAA4CF /* WorldTest.h */; }; 3060969A079320AC00BAA4CF /* WorldTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 30609696079320AC00BAA4CF /* WorldTest.m */; }; + 30626B6808DDB697005FE099 /* groups.icns in Resources */ = {isa = PBXBuildFile; fileRef = 30626B6708DDB696005FE099 /* groups.icns */; }; + 30626B6908DDB697005FE099 /* groups.icns in Resources */ = {isa = PBXBuildFile; fileRef = 30626B6708DDB696005FE099 /* groups.icns */; }; 3063E946079AE6FC003DF28B /* FormulasView.nib in Resources */ = {isa = PBXBuildFile; fileRef = 102B65730796B99C00CE6B91 /* FormulasView.nib */; }; 306796E606BED27F00161E78 /* PropertiesTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 306796E406BED27F00161E78 /* PropertiesTest.h */; }; *************** *** 838,841 **** --- 840,844 ---- 30609695079320AC00BAA4CF /* WorldTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WorldTest.h; sourceTree = "<group>"; }; 30609696079320AC00BAA4CF /* WorldTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WorldTest.m; sourceTree = "<group>"; }; + 30626B6708DDB696005FE099 /* groups.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = groups.icns; sourceTree = "<group>"; }; 306796E406BED27F00161E78 /* PropertiesTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PropertiesTest.h; sourceTree = "<group>"; }; 306796E506BED27F00161E78 /* PropertiesTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PropertiesTest.m; sourceTree = "<group>"; }; *************** *** 1279,1282 **** --- 1282,1286 ---- isa = PBXGroup; children = ( + 30626B6708DDB696005FE099 /* groups.icns */, 3069618A08D882450056662D /* customlist.icns */, 3069618708D8823C0056662D /* alllist.icns */, *************** *** 2408,2411 **** --- 2412,2416 ---- 3069618908D8823C0056662D /* alllist.icns in Resources */, 3069618C08D882450056662D /* customlist.icns in Resources */, + 30626B6908DDB697005FE099 /* groups.icns in Resources */, ); runOnlyForDeploymentPostprocessing = 0; *************** *** 2561,2564 **** --- 2566,2570 ---- 3069618808D8823C0056662D /* alllist.icns in Resources */, 3069618B08D882450056662D /* customlist.icns in Resources */, + 30626B6808DDB697005FE099 /* groups.icns in Resources */, ); runOnlyForDeploymentPostprocessing = 0; Index: roman.mode1 =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.mode1,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** roman.mode1 17 Sep 2005 16:22:27 -0000 1.13 --- roman.mode1 18 Sep 2005 14:55:14 -0000 1.14 *************** *** 186,304 **** <array/> <key>OpenEditors</key> ! <array> ! <dict> ! <key>Content</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>30B304A408DC245C00C0E803</string> ! <key>PBXProjectModuleLabel</key> ! <string>PlayerTableView.m</string> ! <key>PBXSplitModuleInNavigatorKey</key> ! <dict> ! <key>Split0</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>30B304D708DC4BDB00C0E803</string> ! <key>PBXProjectModuleLabel</key> ! <string>PlayerTableView.m</string> ! <key>_historyCapacity</key> ! <integer>0</integer> ! <key>bookmark</key> ! <string>30B305AA08DC78FF00C0E803</string> ! <key>history</key> ! <array> ! <string>30B304DB08DC4BDB00C0E803</string> ! <string>30B304DC08DC4BDB00C0E803</string> ! <string>30B3057D08DC786B00C0E803</string> ! <string>30B3057E08DC786B00C0E803</string> ! <string>30B3057F08DC786B00C0E803</string> ! <string>30B3058008DC786B00C0E803</string> ! <string>30B3058108DC786B00C0E803</string> ! <string>30B3058208DC786B00C0E803</string> ! <string>30B3058308DC786B00C0E803</string> ! <string>30B3058408DC786B00C0E803</string> ! </array> ! <key>prevStack</key> ! <array> ! <string>30B304DF08DC4BDB00C0E803</string> ! <string>30B304E108DC4BDB00C0E803</string> ! <string>30B304E308DC4BDB00C0E803</string> ! <string>30B304E408DC4BDB00C0E803</string> ! <string>30B304E508DC4BDB00C0E803</string> ! <string>30B304E608DC4BDB00C0E803</string> ! <string>30B304E708DC4BDB00C0E803</string> ! <string>30B304E808DC4BDB00C0E803</string> ! <string>30B3051D08DC4F5C00C0E803</string> ! <string>30B3051E08DC4F5C00C0E803</string> ! <string>30B3058508DC786B00C0E803</string> ! <string>30B3058608DC786B00C0E803</string> ! <string>30B3058708DC786B00C0E803</string> ! <string>30B3058808DC786B00C0E803</string> ! <string>30B3058908DC786B00C0E803</string> ! <string>30B3058A08DC786B00C0E803</string> ! <string>30B3058B08DC786B00C0E803</string> ! <string>30B3058C08DC786B00C0E803</string> ! <string>30B3058D08DC786B00C0E803</string> ! <string>30B3058E08DC786B00C0E803</string> ! <string>30B3058F08DC786B00C0E803</string> ! <string>30B3059008DC786B00C0E803</string> ! <string>30B3059108DC786B00C0E803</string> ! <string>30B3059208DC786B00C0E803</string> ! <string>30B3059308DC786B00C0E803</string> ! <string>30B3059408DC786B00C0E803</string> ! <string>30B3059508DC786B00C0E803</string> ! </array> ! </dict> ! <key>Split1</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>30B304EA08DC4BDB00C0E803</string> ! <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.h</string> ! <key>_historyCapacity</key> ! <integer>0</integer> ! <key>bookmark</key> ! <string>30B305AB08DC78FF00C0E803</string> ! <key>history</key> ! <array> ! <string>30B304EC08DC4BDB00C0E803</string> ! <string>30B3052008DC4F5C00C0E803</string> ! <string>30B3052208DC4F5C00C0E803</string> ! <string>30B3059708DC786B00C0E803</string> ! <string>30B3059808DC786B00C0E803</string> ! <string>30B3059908DC786B00C0E803</string> ! </array> ! <key>prevStack</key> ! <array> ! <string>30B304EE08DC4BDB00C0E803</string> ! <string>30B304EF08DC4BDB00C0E803</string> ! <string>30B304F008DC4BDB00C0E803</string> ! <string>30B3052308DC4F5C00C0E803</string> ! <string>30B3052408DC4F5C00C0E803</string> ! <string>30B3052508DC4F5C00C0E803</string> ! <string>30B3059A08DC786B00C0E803</string> ! <string>30B3059B08DC786B00C0E803</string> ! <string>30B3059C08DC786B00C0E803</string> ! <string>30B3059D08DC786B00C0E803</string> ! <string>30B3059E08DC786B00C0E803</string> ! </array> ! </dict> ! <key>SplitCount</key> ! <string>2</string> ! </dict> ! <key>StatusBarVisibility</key> ! <true/> ! </dict> ! <key>Geometry</key> ! <dict> ! <key>Frame</key> ! <string>{{0, 20}, {1099, 710}}</string> ! <key>PBXModuleWindowStatusBarHidden2</key> ! <false/> ! <key>RubberWindowFrame</key> ! <string>82 81 1099 751 0 0 1280 832 </string> ! </dict> ! </dict> ! </array> <key>PerspectiveWidths</key> <array> --- 186,190 ---- <array/> <key>OpenEditors</key> ! <array/> <key>PerspectiveWidths</key> <array> *************** *** 431,435 **** <integer>0</integer> <key>bookmark</key> ! <string>30B305A908DC78FF00C0E803</string> <key>history</key> <array> --- 317,321 ---- <integer>0</integer> <key>bookmark</key> ! <string>30B305B308DC93F400C0E803</string> <key>history</key> <array> *************** *** 861,868 **** <string>30B3054508DC57AF00C0E803</string> <string>1C0AD2AF069F1E9B00FABCE6</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> - <string>30B304A408DC245C00C0E803</string> <string>30A82A48082E9E83003C97DB</string> - <string>1C0AD2B3069F1EA900FABCE6</string> </array> <key>WindowString</key> --- 747,753 ---- <string>30B3054508DC57AF00C0E803</string> <string>1C0AD2AF069F1E9B00FABCE6</string> + <string>1C0AD2B3069F1EA900FABCE6</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> <string>30A82A48082E9E83003C97DB</string> </array> <key>WindowString</key> *************** *** 1285,1300 **** <dict> <key>Frame</key> ! <string>{{0, 0}, {1095, 323}}</string> <key>RubberWindowFrame</key> ! <string>94 229 1095 364 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXRunSessionModule</string> <key>Proportion</key> ! <string>323pt</string> </dict> </array> <key>Proportion</key> ! <string>323pt</string> </dict> </array> --- 1170,1185 ---- <dict> <key>Frame</key> ! <string>{{0, 0}, {1061, 332}}</string> <key>RubberWindowFrame</key> ! <string>94 220 1061 373 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXRunSessionModule</string> <key>Proportion</key> ! <string>332pt</string> </dict> </array> <key>Proportion</key> ! <string>332pt</string> </dict> </array> *************** *** 1317,1325 **** <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>94 229 1095 364 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> --- 1202,1210 ---- <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>94 220 1061 373 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> *************** *** 1694,1698 **** <string>1C0AD2AF069F1E9B00FABCE6</string> <key>WindowToolIsVisible</key> ! <true/> </dict> </array> --- 1579,1583 ---- <string>1C0AD2AF069F1E9B00FABCE6</string> <key>WindowToolIsVisible</key> ! <false/> </dict> </array> Index: roman.pbxuser =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.pbxuser,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** roman.pbxuser 17 Sep 2005 16:22:27 -0000 1.13 --- roman.pbxuser 18 Sep 2005 14:55:14 -0000 1.14 *************** *** 24,30 **** 10A233D907327ECF007529F7 /* Toolbar.m */ = { uiCtxt = { ! sepNavIntBoundsRect = "{{0, 0}, {830, 1652}}"; ! sepNavSelRange = "{5752, 0}"; ! sepNavVisRect = "{{0, 51}, {705, 437}}"; sepNavWindowFrame = "{{412, 136}, {750, 542}}"; }; --- 24,30 ---- 10A233D907327ECF007529F7 /* Toolbar.m */ = { uiCtxt = { [...1948 lines suppressed...] - name = "PlayerTableView.m: 60"; - rLen = 0; - rLoc = 3120; - rType = 0; - vrLen = 1100; - vrLoc = 2785; - }; - 30B305AB08DC78FF00C0E803 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 308426AA0643ABD200173CCD /* PlayerTableController.h */; - name = "PlayerTableController.h: addSelectedPlayersToPlayerList:"; - rLen = 0; - rLoc = 2767; - rType = 0; - vrLen = 582; - vrLoc = 2191; - }; 30BB2130067DC1BC00B1C71A /* MainController.h */ = { uiCtxt = { --- 3283,3286 ---- |
|
From: Geisschaes <gei...@us...> - 2005-09-18 14:55:26
|
Update of /cvsroot/macattrick/macattrick/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24761/images Added Files: groups.icns Log Message: groups toggle added. but icon is just a copy --- NEW FILE: groups.icns --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2722 Modified Files: PlayerList.h PlayerList.m PlayerTableController.h PlayerTableController.m PlayerTableView.m PositionsController.m Team.h Team.m Log Message: implementing the context menu for the tables. add to groups works now Index: PositionsController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PositionsController.m,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** PositionsController.m 17 Sep 2005 14:05:48 -0000 1.11 --- PositionsController.m 17 Sep 2005 16:22:27 -0000 1.12 *************** *** 159,162 **** --- 159,166 ---- } + - (void) addSelectedPlayersToPlayerList: (PlayerList*) aPlayerList { + [aPlayerList addPlayers: [self selectedPlayers]]; + } + -(void) doubleClicked { [[MainController mainController] showPlayerDetailsWindowWithPlayer:[self selectedPlayer]]; Index: Team.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/Team.h,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** Team.h 18 Jul 2005 19:12:37 -0000 1.16 --- Team.h 17 Sep 2005 16:22:27 -0000 1.17 *************** *** 83,87 **** - (BOOL) saveUserDefinedPlayerLists: (NSString*) filename; ! - (NSMutableArray *) userDefinedPlayerLists; --- 83,87 ---- - (BOOL) saveUserDefinedPlayerLists: (NSString*) filename; ! - (PlayerList*)userDefinedPlayerListWithName: (NSString*) aName; - (NSMutableArray *) userDefinedPlayerLists; *************** *** 155,158 **** --- 155,160 ---- - (Club *) club; + + /*! @method currentTeam Index: Team.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/Team.m,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** Team.m 14 Sep 2005 15:32:06 -0000 1.30 --- Team.m 17 Sep 2005 16:22:27 -0000 1.31 *************** *** 208,212 **** - (Club *) club { return club; } ! + (Team*) currentTeam { --- 208,221 ---- - (Club *) club { return club; } ! - (PlayerList*)userDefinedPlayerListWithName: (NSString*) aName { ! NSEnumerator *en = [userDefinedPlayerLists objectEnumerator]; ! PlayerList *current; ! while(current=[en nextObject]) { ! if([[current listName] isEqualToString:aName]) { ! return current; ! } ! } ! return nil; ! } + (Team*) currentTeam { Index: PlayerTableView.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableView.m,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PlayerTableView.m 17 Sep 2005 14:05:48 -0000 1.2 --- PlayerTableView.m 17 Sep 2005 16:22:27 -0000 1.3 *************** *** 57,60 **** --- 57,62 ---- - (IBAction) addToGroup: (id)sender { NSString *groupName = [sender title]; + PlayerList *list = [[Team currentTeam] userDefinedPlayerListWithName: groupName]; + [controller addSelectedPlayersToPlayerList:list]; } - (void) awakeFromNib { Index: PlayerTableController.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableController.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PlayerTableController.h 17 Sep 2005 14:05:48 -0000 1.7 --- PlayerTableController.h 17 Sep 2005 16:22:27 -0000 1.8 *************** *** 52,55 **** -(void) removeSelectedPlayers; ! @end --- 52,55 ---- -(void) removeSelectedPlayers; ! - (void) addSelectedPlayersToPlayerList: (PlayerList*) aPlayerList; @end Index: PlayerList.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerList.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** PlayerList.h 14 Sep 2005 16:20:08 -0000 1.13 --- PlayerList.h 17 Sep 2005 16:22:27 -0000 1.14 *************** *** 136,139 **** --- 136,141 ---- -(BOOL) addPlayerWithID: (int) aPlayerID; - (BOOL) addPlayersWithIDs: (NSArray*) ids; + -(BOOL) addPlayer: (Player*) aPlayer; + - (BOOL) addPlayers: (NSArray*) players; - (BOOL) removePlayersWithIDs: (NSArray*) ids; - (BOOL) removePlayerWithID: (int) aPlayerID; Index: PlayerList.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerList.m,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** PlayerList.m 14 Sep 2005 16:20:08 -0000 1.15 --- PlayerList.m 17 Sep 2005 16:22:27 -0000 1.16 *************** *** 162,165 **** --- 162,185 ---- return YES; } + - (BOOL) addPlayers: (NSArray*) players { + PlayerList *mainList = [[Team currentTeam] allPlayersList]; + if(self == mainList) { + return NO; + } + else { + NSEnumerator *en = [players objectEnumerator]; + Player *current = nil; + while(current = [en nextObject]) { + int curId = [current playerID]; + if([self playerWithID:curId] == nil) { + Player *p = [mainList playerWithID:curId]; + if(p) { + [playerList addObject:p] ; + } + } + } + } + return YES; + } -(BOOL) addPlayerWithID: (int) aPlayerID { *************** *** 173,176 **** --- 193,208 ---- return NO; } + + -(BOOL) addPlayer: (Player*) aPlayer { + int aPlayerID = [aPlayer playerID]; + if([self playerWithID:aPlayerID] == nil) { + Player *p = [[[Team currentTeam] allPlayersList] playerWithID:aPlayerID]; + if(p) { + [playerList addObject:p]; + return YES; + } + } + return NO; + } - (BOOL) removePlayerWithID: (int) aPlayerID { PlayerList *mainList = [[Team currentTeam] allPlayersList]; Index: PlayerTableController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableController.m,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** PlayerTableController.m 17 Sep 2005 14:05:48 -0000 1.11 --- PlayerTableController.m 17 Sep 2005 16:22:27 -0000 1.12 *************** *** 54,58 **** } ! -(void) removeSelectedPlayers { --- 54,61 ---- } ! - (void) addSelectedPlayersToPlayerList: (PlayerList*) aPlayerList { ! NSArray *selectedPlayers = [playerListController selectedObjects]; ! [aPlayerList addPlayers: selectedPlayers]; ! } -(void) removeSelectedPlayers { |
|
From: Geisschaes <gei...@us...> - 2005-09-17 16:22:41
|
Update of /cvsroot/macattrick/macattrick/Macattrick.xcodeproj In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2722/Macattrick.xcodeproj Modified Files: roman.mode1 roman.pbxuser Log Message: implementing the context menu for the tables. add to groups works now Index: roman.mode1 =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.mode1,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** roman.mode1 17 Sep 2005 14:05:49 -0000 1.12 --- roman.mode1 17 Sep 2005 16:22:27 -0000 1.13 *************** *** 205,217 **** <integer>0</integer> <key>bookmark</key> ! <string>30B3055808DC594800C0E803</string> <key>history</key> <array> - <string>30B304D808DC4BDB00C0E803</string> <string>30B304DB08DC4BDB00C0E803</string> <string>30B304DC08DC4BDB00C0E803</string> ! <string>30B3051A08DC4F5C00C0E803</string> ! <string>30B3051B08DC4F5C00C0E803</string> ! <string>30B3051C08DC4F5C00C0E803</string> </array> <key>prevStack</key> --- 205,221 ---- <integer>0</integer> <key>bookmark</key> ! <string>30B305AA08DC78FF00C0E803</string> <key>history</key> <array> <string>30B304DB08DC4BDB00C0E803</string> <string>30B304DC08DC4BDB00C0E803</string> ! <string>30B3057D08DC786B00C0E803</string> ! <string>30B3057E08DC786B00C0E803</string> ! <string>30B3057F08DC786B00C0E803</string> ! <string>30B3058008DC786B00C0E803</string> ! <string>30B3058108DC786B00C0E803</string> ! <string>30B3058208DC786B00C0E803</string> ! <string>30B3058308DC786B00C0E803</string> ! <string>30B3058408DC786B00C0E803</string> </array> <key>prevStack</key> *************** *** 227,230 **** --- 231,251 ---- <string>30B3051D08DC4F5C00C0E803</string> <string>30B3051E08DC4F5C00C0E803</string> + <string>30B3058508DC786B00C0E803</string> + <string>30B3058608DC786B00C0E803</string> + <string>30B3058708DC786B00C0E803</string> + <string>30B3058808DC786B00C0E803</string> + <string>30B3058908DC786B00C0E803</string> + <string>30B3058A08DC786B00C0E803</string> + <string>30B3058B08DC786B00C0E803</string> + <string>30B3058C08DC786B00C0E803</string> + <string>30B3058D08DC786B00C0E803</string> + <string>30B3058E08DC786B00C0E803</string> + <string>30B3058F08DC786B00C0E803</string> + <string>30B3059008DC786B00C0E803</string> + <string>30B3059108DC786B00C0E803</string> + <string>30B3059208DC786B00C0E803</string> + <string>30B3059308DC786B00C0E803</string> + <string>30B3059408DC786B00C0E803</string> + <string>30B3059508DC786B00C0E803</string> </array> </dict> *************** *** 234,249 **** <string>30B304EA08DC4BDB00C0E803</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>30B3055908DC594800C0E803</string> <key>history</key> <array> <string>30B304EC08DC4BDB00C0E803</string> <string>30B3052008DC4F5C00C0E803</string> - <string>30B3052108DC4F5C00C0E803</string> <string>30B3052208DC4F5C00C0E803</string> ! <string>30B304EB08DC4BDB00C0E803</string> </array> <key>prevStack</key> --- 255,271 ---- <string>30B304EA08DC4BDB00C0E803</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.h</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>30B305AB08DC78FF00C0E803</string> <key>history</key> <array> <string>30B304EC08DC4BDB00C0E803</string> <string>30B3052008DC4F5C00C0E803</string> <string>30B3052208DC4F5C00C0E803</string> ! <string>30B3059708DC786B00C0E803</string> ! <string>30B3059808DC786B00C0E803</string> ! <string>30B3059908DC786B00C0E803</string> </array> <key>prevStack</key> *************** *** 255,258 **** --- 277,285 ---- <string>30B3052408DC4F5C00C0E803</string> <string>30B3052508DC4F5C00C0E803</string> + <string>30B3059A08DC786B00C0E803</string> + <string>30B3059B08DC786B00C0E803</string> + <string>30B3059C08DC786B00C0E803</string> + <string>30B3059D08DC786B00C0E803</string> + <string>30B3059E08DC786B00C0E803</string> </array> </dict> *************** *** 352,362 **** <array> <array> ! <integer>8</integer> ! <integer>3</integer> <integer>0</integer> </array> </array> <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> ! <string>{{0, 34}, {244, 545}}</string> </dict> <key>PBXTopSmartGroupGIDs</key> --- 379,388 ---- <array> <array> ! <integer>2</integer> <integer>0</integer> </array> </array> <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> ! <string>{{0, 0}, {244, 545}}</string> </dict> <key>PBXTopSmartGroupGIDs</key> *************** *** 388,393 **** <array> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> --- 414,417 ---- *************** *** 407,411 **** <integer>0</integer> <key>bookmark</key> ! <string>30B3055708DC594800C0E803</string> <key>history</key> <array> --- 431,435 ---- <integer>0</integer> <key>bookmark</key> ! <string>30B305A908DC78FF00C0E803</string> <key>history</key> <array> *************** *** 655,658 **** --- 679,684 ---- </dict> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 832,842 **** <string>30B3054708DC57AF00C0E803</string> <string>30BE4823082FED6F00826659</string> <string>30B3054508DC57AF00C0E803</string> - <string>30A82A48082E9E83003C97DB</string> - <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> <string>1C0AD2AF069F1E9B00FABCE6</string> <string>30B304A408DC245C00C0E803</string> <string>1C0AD2B3069F1EA900FABCE6</string> - <string>1CD10A99069EF8BA00B06720</string> </array> <key>WindowString</key> --- 858,868 ---- <string>30B3054708DC57AF00C0E803</string> <string>30BE4823082FED6F00826659</string> + <string>1CD10A99069EF8BA00B06720</string> <string>30B3054508DC57AF00C0E803</string> <string>1C0AD2AF069F1E9B00FABCE6</string> + <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> <string>30B304A408DC245C00C0E803</string> + <string>30A82A48082E9E83003C97DB</string> <string>1C0AD2B3069F1EA900FABCE6</string> </array> <key>WindowString</key> *************** *** 857,860 **** --- 883,888 ---- <array> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 862,866 **** <string>1CD0528F0623707200166675</string> <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> <key>StatusBarVisibility</key> <true/> --- 890,894 ---- <string>1CD0528F0623707200166675</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerList.m</string> <key>StatusBarVisibility</key> <true/> *************** *** 879,884 **** </dict> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> --- 907,910 ---- *************** *** 1044,1048 **** <string>1CD10A99069EF8BA00B06720</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> --- 1070,1074 ---- <string>1CD10A99069EF8BA00B06720</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> *************** *** 1606,1615 **** <string>1CA6456E063B45B4001379D8</string> <key>PBXProjectModuleLabel</key> ! <string>Class Browser - Team</string> </dict> <key>GeometryConfiguration</key> <dict> <key>ClassesFrame</key> ! <string>{{0, 0}, {378, 96}}</string> <key>ClassesTreeTableConfiguration</key> <array> --- 1632,1641 ---- <string>1CA6456E063B45B4001379D8</string> <key>PBXProjectModuleLabel</key> ! <string>Class Browser - PlayerList</string> </dict> <key>GeometryConfiguration</key> <dict> <key>ClassesFrame</key> ! <string>{{0, 0}, {1028, 96}}</string> <key>ClassesTreeTableConfiguration</key> <array> *************** *** 1620,1626 **** </array> <key>Frame</key> ! <string>{{0, 0}, {630, 332}}</string> <key>MembersFrame</key> ! <string>{{0, 101}, {378, 231}}</string> <key>MembersTreeTableConfiguration</key> <array> --- 1646,1652 ---- </array> <key>Frame</key> ! <string>{{0, 0}, {1280, 707}}</string> <key>MembersFrame</key> ! <string>{{0, 101}, {1028, 606}}</string> <key>MembersTreeTableConfiguration</key> <array> *************** *** 1630,1648 **** <real>216</real> <string>PBXMemberTypeColumnIdentifier</string> ! <real>101</real> <string>PBXMemberBookColumnIdentifier</string> <real>22</real> </array> <key>RubberWindowFrame</key> ! <string>77 246 630 352 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXClassBrowserModule</string> <key>Proportion</key> ! <string>332pt</string> </dict> </array> <key>Proportion</key> ! <string>332pt</string> </dict> </array> --- 1656,1674 ---- <real>216</real> <string>PBXMemberTypeColumnIdentifier</string> ! <real>751</real> <string>PBXMemberBookColumnIdentifier</string> <real>22</real> </array> <key>RubberWindowFrame</key> ! <string>0 105 1280 727 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXClassBrowserModule</string> <key>Proportion</key> ! <string>707pt</string> </dict> </array> <key>Proportion</key> ! <string>707pt</string> </dict> </array> *************** *** 1664,1668 **** <string>xcode.toolbar.config.classbrowser</string> <key>WindowString</key> ! <string>77 246 630 352 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2AF069F1E9B00FABCE6</string> --- 1690,1694 ---- <string>xcode.toolbar.config.classbrowser</string> <key>WindowString</key> ! <string>0 105 1280 727 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2AF069F1E9B00FABCE6</string> Index: roman.pbxuser =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.pbxuser,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** roman.pbxuser 17 Sep 2005 14:05:49 -0000 1.12 --- roman.pbxuser 17 Sep 2005 16:22:27 -0000 1.13 *************** *** 53,57 **** 30E3011C088D5853003395B7 /* TeamTest.m:58 */, 30294043088ED45E00C9C2BC /* PlayerList.m:143 */, ! 3062F15608B2793300CB7FF1 /* PlayerList.m:190 */, 3062F16108B279C800CB7FF1 /* PlayerTableView.m:38 */, 3062F16308B279C900CB7FF1 /* PlayerTableView.m:39 */, --- 53,57 ---- 30E3011C088D5853003395B7 /* TeamTest.m:58 */, 30294043088ED45E00C9C2BC /* PlayerList.m:143 */, ! 3062F15608B2793300CB7FF1 /* PlayerList.m:222 */, 3062F16108B279C800CB7FF1 /* PlayerTableView.m:38 */, [...1266 lines suppressed...] }; --- 6172,6176 ---- hitCount = 0; lineNumber = 58; ! modificationTime = 148666459.808234; state = 2; }; *************** *** 6027,6031 **** name = "Team *temp ="; rLen = 12; ! rLoc = 7148; rType = 0; vrLen = 712; --- 6520,6524 ---- name = "Team *temp ="; rLen = 12; ! rLoc = 7460; rType = 0; vrLen = 712; |
|
From: Geisschaes <gei...@us...> - 2005-09-17 14:06:03
|
Update of /cvsroot/macattrick/macattrick/Macattrick.xcodeproj In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8021/Macattrick.xcodeproj Modified Files: roman.mode1 roman.pbxuser Log Message: started implementing the context menu for the tables. add to groups does not work yet Index: roman.mode1 =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.mode1,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** roman.mode1 17 Sep 2005 10:33:18 -0000 1.11 --- roman.mode1 17 Sep 2005 14:05:49 -0000 1.12 *************** *** 191,197 **** <dict> <key>PBXProjectModuleGUID</key> ! <string>3069619B08D8825F0056662D</string> <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 191,197 ---- <dict> <key>PBXProjectModuleGUID</key> ! <string>30B304A408DC245C00C0E803</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableView.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 199,235 **** <dict> <key>PBXProjectModuleGUID</key> ! <string>306961D308D8CDA20056662D</string> <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>306961E508D8CDA30056662D</string> <key>history</key> <array> ! <string>306961D408D8CDA20056662D</string> ! <string>306961D508D8CDA30056662D</string> ! <string>306961D608D8CDA30056662D</string> ! <string>306961D708D8CDA30056662D</string> ! <string>306961D808D8CDA30056662D</string> ! <string>306961D908D8CDA30056662D</string> ! <string>306961DA08D8CDA30056662D</string> ! <string>306961DB08D8CDA30056662D</string> </array> <key>prevStack</key> <array> ! <string>306961DC08D8CDA30056662D</string> ! <string>306961DD08D8CDA30056662D</string> ! <string>306961DE08D8CDA30056662D</string> ! <string>306961DF08D8CDA30056662D</string> ! <string>306961E008D8CDA30056662D</string> ! <string>306961E108D8CDA30056662D</string> ! <string>306961E208D8CDA30056662D</string> ! <string>306961E308D8CDA30056662D</string> ! <string>306961E408D8CDA30056662D</string> </array> </dict> <key>SplitCount</key> ! <string>1</string> </dict> <key>StatusBarVisibility</key> --- 199,262 ---- <dict> <key>PBXProjectModuleGUID</key> ! <string>30B304D708DC4BDB00C0E803</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableView.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>30B3055808DC594800C0E803</string> <key>history</key> <array> ! <string>30B304D808DC4BDB00C0E803</string> ! <string>30B304DB08DC4BDB00C0E803</string> ! <string>30B304DC08DC4BDB00C0E803</string> ! <string>30B3051A08DC4F5C00C0E803</string> ! <string>30B3051B08DC4F5C00C0E803</string> ! <string>30B3051C08DC4F5C00C0E803</string> </array> <key>prevStack</key> <array> ! <string>30B304DF08DC4BDB00C0E803</string> ! <string>30B304E108DC4BDB00C0E803</string> ! <string>30B304E308DC4BDB00C0E803</string> ! <string>30B304E408DC4BDB00C0E803</string> ! <string>30B304E508DC4BDB00C0E803</string> ! <string>30B304E608DC4BDB00C0E803</string> ! <string>30B304E708DC4BDB00C0E803</string> ! <string>30B304E808DC4BDB00C0E803</string> ! <string>30B3051D08DC4F5C00C0E803</string> ! <string>30B3051E08DC4F5C00C0E803</string> ! </array> ! </dict> ! <key>Split1</key> ! <dict> ! <key>PBXProjectModuleGUID</key> ! <string>30B304EA08DC4BDB00C0E803</string> ! <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.m</string> ! <key>_historyCapacity</key> ! <integer>0</integer> ! <key>bookmark</key> ! <string>30B3055908DC594800C0E803</string> ! <key>history</key> ! <array> ! <string>30B304EC08DC4BDB00C0E803</string> ! <string>30B3052008DC4F5C00C0E803</string> ! <string>30B3052108DC4F5C00C0E803</string> ! <string>30B3052208DC4F5C00C0E803</string> ! <string>30B304EB08DC4BDB00C0E803</string> ! </array> ! <key>prevStack</key> ! <array> ! <string>30B304EE08DC4BDB00C0E803</string> ! <string>30B304EF08DC4BDB00C0E803</string> ! <string>30B304F008DC4BDB00C0E803</string> ! <string>30B3052308DC4F5C00C0E803</string> ! <string>30B3052408DC4F5C00C0E803</string> ! <string>30B3052508DC4F5C00C0E803</string> </array> </dict> <key>SplitCount</key> ! <string>2</string> </dict> <key>StatusBarVisibility</key> *************** *** 239,247 **** <dict> <key>Frame</key> ! <string>{{0, 20}, {1157, 531}}</string> <key>PBXModuleWindowStatusBarHidden2</key> <false/> <key>RubberWindowFrame</key> ! <string>71 101 1157 572 0 0 1280 832 </string> </dict> </dict> --- 266,274 ---- <dict> <key>Frame</key> ! <string>{{0, 20}, {1099, 710}}</string> <key>PBXModuleWindowStatusBarHidden2</key> <false/> <key>RubberWindowFrame</key> ! <string>82 81 1099 751 0 0 1280 832 </string> </dict> </dict> *************** *** 331,335 **** </array> <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> ! <string>{{0, 0}, {244, 545}}</string> </dict> <key>PBXTopSmartGroupGIDs</key> --- 358,362 ---- </array> <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> ! <string>{{0, 34}, {244, 545}}</string> </dict> <key>PBXTopSmartGroupGIDs</key> *************** *** 350,354 **** </array> <key>RubberWindowFrame</key> ! <string>223 185 914 604 0 0 1280 832 </string> </dict> <key>Module</key> --- 377,381 ---- </array> <key>RubberWindowFrame</key> ! <string>252 218 914 604 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 361,364 **** --- 388,393 ---- <array> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 366,370 **** <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 395,399 ---- <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 374,382 **** <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>306961D208D8CDA20056662D</string> <key>history</key> <array> --- 403,411 ---- <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>30B3055708DC594800C0E803</string> <key>history</key> <array> *************** *** 475,487 **** <string>306961B408D8CDA20056662D</string> <string>306961B508D8CDA20056662D</string> - <string>306961B608D8CDA20056662D</string> <string>306961B708D8CDA20056662D</string> - <string>306961B808D8CDA20056662D</string> <string>306961B908D8CDA20056662D</string> <string>306961BA08D8CDA20056662D</string> ! <string>306961BB08D8CDA20056662D</string> ! <string>306961BC08D8CDA20056662D</string> ! <string>306961BD08D8CDA20056662D</string> ! <string>306961BE08D8CDA20056662D</string> </array> <key>prevStack</key> --- 504,517 ---- <string>306961B408D8CDA20056662D</string> <string>306961B508D8CDA20056662D</string> <string>306961B708D8CDA20056662D</string> <string>306961B908D8CDA20056662D</string> <string>306961BA08D8CDA20056662D</string> ! <string>30B304BF08DC4BDB00C0E803</string> ! <string>30B304C008DC4BDB00C0E803</string> ! <string>30B304C108DC4BDB00C0E803</string> ! <string>30B304C208DC4BDB00C0E803</string> ! <string>30B304C308DC4BDB00C0E803</string> ! <string>30B304C408DC4BDB00C0E803</string> ! <string>30B304C508DC4BDB00C0E803</string> </array> <key>prevStack</key> *************** *** 587,612 **** <string>3029409B088EDB4100C9C2BC</string> <string>3029409E088EDB4100C9C2BC</string> - <string>3069617308D8819C0056662D</string> - <string>3069617408D8819C0056662D</string> - <string>3069617508D8819C0056662D</string> - <string>306961BF08D8CDA20056662D</string> <string>306961C008D8CDA20056662D</string> <string>306961C108D8CDA20056662D</string> - <string>306961C208D8CDA20056662D</string> - <string>306961C308D8CDA20056662D</string> - <string>306961C408D8CDA20056662D</string> - <string>306961C508D8CDA20056662D</string> - <string>306961C608D8CDA20056662D</string> - <string>306961C708D8CDA20056662D</string> <string>306961C808D8CDA20056662D</string> ! <string>306961C908D8CDA20056662D</string> ! <string>306961CA08D8CDA20056662D</string> ! <string>306961CB08D8CDA20056662D</string> ! <string>306961CC08D8CDA20056662D</string> ! <string>306961CD08D8CDA20056662D</string> ! <string>306961CE08D8CDA20056662D</string> ! <string>306961CF08D8CDA20056662D</string> ! <string>306961D008D8CDA20056662D</string> ! <string>306961D108D8CDA20056662D</string> </array> </dict> --- 617,637 ---- <string>3029409B088EDB4100C9C2BC</string> <string>3029409E088EDB4100C9C2BC</string> <string>306961C008D8CDA20056662D</string> <string>306961C108D8CDA20056662D</string> <string>306961C808D8CDA20056662D</string> ! <string>30B304C608DC4BDB00C0E803</string> ! <string>30B304C708DC4BDB00C0E803</string> ! <string>30B304C808DC4BDB00C0E803</string> ! <string>30B304C908DC4BDB00C0E803</string> ! <string>30B304CA08DC4BDB00C0E803</string> ! <string>30B304CB08DC4BDB00C0E803</string> ! <string>30B304CC08DC4BDB00C0E803</string> ! <string>30B304CD08DC4BDB00C0E803</string> ! <string>30B304CE08DC4BDB00C0E803</string> ! <string>30B304CF08DC4BDB00C0E803</string> ! <string>30B304D008DC4BDB00C0E803</string> ! <string>30B304D108DC4BDB00C0E803</string> ! <string>30B304D208DC4BDB00C0E803</string> ! <string>30B304D308DC4BDB00C0E803</string> </array> </dict> *************** *** 622,626 **** <string>{{0, 0}, {648, 309}}</string> <key>RubberWindowFrame</key> ! <string>223 185 914 604 0 0 1280 832 </string> </dict> <key>Module</key> --- 647,651 ---- <string>{{0, 0}, {648, 309}}</string> <key>RubberWindowFrame</key> ! <string>252 218 914 604 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 630,635 **** </dict> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> --- 655,658 ---- *************** *** 644,648 **** <string>{{0, 314}, {648, 249}}</string> <key>RubberWindowFrame</key> ! <string>223 185 914 604 0 0 1280 832 </string> </dict> <key>Module</key> --- 667,671 ---- <string>{{0, 314}, {648, 249}}</string> <key>RubberWindowFrame</key> ! <string>252 218 914 604 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 668,674 **** <key>TableOfContents</key> <array> ! <string>3069616408D87AD70056662D</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>3069616508D87AD70056662D</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> --- 691,697 ---- <key>TableOfContents</key> <array> ! <string>30B304D508DC4BDB00C0E803</string> <string>1CE0B1FE06471DED0097A5F4</string> ! <string>30B304D608DC4BDB00C0E803</string> <string>1CE0B20306471E060097A5F4</string> <string>1CE0B20506471E060097A5F4</string> *************** *** 783,787 **** <false/> <key>PinnedNavigatorIdentifier</key> ! <string>3069619B08D8825F0056662D</string> <key>ShelfIsVisible</key> <false/> --- 806,810 ---- <false/> <key>PinnedNavigatorIdentifier</key> ! <string>30B304A408DC245C00C0E803</string> <key>ShelfIsVisible</key> <false/> *************** *** 806,818 **** <key>WindowOrderList</key> <array> ! <string>1C530D57069F1CE1000CFCEE</string> ! <string>1CD10A99069EF8BA00B06720</string> ! <string>3069616008D87AD10056662D</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> ! <string>3069619B08D8825F0056662D</string> <string>1C0AD2B3069F1EA900FABCE6</string> </array> <key>WindowString</key> ! <string>223 185 914 604 0 0 1280 832 </string> <key>WindowTools</key> <array> --- 829,845 ---- <key>WindowOrderList</key> <array> ! <string>30B3054E08DC57F800C0E803</string> ! <string>30B3054708DC57AF00C0E803</string> ! <string>30BE4823082FED6F00826659</string> ! <string>30B3054508DC57AF00C0E803</string> ! <string>30A82A48082E9E83003C97DB</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> ! <string>1C0AD2AF069F1E9B00FABCE6</string> ! <string>30B304A408DC245C00C0E803</string> <string>1C0AD2B3069F1EA900FABCE6</string> + <string>1CD10A99069EF8BA00B06720</string> </array> <key>WindowString</key> ! <string>252 218 914 604 0 0 1280 832 </string> <key>WindowTools</key> <array> *************** *** 835,839 **** <string>1CD0528F0623707200166675</string> <key>PBXProjectModuleLabel</key> ! <string></string> <key>StatusBarVisibility</key> <true/> --- 862,866 ---- <string>1CD0528F0623707200166675</string> <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> <key>StatusBarVisibility</key> <true/> *************** *** 857,861 **** <dict> <key>PBXBuildLogShowsTranscriptDefaultKey</key> ! <string>{{0, 215}, {787, 95}}</string> <key>PBXProjectModuleGUID</key> <string>XCMainBuildResultsModuleGUID</string> --- 884,888 ---- <dict> <key>PBXBuildLogShowsTranscriptDefaultKey</key> ! <string>{{0, 208}, {787, 102}}</string> <key>PBXProjectModuleGUID</key> <string>XCMainBuildResultsModuleGUID</string> *************** *** 895,899 **** <array> <string>30A82A48082E9E83003C97DB</string> ! <string>3062F12808B2703B00CB7FF1</string> <string>1CD0528F0623707200166675</string> <string>XCMainBuildResultsModuleGUID</string> --- 922,926 ---- <array> <string>30A82A48082E9E83003C97DB</string> ! <string>30B304F208DC4BDB00C0E803</string> <string>1CD0528F0623707200166675</string> <string>XCMainBuildResultsModuleGUID</string> *************** *** 937,942 **** <key>sizes</key> <array> ! <string>{{0, 0}, {256, 178}}</string> ! <string>{{256, 0}, {1024, 178}}</string> </array> </dict> --- 964,969 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {256, 173}}</string> ! <string>{{256, 0}, {1024, 173}}</string> </array> </dict> *************** *** 953,958 **** <key>sizes</key> <array> ! <string>{{0, 0}, {1280, 178}}</string> ! <string>{{0, 178}, {1280, 508}}</string> </array> </dict> --- 980,985 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {1280, 173}}</string> ! <string>{{0, 173}, {1280, 513}}</string> </array> </dict> *************** *** 978,982 **** <string>{{0, 0}, {1280, 686}}</string> <key>RubberWindowFrame</key> ! <string>-16 105 1280 727 0 0 1280 832 </string> </dict> <key>Module</key> --- 1005,1009 ---- <string>{{0, 0}, {1280, 686}}</string> <key>RubberWindowFrame</key> ! <string>-2 105 1280 727 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1001,1021 **** <array> <string>1CD10A99069EF8BA00B06720</string> ! <string>3069615A08D87AD10056662D</string> <string>1C162984064C10D400B95A72</string> ! <string>3069615B08D87AD10056662D</string> ! <string>3069615C08D87AD10056662D</string> ! <string>3069615D08D87AD10056662D</string> ! <string>3069615E08D87AD10056662D</string> ! <string>3069615F08D87AD10056662D</string> ! <string>3069616008D87AD10056662D</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.debug</string> <key>WindowString</key> ! <string>-16 105 1280 727 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1CD10A99069EF8BA00B06720</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> --- 1028,1048 ---- <array> <string>1CD10A99069EF8BA00B06720</string> ! <string>30B3053F08DC57AF00C0E803</string> <string>1C162984064C10D400B95A72</string> ! <string>30B3054008DC57AF00C0E803</string> ! <string>30B3054108DC57AF00C0E803</string> ! <string>30B3054208DC57AF00C0E803</string> ! <string>30B3054308DC57AF00C0E803</string> ! <string>30B3054408DC57AF00C0E803</string> ! <string>30B3054508DC57AF00C0E803</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.debug</string> <key>WindowString</key> ! <string>-2 105 1280 727 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1CD10A99069EF8BA00B06720</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> *************** *** 1162,1166 **** <array> <string>30BE4823082FED6F00826659</string> ! <string>30424BE708D878FC0078B25B</string> <string>1C78EAAC065D492600B07095</string> </array> --- 1189,1193 ---- <array> <string>30BE4823082FED6F00826659</string> ! <string>30B3054608DC57AF00C0E803</string> <string>1C78EAAC065D492600B07095</string> </array> *************** *** 1207,1212 **** <key>sizes</key> <array> ! <string>{{0, 0}, {493, 168}}</string> ! <string>{{0, 173}, {493, 270}}</string> </array> </dict> --- 1234,1239 ---- <key>sizes</key> <array> ! <string>{{0, 0}, {367, 168}}</string> ! <string>{{0, 173}, {367, 270}}</string> </array> </dict> *************** *** 1234,1238 **** <string>{{0, 0}, {1095, 323}}</string> <key>RubberWindowFrame</key> ! <string>232 123 1095 364 0 0 1280 832 </string> </dict> <key>Module</key> --- 1261,1265 ---- <string>{{0, 0}, {1095, 323}}</string> <key>RubberWindowFrame</key> ! <string>94 229 1095 364 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1257,1268 **** <array> <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>3069616108D87AD10056662D</string> <string>1CD0528B0623707200166675</string> ! <string>3069616208D87AD10056662D</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>232 123 1095 364 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> --- 1284,1295 ---- <array> <string>1C0AD2B3069F1EA900FABCE6</string> ! <string>30B304F308DC4BDB00C0E803</string> <string>1CD0528B0623707200166675</string> ! <string>30B304F408DC4BDB00C0E803</string> </array> <key>ToolbarConfiguration</key> <string>xcode.toolbar.config.run</string> <key>WindowString</key> ! <string>94 229 1095 364 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C0AD2B3069F1EA900FABCE6</string> *************** *** 1579,1583 **** <string>1CA6456E063B45B4001379D8</string> <key>PBXProjectModuleLabel</key> ! <string>Class Browser - PlayerList</string> </dict> <key>GeometryConfiguration</key> --- 1606,1610 ---- <string>1CA6456E063B45B4001379D8</string> <key>PBXProjectModuleLabel</key> ! <string>Class Browser - Team</string> </dict> <key>GeometryConfiguration</key> *************** *** 1631,1635 **** <array> <string>1C0AD2AF069F1E9B00FABCE6</string> ! <string>30BFF67108784B0000CC3E0E</string> <string>1CA6456E063B45B4001379D8</string> </array> --- 1658,1662 ---- <array> <string>1C0AD2AF069F1E9B00FABCE6</string> ! <string>30B3052D08DC51F300C0E803</string> <string>1CA6456E063B45B4001379D8</string> </array> *************** *** 1641,1645 **** <string>1C0AD2AF069F1E9B00FABCE6</string> <key>WindowToolIsVisible</key> ! <false/> </dict> </array> --- 1668,1672 ---- <string>1C0AD2AF069F1E9B00FABCE6</string> <key>WindowToolIsVisible</key> ! <true/> </dict> </array> Index: roman.pbxuser =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.pbxuser,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** roman.pbxuser 17 Sep 2005 10:33:18 -0000 1.11 --- roman.pbxuser 17 Sep 2005 14:05:49 -0000 1.12 *************** *** 54,60 **** 30294043088ED45E00C9C2BC /* PlayerList.m:143 */, 3062F15608B2793300CB7FF1 /* PlayerList.m:190 */, ! 3062F16108B279C800CB7FF1 /* PlayerTableView.m:37 */, ! 3062F16308B279C900CB7FF1 /* PlayerTableView.m:38 */, ! 30424BE008D878D40078B25B /* Team.m:50 */, ); breakpointsGroup = 309631DF086EC5BD00970F48 /* XCBreakpointsBucket */; --- 54,59 ---- 30294043088ED45E00C9C2BC /* PlayerList.m:143 */, 3062F15608B2793300CB7FF1 /* PlayerList.m:190 */, [...1319 lines suppressed...] }; --- 4547,4551 ---- hitCount = 0; lineNumber = 35; ! modificationTime = 148658092.824951; state = 2; }; *************** *** 4720,4724 **** hitCount = 0; lineNumber = 58; ! modificationTime = 148404450.637196; state = 2; }; --- 5679,5683 ---- hitCount = 0; lineNumber = 58; ! modificationTime = 148658092.825175; state = 2; }; |
|
From: Geisschaes <gei...@us...> - 2005-09-17 14:06:02
|
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8021 Modified Files: PlayerTableController.h PlayerTableController.m PlayerTableView.h PlayerTableView.m PositionsController.m Log Message: started implementing the context menu for the tables. add to groups does not work yet Index: PlayerTableView.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableView.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PlayerTableView.m 20 Jul 2005 19:30:58 -0000 1.1 --- PlayerTableView.m 17 Sep 2005 14:05:48 -0000 1.2 *************** *** 28,32 **** #import "PlayerTableView.h" ! @implementation PlayerTableView --- 28,33 ---- #import "PlayerTableView.h" ! #import "Team.h" ! #import "PlayerList.h" @implementation PlayerTableView *************** *** 48,52 **** controller = newController; } ! ! @end --- 49,82 ---- controller = newController; } ! - (IBAction) showDetails: (id) sender { ! [controller doubleClicked]; ! } ! - (IBAction) deletePlayer: (id)sender { ! [controller removeSelectedPlayers]; ! } ! - (IBAction) addToGroup: (id)sender { ! NSString *groupName = [sender title]; ! } ! - (void) awakeFromNib { ! NSMenu *men = [[NSMenu alloc] init]; ! [men addItemWithTitle:NSLocalizedString(@"Show Details",@"Show Details") action:@selector(showDetails:) keyEquivalent:@""]; ! [men addItemWithTitle:NSLocalizedString(@"Remove From Group",@"Remove From Group") action:@selector(deletePlayer:) keyEquivalent:@""]; ! NSMenu *groupMenu = [[NSMenu alloc] init]; ! NSArray *groups = [[Team currentTeam] userDefinedPlayerLists]; ! NSEnumerator *en = [groups objectEnumerator]; ! PlayerList *current; ! while(current = [en nextObject]) { ! if([current isNotEqualTo: [[Team currentTeam] allPlayersList]]) { ! [groupMenu addItemWithTitle:[current listName] action: @selector(addToGroup:) keyEquivalent:@""]; ! } ! } ! NSMenuItem *gr = [[NSMenuItem alloc] init]; ! [gr setTitle:NSLocalizedString(@"Add to Group", @"Add to Group")]; ! [men addItem:gr]; ! [men setSubmenu:groupMenu forItem:gr]; ! [self setMenu:men]; ! [groupMenu release]; ! [men release]; ! [gr release]; ! } @end Index: PlayerTableController.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableController.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PlayerTableController.h 20 Jul 2005 19:30:58 -0000 1.6 --- PlayerTableController.h 17 Sep 2005 14:05:48 -0000 1.7 *************** *** 51,53 **** --- 51,55 ---- -(void) removeSelectedPlayers; + + @end Index: PositionsController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PositionsController.m,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** PositionsController.m 17 Sep 2005 10:33:18 -0000 1.10 --- PositionsController.m 17 Sep 2005 14:05:48 -0000 1.11 *************** *** 173,176 **** --- 173,177 ---- [pboard declareTypes:[NSArray arrayWithObject:NSDragPboard] owner:self]; NSIndexSet *sel = [positionsTable selectedRowIndexes]; + NSMutableArray *playerIDs = [NSMutableArray array]; int i; Index: PlayerTableView.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableView.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PlayerTableView.h 20 Jul 2005 19:30:58 -0000 1.1 --- PlayerTableView.h 17 Sep 2005 14:05:48 -0000 1.2 *************** *** 35,38 **** --- 35,40 ---- - (id) controller; - (void) setController: (id) newController; + - (IBAction) showDetails: (id) sender; + - (IBAction) deletePlayer: (id)sender; @end Index: PlayerTableController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PlayerTableController.m,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** PlayerTableController.m 20 Jul 2005 19:30:58 -0000 1.10 --- PlayerTableController.m 17 Sep 2005 14:05:48 -0000 1.11 *************** *** 62,65 **** --- 62,68 ---- } + + + - (NSView *) playerTableView { return playerTableView; } |
|
From: Geisschaes <gei...@us...> - 2005-09-17 10:33:33
|
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32668 Modified Files: PositionsController.h PositionsController.m Log Message: backspace on positionstable works Index: PositionsController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PositionsController.m,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** PositionsController.m 14 Sep 2005 18:05:31 -0000 1.9 --- PositionsController.m 17 Sep 2005 10:33:18 -0000 1.10 *************** *** 41,44 **** --- 41,45 ---- [positionsTable setTarget:self]; [positionsTable setDoubleAction:@selector(doubleClicked)]; + [positionsTable setController: self]; [[Team currentTeam] addObserver: self forKeyPath: @"playerList" options: NSKeyValueObservingOptionNew context:nil]; return self; *************** *** 138,141 **** --- 139,162 ---- } + + -(NSArray*) selectedPlayers { + NSIndexSet *sel = [positionsTable selectedRowIndexes]; + NSMutableArray *players = [[NSMutableArray alloc] init]; + int i; + for(i=0; i<[[[Team currentTeam] playerList] numberOfPlayers]; i++) { + if([sel containsIndex:i]) { + [players addObject: [[team playerList] playerAtIndex:i]]; + } + } + return players; + } + + -(void) removeSelectedPlayers { + NSArray *selected = [self selectedPlayers]; + [[team playerList] removePlayers:selected]; + [selected release]; + [positionsTable reloadData]; + } + -(void) doubleClicked { [[MainController mainController] showPlayerDetailsWindowWithPlayer:[self selectedPlayer]]; *************** *** 153,157 **** NSIndexSet *sel = [positionsTable selectedRowIndexes]; NSMutableArray *playerIDs = [NSMutableArray array]; - NSMutableArray *players = [NSMutableArray array]; int i; for(i=0; i<[[[Team currentTeam] playerList] numberOfPlayers]; i++) { --- 174,177 ---- Index: PositionsController.h =================================================================== RCS file: /cvsroot/macattrick/macattrick/PositionsController.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PositionsController.h 16 Jan 2005 18:04:00 -0000 1.3 --- PositionsController.h 17 Sep 2005 10:33:18 -0000 1.4 *************** *** 30,33 **** --- 30,34 ---- #import <Cocoa/Cocoa.h> #import "TeamController.h" + #import "PlayerTableView.h" #import "Position.h" #import "Player.h" *************** *** 35,39 **** { IBOutlet NSView *positionsTableView; ! IBOutlet NSTableView *positionsTable; NSTableColumn * lastColumn; // track last column chosen SEL columnSortSelector; --- 36,40 ---- { IBOutlet NSView *positionsTableView; ! IBOutlet PlayerTableView *positionsTable; NSTableColumn * lastColumn; // track last column chosen SEL columnSortSelector; *************** *** 43,46 **** --- 44,48 ---- - (NSView*) positionsTableView; -(Player*) selectedPlayer; + -(NSArray*) selectedPlayers; // NSTableDataSource methods |
|
From: Geisschaes <gei...@us...> - 2005-09-17 10:33:33
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PositionTableView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32668/English.lproj/PositionTableView.nib Modified Files: classes.nib info.nib keyedobjects.nib Log Message: backspace on positionstable works Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PositionTableView.nib/info.nib,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** info.nib 18 Feb 2005 15:40:52 -0000 1.4 --- info.nib 17 Sep 2005 10:33:18 -0000 1.5 *************** *** 4,17 **** <dict> <key>IBDocumentLocation</key> ! <string>93 76 356 240 0 0 1600 1002 </string> <key>IBEditorPositions</key> <dict> <key>5</key> ! <string>35 467 827 517 0 0 1600 1002 </string> </dict> <key>IBFramework Version</key> ! <string>364.0</string> <key>IBSystem Version</key> ! <string>7U16</string> </dict> </plist> --- 4,21 ---- <dict> <key>IBDocumentLocation</key> ! <string>-25 71 356 240 0 0 1280 832 </string> <key>IBEditorPositions</key> <dict> <key>5</key> ! <string>226 305 827 517 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> ! <string>439.0</string> ! <key>IBOpenObjects</key> ! <array> ! <integer>5</integer> ! </array> <key>IBSystem Version</key> ! <string>8C46</string> </dict> </plist> Index: classes.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PositionTableView.nib/classes.nib,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** classes.nib 5 Dec 2004 21:47:25 -0000 1.1 --- classes.nib 17 Sep 2005 10:33:18 -0000 1.2 *************** *** 3,9 **** {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, { CLASS = PositionsController; LANGUAGE = ObjC; ! OUTLETS = {positionsTable = NSTableView; positionsTableView = NSView; }; SUPERCLASS = TeamController; }, --- 3,15 ---- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, { + CLASS = PlayerTableView; + LANGUAGE = ObjC; + OUTLETS = {controller = id; }; + SUPERCLASS = NSTableView; + }, + { CLASS = PositionsController; LANGUAGE = ObjC; ! OUTLETS = {positionsTable = PlayerTableView; positionsTableView = NSView; }; SUPERCLASS = TeamController; }, Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PositionTableView.nib/keyedobjects.nib,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsrBMxaf and /tmp/cvs9guJJD differ |
|
From: Geisschaes <gei...@us...> - 2005-09-17 10:33:32
|
Update of /cvsroot/macattrick/macattrick/Macattrick.xcodeproj In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32668/Macattrick.xcodeproj Modified Files: roman.mode1 roman.pbxuser Log Message: backspace on positionstable works Index: roman.mode1 =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.mode1,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** roman.mode1 14 Sep 2005 16:20:08 -0000 1.10 --- roman.mode1 17 Sep 2005 10:33:18 -0000 1.11 *************** *** 191,197 **** <dict> <key>PBXProjectModuleGUID</key> ! <string>3062F15C08B2798A00CB7FF1</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerList.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 191,197 ---- <dict> <key>PBXProjectModuleGUID</key> ! <string>3069619B08D8825F0056662D</string> <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 199,229 **** <dict> <key>PBXProjectModuleGUID</key> ! <string>3062F16B08B279E700CB7FF1</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerList.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>3069617E08D8819C0056662D</string> <key>history</key> <array> ! <string>3062F17708B2820600CB7FF1</string> ! <string>3062F17808B2820600CB7FF1</string> ! <string>3062F17908B2820600CB7FF1</string> ! <string>3062F17A08B2820600CB7FF1</string> ! <string>3069617708D8819C0056662D</string> ! <string>3069617808D8819C0056662D</string> ! <string>3069617908D8819C0056662D</string> </array> <key>prevStack</key> <array> ! <string>3062F16E08B279E700CB7FF1</string> ! <string>3062F16F08B279E700CB7FF1</string> ! <string>3062F17D08B2820600CB7FF1</string> ! <string>3062F17E08B2820600CB7FF1</string> ! <string>3069617A08D8819C0056662D</string> ! <string>3069617B08D8819C0056662D</string> ! <string>3069617C08D8819C0056662D</string> ! <string>3069617D08D8819C0056662D</string> </array> </dict> --- 199,231 ---- <dict> <key>PBXProjectModuleGUID</key> ! <string>306961D308D8CDA20056662D</string> <key>PBXProjectModuleLabel</key> ! <string>PositionsController.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>306961E508D8CDA30056662D</string> <key>history</key> <array> ! <string>306961D408D8CDA20056662D</string> ! <string>306961D508D8CDA30056662D</string> ! <string>306961D608D8CDA30056662D</string> ! <string>306961D708D8CDA30056662D</string> ! <string>306961D808D8CDA30056662D</string> ! <string>306961D908D8CDA30056662D</string> ! <string>306961DA08D8CDA30056662D</string> ! <string>306961DB08D8CDA30056662D</string> </array> <key>prevStack</key> <array> ! <string>306961DC08D8CDA30056662D</string> ! <string>306961DD08D8CDA30056662D</string> ! <string>306961DE08D8CDA30056662D</string> ! <string>306961DF08D8CDA30056662D</string> ! <string>306961E008D8CDA30056662D</string> ! <string>306961E108D8CDA30056662D</string> ! <string>306961E208D8CDA30056662D</string> ! <string>306961E308D8CDA30056662D</string> ! <string>306961E408D8CDA30056662D</string> </array> </dict> *************** *** 241,245 **** <false/> <key>RubberWindowFrame</key> ! <string>68 248 1157 572 0 0 1280 832 </string> </dict> </dict> --- 243,247 ---- <false/> <key>RubberWindowFrame</key> ! <string>71 101 1157 572 0 0 1280 832 </string> </dict> </dict> *************** *** 314,318 **** <array> <string>29B97314FDCFA39411CA2CEA</string> - <string>080E96DDFE201D6D7F000001</string> <string>30BB2140067DC1CA00B1C71A</string> <string>30B355F80690131C00571DE8</string> --- 316,319 ---- *************** *** 324,334 **** <array> <array> - <integer>13</integer> <integer>8</integer> <integer>0</integer> </array> </array> <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> ! <string>{{0, 0}, {244, 616}}</string> </dict> <key>PBXTopSmartGroupGIDs</key> --- 325,335 ---- <array> <array> <integer>8</integer> + <integer>3</integer> <integer>0</integer> </array> </array> <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key> ! <string>{{0, 0}, {244, 545}}</string> </dict> <key>PBXTopSmartGroupGIDs</key> *************** *** 342,346 **** <dict> <key>Frame</key> ! <string>{{0, 0}, {261, 634}}</string> <key>GroupTreeTableConfiguration</key> <array> --- 343,347 ---- <dict> <key>Frame</key> ! <string>{{0, 0}, {261, 563}}</string> <key>GroupTreeTableConfiguration</key> <array> *************** *** 349,353 **** </array> <key>RubberWindowFrame</key> ! <string>186 157 1041 675 0 0 1280 832 </string> </dict> <key>Module</key> --- 350,354 ---- </array> <key>RubberWindowFrame</key> ! <string>223 185 914 604 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 360,365 **** <array> <dict> - <key>BecomeActive</key> - <true/> <key>ContentConfiguration</key> <dict> --- 361,364 ---- *************** *** 367,371 **** <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerListsViewController.h</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> --- 366,370 ---- <string>1CE0B20306471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.m</string> <key>PBXSplitModuleInNavigatorKey</key> <dict> *************** *** 375,383 **** <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerListsViewController.h</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>3069617608D8819C0056662D</string> <key>history</key> <array> --- 374,382 ---- <string>1CE0B20406471E060097A5F4</string> <key>PBXProjectModuleLabel</key> ! <string>PlayerTableController.m</string> <key>_historyCapacity</key> <integer>0</integer> <key>bookmark</key> ! <string>306961D208D8CDA20056662D</string> <key>history</key> <array> *************** *** 453,457 **** <string>30963210086ED54100970F48</string> <string>30BFF6010878402700CC3E0E</string> - <string>30BFF766087876DD00CC3E0E</string> <string>305EB2670888261A007A6071</string> <string>305EB2680888261A007A6071</string> --- 452,455 ---- *************** *** 469,485 **** <string>30E301F6088D768A003395B7</string> <string>30E301F7088D768A003395B7</string> - <string>30E301F8088D768A003395B7</string> <string>30294050088ED60900C9C2BC</string> <string>30294092088EDB4100C9C2BC</string> <string>30294093088EDB4100C9C2BC</string> - <string>30294094088EDB4100C9C2BC</string> - <string>30294097088EDB4100C9C2BC</string> - <string>3062F16608B279E700CB7FF1</string> - <string>3062F17308B2820600CB7FF1</string> <string>30424BE108D878FC0078B25B</string> ! <string>3069617008D8819C0056662D</string> ! <string>3069617108D8819C0056662D</string> ! <string>3069617208D8819C0056662D</string> ! <string>30BFF73C0878752F00CC3E0E</string> </array> <key>prevStack</key> --- 467,487 ---- <string>30E301F6088D768A003395B7</string> <string>30E301F7088D768A003395B7</string> <string>30294050088ED60900C9C2BC</string> <string>30294092088EDB4100C9C2BC</string> <string>30294093088EDB4100C9C2BC</string> <string>30424BE108D878FC0078B25B</string> ! <string>306961B208D8CDA20056662D</string> ! <string>306961B308D8CDA20056662D</string> ! <string>306961B408D8CDA20056662D</string> ! <string>306961B508D8CDA20056662D</string> ! <string>306961B608D8CDA20056662D</string> ! <string>306961B708D8CDA20056662D</string> ! <string>306961B808D8CDA20056662D</string> ! <string>306961B908D8CDA20056662D</string> ! <string>306961BA08D8CDA20056662D</string> ! <string>306961BB08D8CDA20056662D</string> ! <string>306961BC08D8CDA20056662D</string> ! <string>306961BD08D8CDA20056662D</string> ! <string>306961BE08D8CDA20056662D</string> </array> <key>prevStack</key> *************** *** 588,591 **** --- 590,612 ---- <string>3069617408D8819C0056662D</string> <string>3069617508D8819C0056662D</string> + <string>306961BF08D8CDA20056662D</string> + <string>306961C008D8CDA20056662D</string> + <string>306961C108D8CDA20056662D</string> + <string>306961C208D8CDA20056662D</string> + <string>306961C308D8CDA20056662D</string> + <string>306961C408D8CDA20056662D</string> + <string>306961C508D8CDA20056662D</string> + <string>306961C608D8CDA20056662D</string> + <string>306961C708D8CDA20056662D</string> + <string>306961C808D8CDA20056662D</string> + <string>306961C908D8CDA20056662D</string> + <string>306961CA08D8CDA20056662D</string> + <string>306961CB08D8CDA20056662D</string> + <string>306961CC08D8CDA20056662D</string> + <string>306961CD08D8CDA20056662D</string> + <string>306961CE08D8CDA20056662D</string> + <string>306961CF08D8CDA20056662D</string> + <string>306961D008D8CDA20056662D</string> + <string>306961D108D8CDA20056662D</string> </array> </dict> *************** *** 599,612 **** <dict> <key>Frame</key> ! <string>{{0, 0}, {775, 380}}</string> <key>RubberWindowFrame</key> ! <string>186 157 1041 675 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXNavigatorGroup</string> <key>Proportion</key> ! <string>380pt</string> </dict> <dict> <key>ContentConfiguration</key> <dict> --- 620,635 ---- <dict> <key>Frame</key> ! <string>{{0, 0}, {648, 309}}</string> <key>RubberWindowFrame</key> ! <string>223 185 914 604 0 0 1280 832 </string> </dict> <key>Module</key> <string>PBXNavigatorGroup</string> <key>Proportion</key> ! <string>309pt</string> </dict> <dict> + <key>BecomeActive</key> + <true/> <key>ContentConfiguration</key> <dict> *************** *** 619,625 **** <dict> <key>Frame</key> ! <string>{{0, 385}, {775, 249}}</string> <key>RubberWindowFrame</key> ! <string>186 157 1041 675 0 0 1280 832 </string> </dict> <key>Module</key> --- 642,648 ---- <dict> <key>Frame</key> ! <string>{{0, 314}, {648, 249}}</string> <key>RubberWindowFrame</key> ! <string>223 185 914 604 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 630,634 **** </array> <key>Proportion</key> ! <string>775pt</string> </dict> </array> --- 653,657 ---- </array> <key>Proportion</key> ! <string>648pt</string> </dict> </array> *************** *** 760,764 **** <false/> <key>PinnedNavigatorIdentifier</key> ! <string>3062F15C08B2798A00CB7FF1</string> <key>ShelfIsVisible</key> <false/> --- 783,787 ---- <false/> <key>PinnedNavigatorIdentifier</key> ! <string>3069619B08D8825F0056662D</string> <key>ShelfIsVisible</key> <false/> *************** *** 783,794 **** <key>WindowOrderList</key> <array> <string>1CD10A99069EF8BA00B06720</string> <string>3069616008D87AD10056662D</string> - <string>1C0AD2B3069F1EA900FABCE6</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> ! <string>3062F15C08B2798A00CB7FF1</string> </array> <key>WindowString</key> ! <string>186 157 1041 675 0 0 1280 832 </string> <key>WindowTools</key> <array> --- 806,818 ---- <key>WindowOrderList</key> <array> + <string>1C530D57069F1CE1000CFCEE</string> <string>1CD10A99069EF8BA00B06720</string> <string>3069616008D87AD10056662D</string> <string>/Users/roman/Documents/dev/macattrick/Macattrick.xcodeproj</string> ! <string>3069619B08D8825F0056662D</string> ! <string>1C0AD2B3069F1EA900FABCE6</string> </array> <key>WindowString</key> ! <string>223 185 914 604 0 0 1280 832 </string> <key>WindowTools</key> <array> *************** *** 1025,1029 **** <string>{{0, 0}, {1280, 409}}</string> <key>RubberWindowFrame</key> ! <string>239 49 1280 783 0 0 1280 832 </string> </dict> <key>Module</key> --- 1049,1053 ---- <string>{{0, 0}, {1280, 409}}</string> <key>RubberWindowFrame</key> ! <string>238 49 1280 783 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1051,1055 **** <string>{{0, 414}, {1280, 328}}</string> <key>RubberWindowFrame</key> ! <string>239 49 1280 783 0 0 1280 832 </string> </dict> <key>Module</key> --- 1075,1079 ---- <string>{{0, 414}, {1280, 328}}</string> <key>RubberWindowFrame</key> ! <string>238 49 1280 783 0 0 1280 832 </string> </dict> <key>Module</key> *************** *** 1074,1088 **** <array> <string>1C530D57069F1CE1000CFCEE</string> ! <string>30424BE508D878FC0078B25B</string> ! <string>30424BE608D878FC0078B25B</string> <string>1CDD528C0622207200134675</string> <string>1CD0528E0623707200166675</string> </array> <key>WindowString</key> ! <string>239 49 1280 783 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C530D57069F1CE1000CFCEE</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> --- 1098,1112 ---- <array> <string>1C530D57069F1CE1000CFCEE</string> ! <string>306961A208D882E90056662D</string> ! <string>306961A308D882E90056662D</string> <string>1CDD528C0622207200134675</string> <string>1CD0528E0623707200166675</string> </array> <key>WindowString</key> ! <string>238 49 1280 783 0 0 1280 832 </string> <key>WindowToolGUID</key> <string>1C530D57069F1CE1000CFCEE</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> *************** *** 1244,1248 **** <string>1C0AD2B3069F1EA900FABCE6</string> <key>WindowToolIsVisible</key> ! <false/> </dict> <dict> --- 1268,1272 ---- <string>1C0AD2B3069F1EA900FABCE6</string> <key>WindowToolIsVisible</key> ! <true/> </dict> <dict> Index: roman.pbxuser =================================================================== RCS file: /cvsroot/macattrick/macattrick/Macattrick.xcodeproj/roman.pbxuser,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** roman.pbxuser 14 Sep 2005 16:20:08 -0000 1.10 --- roman.pbxuser 17 Sep 2005 10:33:18 -0000 1.11 *************** *** 112,116 **** PBXFileTableDataSourceColumnWidthsKey = ( 20, ! 478, 20, 82, --- 112,116 ---- PBXFileTableDataSourceColumnWidthsKey = ( 20, ! 351, 20, [...1324 lines suppressed...] 30D323FF088C364C0010BC3F /* PBXTextBookmark */ = { isa = PBXTextBookmark; --- 3818,3821 ---- *************** *** 4724,4737 **** vrLoc = 1742; }; - 30E301F8088D768A003395B7 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 3041B58A06F623640055CB6D /* PlayerList.h */; - name = "PlayerList.h: playerIDsAsString"; - rLen = 0; - rLoc = 3094; - rType = 0; - vrLen = 601; - vrLoc = 2215; - }; 30E66334066DF49000D9A3DD /* icon.icns */ = { uiCtxt = { --- 4833,4836 ---- |
|
From: Geisschaes <gei...@us...> - 2005-09-14 18:05:39
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PlayerListsView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22404/English.lproj/PlayerListsView.nib Modified Files: keyedobjects.nib Log Message: drag and drop works in positions view. but not yet delete key Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerListsView.nib/keyedobjects.nib,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsOUmkUF and /tmp/cvs0WvAzf differ |
|
From: Geisschaes <gei...@us...> - 2005-09-14 18:05:39
|
Update of /cvsroot/macattrick/macattrick In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22404 Modified Files: PositionsController.m Log Message: drag and drop works in positions view. but not yet delete key Index: PositionsController.m =================================================================== RCS file: /cvsroot/macattrick/macattrick/PositionsController.m,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** PositionsController.m 7 Feb 2005 21:15:40 -0000 1.8 --- PositionsController.m 14 Sep 2005 18:05:31 -0000 1.9 *************** *** 41,51 **** --- 41,60 ---- [positionsTable setTarget:self]; [positionsTable setDoubleAction:@selector(doubleClicked)]; + [[Team currentTeam] addObserver: self forKeyPath: @"playerList" options: NSKeyValueObservingOptionNew context:nil]; return self; } + - (NSView*) positionsTableView { return positionsTableView; } + // observing + - (void) observeValueForKeyPath: (NSString*) keyPath ofObject: (id) object change: (NSDictionary*) change context: (void *) context { + if([keyPath isEqualToString: @"playerList"] && positionsTable) { + [positionsTable reloadData]; + } + } + // NSTableDataSource - (int)numberOfRowsInTableView:(NSTableView *)aTableView { *************** *** 139,141 **** --- 148,165 ---- } + // drag and drop + - (BOOL)tableView:(NSTableView *)tv writeRows:(NSArray*)row toPasteboard:(NSPasteboard*)pboard { + [pboard declareTypes:[NSArray arrayWithObject:NSDragPboard] owner:self]; + NSIndexSet *sel = [positionsTable selectedRowIndexes]; + NSMutableArray *playerIDs = [NSMutableArray array]; + NSMutableArray *players = [NSMutableArray array]; + int i; + for(i=0; i<[[[Team currentTeam] playerList] numberOfPlayers]; i++) { + if([sel containsIndex:i]) { + [playerIDs addObject: [NSNumber numberWithInt:[[[team playerList] playerAtIndex:i] playerID]]]; + } + } + [pboard setPropertyList:playerIDs forType:NSDragPboard]; + return YES; + } @end |
|
From: Geisschaes <gei...@us...> - 2005-09-14 17:11:22
|
Update of /cvsroot/macattrick/macattrick/English.lproj/PlayerListsView.nib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11028/English.lproj/PlayerListsView.nib Modified Files: info.nib keyedobjects.nib Log Message: changed the size of the font and the row width Index: info.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerListsView.nib/info.nib,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** info.nib 15 Jul 2005 18:29:32 -0000 1.2 --- info.nib 14 Sep 2005 17:11:11 -0000 1.3 *************** *** 8,12 **** <dict> <key>6</key> ! <string>549 313 182 509 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> --- 8,12 ---- <dict> <key>6</key> ! <string>567 257 182 509 0 0 1280 832 </string> </dict> <key>IBFramework Version</key> Index: keyedobjects.nib =================================================================== RCS file: /cvsroot/macattrick/macattrick/English.lproj/PlayerListsView.nib/keyedobjects.nib,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 Binary files /tmp/cvsQFyu1P and /tmp/cvswTMPRH differ |