├── .DS_Store ├── Classes ├── Controll.h ├── Controll.m ├── RootViewController.h ├── RootViewController.m ├── UIApplicationAppDelegate.h ├── UIApplicationAppDelegate.m ├── WordNetJPN.h └── WordNetJPN.m ├── Info.plist ├── MainWindow.xib ├── RootViewController.xib ├── UIApplication_Prefix.pch ├── UIButton.xcodeproj ├── oomori.mode1v3 ├── oomori.pbxuser ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── satoshi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── satoshi.mode1v3 ├── satoshi.pbxuser └── xcuserdata │ └── satoshi.xcuserdatad │ └── xcschemes │ ├── UIApplication.xcscheme │ └── xcschememanagement.plist ├── main.m └── put "wnjpn.db" file in this dir.rtf /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oomori/WordNetJP_ObjC/3be5ab38303e76329353f75b3ccc12417ae938a0/.DS_Store -------------------------------------------------------------------------------- /Classes/Controll.h: -------------------------------------------------------------------------------- 1 | // 2 | // Controll.h 3 | // UIApplication 4 | // 5 | // Created by 大森 智史 on 08/09/17. 6 | // Copyright 2008 Satoshi Oomori. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "UIApplicationAppDelegate.h" 11 | 12 | @interface Controll : NSObject { 13 | IBOutlet UITextField *theField; 14 | IBOutlet UILabel *theLabel; 15 | IBOutlet UIApplicationAppDelegate *appDelegate; 16 | 17 | } 18 | -(IBAction)sliderAction:(id)sender; 19 | -(IBAction)buttonAction:(id)sender; 20 | @end 21 | -------------------------------------------------------------------------------- /Classes/Controll.m: -------------------------------------------------------------------------------- 1 | // 2 | // Controll.m 3 | // 4 | // Created by Satoshi Oomori on 09/04/01. 5 | // Copyright 2008 Satoshi Oomori. All rights reserved. 6 | 7 | 8 | 9 | 10 | 11 | 12 | #import "Controll.h" 13 | #import "WordNetJPN.h" 14 | 15 | @implementation Controll 16 | 17 | -(IBAction)buttonAction:(id)sender{ 18 | //辞書ファイルから辞書を作る 19 | 20 | 21 | NSString *path = [[NSBundle bundleForClass:[self class]] pathForResource:@"wnjpn" ofType:@"db"]; 22 | 23 | WordNetJPN *wordnet = [[WordNetJPN alloc] initWithPath:path]; 24 | 25 | //語を与えて関連語セットを返す 26 | NSArray *synsets = [wordnet synsetWithLemma:@"人達"]; 27 | for (Synset* synset in synsets) { 28 | NSArray *words = [wordnet wordsOfSynset:synset.synset language:@"jpn"]; 29 | NSLog(@"---------関連グループ-----------------------------------"); 30 | for (Word *element in words) { 31 | 32 | NSLog(@"%@,品詞:%@", element.lemma , element.pos); 33 | } 34 | } 35 | 36 | 37 | //語それぞれに対してリンクを返す。 38 | NSArray *words = [wordnet getWords:@"人達"]; 39 | 40 | NSArray *senseArray; 41 | if (words){ 42 | senseArray = [wordnet getSenses:words]; 43 | 44 | NSUInteger i, count = [senseArray count]; 45 | for (i = 0; i < count; i++) { 46 | NSLog(@"----------------------------------"); 47 | Sense *sense = [senseArray objectAtIndex:i]; 48 | // 49 | NSArray *wordArray = [wordnet getWord:sense.wordid]; 50 | NSUInteger u2, wordCount = [wordArray count]; 51 | for (u2 = 0; u2 < wordCount; u2++) { 52 | Word *word = [wordArray objectAtIndex:u2]; 53 | NSLog(@"「%@」 についての関連語",word.lemma); 54 | } 55 | 56 | //NSLog(@"getSsenses--%@,%d",sense.synset,sense.lexid); 57 | NSArray *synsetArray3 = [wordnet getSynset:sense.synset]; 58 | Word* word3 = (Word *)[synsetArray3 objectAtIndex:0]; 59 | NSLog(@"「%@」の下位語を表示",word3.lemma); 60 | 61 | NSArray *synLinks = [wordnet getSynLinks: sense link:@"hypo"]; 62 | //hype 上位語 63 | //hypo 下位語 64 | //inst インスタンス 65 | NSUInteger u, count2 = [synLinks count]; 66 | for (u = 0; u < count2; u++) { 67 | Synlink *synlink = [synLinks objectAtIndex:u]; 68 | 69 | NSArray *synsetArray1 = [wordnet getSynset:synlink.synset1]; 70 | Word* word1 = (Word *)[synsetArray1 objectAtIndex:0]; 71 | NSArray *synsetArray2 = [wordnet getSynset:synlink.synset2]; 72 | Word* word2 = (Word *)[synsetArray2 objectAtIndex:0]; 73 | NSLog(@"%@ -> %@",word1.lemma,word2.lemma); 74 | [wordnet getSynset:synlink.synset2]; 75 | } 76 | 77 | 78 | } 79 | }else{ 80 | NSLog(@"NG"); 81 | } 82 | 83 | //オブジェクト解放 84 | [wordnet release]; 85 | 86 | } 87 | 88 | 89 | -(IBAction)sliderAction:(id)sender{ 90 | 91 | theLabel.text = [NSString stringWithFormat:@"%f",[(UISlider *)sender value]]; 92 | 93 | 94 | } 95 | 96 | @end 97 | -------------------------------------------------------------------------------- /Classes/RootViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RootViewController.h 3 | // UIApplication 4 | // 5 | // Created by 大森 智史 on 08/09/02. 6 | // Copyright Satoshi Oomori 2008. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RootViewController : UITableViewController { 12 | } 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Classes/RootViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // RootViewController.m 3 | // UIApplication 4 | // 5 | // Created by 大森 智史 on 08/09/02. 6 | // Copyright Satoshi Oomori 2008. All rights reserved. 7 | // 8 | 9 | #import "RootViewController.h" 10 | #import "UIApplicationAppDelegate.h" 11 | 12 | 13 | @implementation RootViewController 14 | 15 | 16 | - (void)viewDidLoad { 17 | // Add the following line if you want the list to be editable 18 | // self.navigationItem.leftBarButtonItem = self.editButtonItem; 19 | } 20 | 21 | 22 | - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { 23 | return 1; 24 | } 25 | 26 | 27 | - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { 28 | return 0; 29 | } 30 | 31 | 32 | - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 33 | 34 | static NSString *MyIdentifier = @"MyIdentifier"; 35 | 36 | UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier]; 37 | if (cell == nil) { 38 | cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:MyIdentifier] autorelease]; 39 | } 40 | 41 | // Set up the cell 42 | return cell; 43 | } 44 | 45 | 46 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { 47 | // Navigation logic 48 | } 49 | 50 | 51 | /* 52 | Override if you support editing the list 53 | - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { 54 | 55 | if (editingStyle == UITableViewCellEditingStyleDelete) { 56 | // Delete the row from the data source 57 | [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES]; 58 | } 59 | if (editingStyle == UITableViewCellEditingStyleInsert) { 60 | // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view 61 | } 62 | } 63 | */ 64 | 65 | 66 | /* 67 | Override if you support conditional editing of the list 68 | - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { 69 | // Return NO if you do not want the specified item to be editable. 70 | return YES; 71 | } 72 | */ 73 | 74 | 75 | /* 76 | Override if you support rearranging the list 77 | - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath { 78 | } 79 | */ 80 | 81 | 82 | /* 83 | Override if you support conditional rearranging of the list 84 | - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath { 85 | // Return NO if you do not want the item to be re-orderable. 86 | return YES; 87 | } 88 | */ 89 | 90 | 91 | - (void)viewWillAppear:(BOOL)animated { 92 | [super viewWillAppear:animated]; 93 | } 94 | 95 | - (void)viewDidAppear:(BOOL)animated { 96 | [super viewDidAppear:animated]; 97 | } 98 | 99 | - (void)viewWillDisappear:(BOOL)animated { 100 | } 101 | 102 | - (void)viewDidDisappear:(BOOL)animated { 103 | } 104 | 105 | 106 | - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { 107 | // Return YES for supported orientations 108 | return (interfaceOrientation == UIInterfaceOrientationPortrait); 109 | } 110 | 111 | 112 | - (void)didReceiveMemoryWarning { 113 | [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview 114 | // Release anything that's not essential, such as cached data 115 | } 116 | 117 | 118 | - (void)dealloc { 119 | [super dealloc]; 120 | } 121 | 122 | 123 | @end 124 | 125 | -------------------------------------------------------------------------------- /Classes/UIApplicationAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIApplicationAppDelegate.h 3 | // UIApplication 4 | // 5 | // Created by 大森 智史 on 08/09/02. 6 | // Copyright Satoshi Oomori 2008. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIApplicationAppDelegate : NSObject { 12 | 13 | IBOutlet UIWindow *window; 14 | IBOutlet UINavigationController *navigationController; 15 | 16 | IBOutlet UIDatePicker *aPicker; 17 | } 18 | 19 | @property (nonatomic, retain) UIWindow *window; 20 | @property (nonatomic, retain) UINavigationController *navigationController; 21 | 22 | @property (nonatomic, retain) UIDatePicker *aPicker; 23 | 24 | @end 25 | 26 | -------------------------------------------------------------------------------- /Classes/UIApplicationAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIApplicationAppDelegate.m 3 | // UIApplication 4 | // 5 | // Created by 大森 智史 on 08/09/02. 6 | // Copyright Satoshi Oomori 2008. All rights reserved. 7 | // 8 | 9 | #import "UIApplicationAppDelegate.h" 10 | #import "RootViewController.h" 11 | 12 | 13 | @implementation UIApplicationAppDelegate 14 | 15 | @synthesize window; 16 | @synthesize navigationController; 17 | @synthesize aPicker; 18 | 19 | 20 | - (id)init { 21 | if (self == [super init]) { 22 | // 23 | } 24 | return self; 25 | } 26 | 27 | 28 | - (void)applicationDidFinishLaunching:(UIApplication *)application { 29 | /* 30 | //日付ピッカーはUIPickerViewのサブクラスではない。 31 | aPicker = [[UIDatePicker alloc] initWithFrame:CGRectMake(0,0,320,80)]; 32 | */ 33 | // [window addSubview:aPicker]; 34 | [window makeKeyAndVisible]; 35 | 36 | 37 | //NSLog(@"%@",[[application keyWindow] description]); 38 | } 39 | 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application { 42 | // Save data if appropriate 43 | } 44 | 45 | 46 | - (void)dealloc { 47 | [navigationController release]; 48 | [window release]; 49 | [super dealloc]; 50 | } 51 | 52 | @end 53 | -------------------------------------------------------------------------------- /Classes/WordNetJPN.h: -------------------------------------------------------------------------------- 1 | // 2 | // WordNetJPN.h 3 | // 4 | // Created by 大森 智史 on 09/03/31. 5 | // Copyright 2009 Satoshi Oomori. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "sqlite3.h" 10 | //********************* Synset ************************* 11 | //関連性 12 | //Synset 1:多 Sense 13 | //Synset 1:多 Synlink 14 | //Synset 1:多 SynsetDef 15 | @interface Synset : NSObject { 16 | NSString *pos; //品詞(名詞=n、動詞=v、形容詞=a、=r) 17 | NSString *synset; //関連ID("06589574-n") 18 | NSString *src; //("eng30") 19 | NSString *name; //名称("publication") 20 | 21 | } 22 | 23 | @property (nonatomic, retain) NSString *synset; 24 | @property (nonatomic, retain) NSString *pos; 25 | @property (nonatomic, retain) NSString *name; 26 | @property (nonatomic, retain) NSString *src; 27 | @end 28 | 29 | 30 | //********************* Sense ************************* 31 | //概念クラス 32 | //Sense 多:1 Word 33 | //Sense 多:1 Synset 34 | @interface Sense : NSObject { 35 | int rank; // 36 | int lexid; // 37 | NSString *synset; // 38 | int freq; // 39 | NSString *src; // 40 | NSString *lang; //言語(日本語=jpn、英語=eng) 41 | int wordid; //語 ID(1から始まる整数) 42 | } 43 | //nonatomic マルチスレッド環境を考慮しない代わりに高速。 44 | //retain retainする。 45 | //asign 参照を持つだけ 46 | @property (nonatomic, assign) int rank; //ランク 47 | @property (nonatomic, assign) int lexid; // 48 | @property (nonatomic, assign) NSString *synset; 49 | @property (nonatomic, assign) int freq; // 50 | @property (nonatomic, assign) NSString *src; 51 | @property (nonatomic, assign) NSString *lang; 52 | @property (nonatomic, assign) int wordid; 53 | @end 54 | 55 | //語クラス 56 | //********************* Word ************************* 57 | @interface Word : NSObject { 58 | int wordid; //語 ID(1から始まる整数) 59 | NSString *lang; //言語(日本語=jpn、英語=eng) 60 | NSString *lemma;//語("理性的"、"アルデヒド") 61 | NSString *pron; // 62 | NSString *pos; //品詞(名詞=n、動詞=v、形容詞=a、=r) 63 | 64 | NSString *gloss; // kaisetu 65 | 66 | } 67 | @property (nonatomic, assign) int wordid; 68 | @property (nonatomic, assign) NSString *lang; 69 | @property (nonatomic, assign) NSString *lemma; 70 | @property (nonatomic, assign) NSString *pron; 71 | @property (nonatomic, assign) NSString *pos; 72 | @property (nonatomic, assign) NSString *gloss; 73 | 74 | @end 75 | 76 | 77 | //********************* Synlink ************************* 78 | @interface Synlink : NSObject { 79 | NSString *synset1; 80 | NSString *synset2; 81 | NSString *link; 82 | NSString *src; 83 | 84 | } 85 | @property (nonatomic, assign) NSString *synset1; 86 | @property (nonatomic, assign) NSString *synset2; 87 | @property (nonatomic, assign) NSString *link; 88 | @property (nonatomic, assign) NSString *src; 89 | @end 90 | 91 | 92 | 93 | 94 | @interface WordNetJPN : NSObject { 95 | NSString *path; 96 | sqlite3 *database; 97 | } 98 | -(NSArray *)getSynset:(NSString *)synset; 99 | -(NSArray *)getWord:(int)wordid; 100 | -(NSArray *)getSense:(NSArray *)words; 101 | -(NSArray *)getSynLinks:(Sense *)sense link:(NSString *)link; 102 | -(NSArray *)getSenses:(NSArray *)words; 103 | -(NSArray *)getWords:(NSString *)lemma; 104 | 105 | //Synsetと言語で、Wordの配列を返します。 106 | -(NSArray *)wordsOfSynset:(NSString *)synset language:(NSString *)lang; 107 | 108 | //語を与えてsynset(同じ意味合いの語のグループ)を得ます。 109 | -(NSArray *)synsetWithLemma:(NSString *)lemma; 110 | @property (nonatomic, retain) NSString *path; 111 | @end 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | -------------------------------------------------------------------------------- /Classes/WordNetJPN.m: -------------------------------------------------------------------------------- 1 | // 2 | // WordNetJPN.m 3 | // 4 | // Created by 大森 智史 on 09/03/31. 5 | // Copyright 2009-2011 Satoshi Oomori. All rights reserved. 6 | // 7 | 8 | // 9 | // Bug Fix 伊藤真央さん 2011/6/28(at //Mao Ito added this code) 10 | 11 | 12 | #import "WordNetJPN.h" 13 | 14 | //Synset 15 | @implementation Synset 16 | @synthesize synset; 17 | @synthesize pos; 18 | @synthesize name; 19 | @synthesize src; 20 | @end 21 | 22 | //Sense 23 | @implementation Sense 24 | @synthesize rank; 25 | @synthesize lexid; 26 | @synthesize synset; 27 | @synthesize freq; 28 | @synthesize src; 29 | @synthesize lang; 30 | @synthesize wordid; 31 | @end 32 | 33 | //Word 34 | @implementation Word 35 | @synthesize wordid; 36 | @synthesize lang; 37 | @synthesize lemma; 38 | @synthesize pron; 39 | @synthesize pos; 40 | @synthesize gloss; 41 | 42 | @end 43 | 44 | //Synlink 45 | @implementation Synlink 46 | @synthesize synset1; 47 | @synthesize synset2; 48 | @synthesize link; 49 | @synthesize src; 50 | @end 51 | 52 | @implementation WordNetJPN 53 | @synthesize path; //辞書のパス 54 | 55 | - (id) initWithPath:(NSString *)aPath 56 | { 57 | self = [super init]; 58 | self.path = aPath; 59 | return self; 60 | } 61 | //語を与えてwordidを得る 62 | -(NSArray *)getWords:(NSString *)lemma{ 63 | 64 | 65 | NSMutableArray *retArry = [NSMutableArray arrayWithCapacity:1]; 66 | 67 | if (sqlite3_open([path UTF8String], &database) == SQLITE_OK) { 68 | const char *sql = [[NSString stringWithFormat:@"select word.wordid,word.lang,word.lemma,word.pos from word where word.lemma='%@'",lemma] UTF8String]; 69 | 70 | //NSString * sqlString = [NSString stringWithFormat:@"select lemma from word join sense on word.wordid =sense.wordid where synset = '%@' and sense.lang = 'jpn'",synset]; 71 | 72 | sqlite3_stmt *statement; 73 | 74 | if (sqlite3_prepare_v2(database, sql, -1, &statement, NULL) == SQLITE_OK) { 75 | 76 | while (sqlite3_step(statement) == SQLITE_ROW) { 77 | Word *word = [[Word alloc] init]; 78 | word.wordid = sqlite3_column_int(statement, 0); 79 | word.lang = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 1)]; 80 | word.lemma =[NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 2)]; 81 | //word.pron = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 3)]; 82 | word.pos = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 3)]; 83 | [retArry addObject:word]; 84 | [word release]; 85 | } 86 | }else{ 87 | //データベースが開けなかったとき 88 | sqlite3_close(database); 89 | NSLog(@"error message '%s'.", sqlite3_errmsg(database)); 90 | } 91 | 92 | sqlite3_finalize(statement); 93 | } else { 94 | //データベースが開けなかったとき 95 | sqlite3_close(database); 96 | NSAssert1(0, @"error message '%s'.", sqlite3_errmsg(database)); 97 | 98 | } 99 | sqlite3_close(database); //Mao Ito added this code 100 | return [NSArray arrayWithArray:retArry]; 101 | } 102 | 103 | -(NSArray *)getWord:(int)wordid{ 104 | 105 | 106 | NSMutableArray *retArry = [NSMutableArray arrayWithCapacity:1]; 107 | 108 | if (sqlite3_open([path UTF8String], &database) == SQLITE_OK) { 109 | NSString *aqlString = [NSString stringWithFormat:@"select * from word where wordid=%d",wordid]; 110 | const char *sql = [aqlString UTF8String]; 111 | sqlite3_stmt *statement; 112 | 113 | if (sqlite3_prepare_v2(database, sql, -1, &statement, NULL) == SQLITE_OK) { 114 | 115 | while (sqlite3_step(statement) == SQLITE_ROW) { 116 | Word *word = [[Word alloc] init]; 117 | [word setWordid : wordid]; 118 | word.lang = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 1)]; 119 | word.lemma = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 2)]; 120 | //word.pron = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 3)]; 121 | word.pos = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 4)]; 122 | [retArry addObject:word]; 123 | [word release]; 124 | } 125 | }else{ 126 | //データベースが開けなかったとき 127 | sqlite3_close(database); 128 | NSLog(@"message '%s'.", sqlite3_errmsg(database)); 129 | } 130 | 131 | //} 132 | 133 | sqlite3_finalize(statement); 134 | 135 | } else { 136 | //データベースが開けなかったとき 137 | sqlite3_close(database); 138 | NSAssert1(0, @"Failed to open database with message '%s'.", sqlite3_errmsg(database)); 139 | 140 | } 141 | sqlite3_close(database); 142 | return [NSArray arrayWithArray:retArry]; 143 | } 144 | 145 | //wordidを与えてsenseを得る 146 | -(NSArray *)getSenses:(NSArray *)words{ 147 | 148 | 149 | NSMutableArray *retArry = [NSMutableArray arrayWithCapacity:1]; 150 | 151 | 152 | if (sqlite3_open([path UTF8String], &database) == SQLITE_OK) { 153 | 154 | NSUInteger i, count = [words count]; 155 | for (i = 0; i < count; i++) { 156 | //NSNumber * obj = [words objectAtIndex:i]; 157 | Word *word = [words objectAtIndex:i]; 158 | NSString *sqlString = [NSString stringWithFormat:@"select sense.synset,sense.lang,sense.wordid from sense where wordid=%d and sense.lang='jpn'",word.wordid]; 159 | const char *sql = [sqlString UTF8String]; 160 | sqlite3_stmt *statement; 161 | 162 | if (sqlite3_prepare_v2(database, sql, -1, &statement, NULL) == SQLITE_OK) { 163 | 164 | while (sqlite3_step(statement) == SQLITE_ROW) { 165 | //sense = sqlite3_column_value(statement, 0); 166 | Sense *sense = [[Sense alloc] init]; 167 | sense.synset = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 0)]; 168 | //sense.lexid = sqlite3_column_int(statement, 1);// 169 | sense.lang = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 1)]; 170 | //sense.rank = sqlite3_column_int(statement, 3);//freqかも4 171 | sense.wordid = sqlite3_column_int(statement, 2); 172 | 173 | //NSLog(@"getSense--%d , wordid = %d",sense.wordid,word.wordid); 174 | 175 | 176 | [retArry addObject:sense ]; 177 | [sense release]; 178 | 179 | } 180 | }else{ 181 | //データベースが開けなかったとき 182 | sqlite3_close(database); 183 | NSLog(@"message '%s'.", sqlite3_errmsg(database)); 184 | } 185 | 186 | sqlite3_finalize(statement); 187 | } 188 | 189 | } else { 190 | //データベースが開けなかったとき 191 | sqlite3_close(database); 192 | NSAssert1(0, @"Failed to open database with message '%s'.", sqlite3_errmsg(database)); 193 | 194 | } 195 | sqlite3_close(database); //Mao Ito added this code 196 | //sqlite3_close(database); 197 | return [NSArray arrayWithArray:retArry]; 198 | } 199 | 200 | //wordidを与えてsenseを得る 201 | -(NSArray *)getSense:(NSArray *)words{ 202 | 203 | 204 | NSMutableArray *retArry = [NSMutableArray arrayWithCapacity:1]; 205 | 206 | 207 | if (sqlite3_open([path UTF8String], &database) == SQLITE_OK) { 208 | 209 | NSUInteger i, count = [words count]; 210 | for (i = 0; i < count; i++) { 211 | Word *word = [words objectAtIndex:i]; 212 | NSString *aqlString = [NSString stringWithFormat:@"select * from sense where wordid=%d",word.wordid]; 213 | const char *sql = [aqlString UTF8String]; 214 | sqlite3_stmt *statement; 215 | 216 | if (sqlite3_prepare_v2(database, sql, -1, &statement, NULL) == SQLITE_OK) { 217 | 218 | while (sqlite3_step(statement) == SQLITE_ROW) { 219 | //sense = sqlite3_column_value(statement, 0); 220 | Sense *sense = [[Sense alloc] init]; 221 | sense.synset = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 0)]; 222 | //sense.wordid = [NSNumber numberWithInt: sqlite3_column_int(statement, 1) ]; 223 | NSString *str = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 1)]; 224 | [retArry addObject:sense.synset]; 225 | NSLog(@"getSense--%@",str); 226 | } 227 | }else{ 228 | //データベースが開けなかったとき 229 | sqlite3_close(database); 230 | NSLog(@"message '%s'.", sqlite3_errmsg(database)); 231 | } 232 | 233 | sqlite3_finalize(statement); 234 | } 235 | 236 | 237 | } else { 238 | //データベースが開けなかったとき 239 | sqlite3_close(database); 240 | NSAssert1(0, @"Failed to open database with message '%s'.", sqlite3_errmsg(database)); 241 | 242 | } 243 | sqlite3_close(database); //Mao Ito added this code 244 | return [NSArray arrayWithArray:retArry]; 245 | } 246 | 247 | 248 | -(NSArray *)getSynset:(NSString *)synset{ 249 | NSMutableArray *retArry = [NSMutableArray arrayWithCapacity:1]; 250 | 251 | if (sqlite3_open([path UTF8String], &database) == SQLITE_OK) { 252 | NSString * sqlString = [NSString stringWithFormat:@"select * from synset where synset='%@'",synset]; 253 | 254 | const char *sql = [sqlString UTF8String]; 255 | sqlite3_stmt *statement; 256 | 257 | if (sqlite3_prepare_v2(database, sql, -1, &statement, NULL) == SQLITE_OK) { 258 | 259 | while (sqlite3_step(statement) == SQLITE_ROW) { 260 | Word *word = [[Word alloc] init]; 261 | word.wordid = sqlite3_column_int(statement, 0); 262 | word.lang = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 1)]; 263 | word.lemma = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 2)]; 264 | //word.pron = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 3)]; 265 | //word.pos = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 4)]; 266 | [retArry addObject:word]; 267 | [word release]; 268 | } 269 | }else{ 270 | //データベースが開けなかったとき 271 | sqlite3_close(database); 272 | NSLog(@"message '%s'.", sqlite3_errmsg(database)); 273 | } 274 | 275 | //} 276 | 277 | sqlite3_finalize(statement); 278 | 279 | } else { 280 | //データベースが開けなかったとき 281 | sqlite3_close(database); 282 | NSAssert1(0, @"Failed to open database with message '%s'.", sqlite3_errmsg(database)); 283 | 284 | } 285 | sqlite3_close(database); //Mao Ito added this code 286 | return [NSArray arrayWithArray:retArry]; 287 | } 288 | 289 | 290 | 291 | -(NSArray *)getSynLinks:(Sense *)sense link:(NSString *)link{ 292 | 293 | 294 | NSMutableArray *synLinks = [NSMutableArray arrayWithCapacity:1]; 295 | 296 | if (sqlite3_open([path UTF8String], &database) == SQLITE_OK) { 297 | NSString *sqlString = [NSString stringWithFormat:@"SELECT * FROM synlink where synset1 ='%@' and link='%@'",sense.synset,link ]; 298 | const char *sql = [sqlString UTF8String]; 299 | sqlite3_stmt *statement; 300 | 301 | if (sqlite3_prepare_v2(database, sql, -1, &statement, NULL) == SQLITE_OK) { 302 | 303 | while (sqlite3_step(statement) == SQLITE_ROW) { 304 | Synlink *synlink = [[Synlink alloc] init]; 305 | synlink.synset1 = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 0)]; 306 | synlink.synset2 = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 1)]; 307 | synlink.link = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 2)]; 308 | synlink.src = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 3)]; 309 | 310 | [synLinks addObject:synlink]; 311 | [synlink release]; 312 | } 313 | }else{ 314 | //データベースが開けなかったとき 315 | 316 | sqlite3_close(database); 317 | NSLog(@"message '%s'.", sqlite3_errmsg(database)); 318 | } 319 | 320 | 321 | sqlite3_finalize(statement); 322 | } 323 | sqlite3_close(database); //Mao Ito added this code 324 | return [NSArray arrayWithArray:synLinks]; 325 | } 326 | 327 | //synsetに含まれるWordの配列を返します。 328 | -(NSArray *)wordsOfSynset:(NSString *)synset language:(NSString *)lang{ 329 | 330 | 331 | NSMutableArray *retArry = [NSMutableArray arrayWithCapacity:1]; 332 | 333 | if (sqlite3_open([path UTF8String], &database) == SQLITE_OK) { 334 | NSString * sqlString = [NSString stringWithFormat:@"select word.wordid,word.lang,word.lemma,word.pos from word join sense on word.wordid =sense.wordid where synset = '%@' and sense.lang = '%@'",synset,lang]; 335 | 336 | const char *sql = [sqlString UTF8String]; 337 | sqlite3_stmt *statement; 338 | 339 | if (sqlite3_prepare_v2(database, sql, -1, &statement, NULL) == SQLITE_OK) { 340 | 341 | while (sqlite3_step(statement) == SQLITE_ROW) { 342 | Word *word = [[Word alloc] init]; 343 | word.wordid = sqlite3_column_int(statement, 0); 344 | word.lang = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 1)]; 345 | word.lemma = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 2)]; 346 | //word.pron = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 3)]; 347 | word.pos = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 3)]; 348 | [retArry addObject:word]; 349 | [word release]; 350 | } 351 | }else{ 352 | //データベースが開けなかったとき 353 | sqlite3_close(database); 354 | NSLog(@"message '%s'.", sqlite3_errmsg(database)); 355 | } 356 | 357 | //} 358 | sqlite3_finalize(statement); 359 | 360 | 361 | } else { 362 | //データベースが開けなかったとき 363 | sqlite3_close(database); 364 | NSAssert1(0, @"Failed to open database with message '%s'.", sqlite3_errmsg(database)); 365 | 366 | } 367 | sqlite3_close(database); //Mao Ito added this code 368 | return [NSArray arrayWithArray:retArry]; 369 | } 370 | 371 | 372 | //語を与えてsynset(同じ意味合いの語のグループ)を得る 373 | //When "lemma" is a proper noun, return NULL 374 | -(NSArray *)synsetWithLemma:(NSString *)lemma{ 375 | 376 | NSMutableArray *retArry = [NSMutableArray arrayWithCapacity:1]; 377 | 378 | if (sqlite3_open([path UTF8String], &database) == SQLITE_OK) { 379 | const char *sql = [[NSString stringWithFormat:@"select synset,src,pos from word join sense on word.wordid =sense.wordid where word.lemma='%@'",lemma] UTF8String]; 380 | sqlite3_stmt *statement; 381 | 382 | if (sqlite3_prepare_v2(database, sql, -1, &statement, NULL) == SQLITE_OK) { 383 | 384 | while (sqlite3_step(statement) == SQLITE_ROW) { 385 | 386 | Synset *synset = [[Synset alloc] init]; 387 | synset.synset = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 0)]; 388 | synset.pos = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 2)]; 389 | //synset.name = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 3)]; 390 | synset.src = [NSString stringWithUTF8String:(char *)sqlite3_column_text(statement, 1)]; 391 | [retArry addObject:synset]; 392 | [synset release]; 393 | //NSLog(synset.src); 394 | } 395 | }else{ 396 | //データベースが開けなかったとき 397 | sqlite3_close(database); 398 | return NULL; 399 | //NSAssert1(0, @"error message '%s'.", sqlite3_errmsg(database)); 400 | } 401 | sqlite3_finalize(statement); 402 | } else { 403 | //データベースが開けなかったとき 404 | sqlite3_close(database); 405 | NSAssert1(0, @"error message '%s'.", sqlite3_errmsg(database)); 406 | 407 | } 408 | sqlite3_close(database); //Mao Ito added this code 409 | return [NSArray arrayWithArray:retArry]; 410 | } 411 | @end 412 | -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIconFile 12 | 13 | CFBundleIdentifier 14 | com.yourcompany.${PRODUCT_NAME:identifier} 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | ${PRODUCT_NAME} 19 | CFBundlePackageType 20 | APPL 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | NSMainNibFile 28 | MainWindow 29 | 30 | 31 | -------------------------------------------------------------------------------- /MainWindow.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 512 5 | 9G55 6 | 677 7 | 949.43 8 | 353.00 9 | 10 | YES 11 | 12 | 13 | 14 | YES 15 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 16 | 17 | 18 | YES 19 | 20 | YES 21 | 22 | 23 | YES 24 | 25 | 26 | 27 | YES 28 | 29 | IBFilesOwner 30 | 31 | 32 | IBFirstResponder 33 | 34 | 35 | 36 | 37 | 1316 38 | 39 | YES 40 | 41 | 42 | 1316 43 | {{132, 125}, {65, 31}} 44 | 45 | NO 46 | NO 47 | 0 48 | 0 49 | 50 | Helvetica-Bold 51 | 1.500000e+01 52 | 16 53 | 54 | 1 55 | button 56 | button 57 | button 58 | button 59 | 60 | 1 61 | MSAxIDEAA 62 | 63 | 64 | 1 65 | MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA 66 | 67 | 68 | 69 | 70 | 1316 71 | {{25, 61}, {280, 31}} 72 | 73 | NO 74 | NO 75 | 0 76 | 77 | 3 78 | 79 | 3 80 | MAA 81 | 82 | 2 83 | 84 | 85 | 86 | HiraKakuPro-W3 87 | 1.200000e+01 88 | 16 89 | 90 | YES 91 | YES 92 | 1.700000e+01 93 | 94 | 95 | 96 | 97 | {320, 480} 98 | 99 | 100 | NO 101 | NO 102 | 103 | 104 | 105 | 106 | 107 | 108 | 256 109 | {0, 0} 110 | NO 111 | YES 112 | YES 113 | 114 | 115 | YES 116 | 117 | 118 | 119 | RootViewController 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | YES 129 | 130 | 131 | delegate 132 | 133 | 134 | 135 | 4 136 | 137 | 138 | 139 | window 140 | 141 | 142 | 143 | 5 144 | 145 | 146 | 147 | navigationController 148 | 149 | 150 | 151 | 15 152 | 153 | 154 | 155 | buttonAction: 156 | 157 | 158 | 7 159 | 160 | 29 161 | 162 | 163 | 164 | appDelegate 165 | 166 | 167 | 168 | 31 169 | 170 | 171 | 172 | theField 173 | 174 | 175 | 176 | 33 177 | 178 | 179 | 180 | 181 | YES 182 | 183 | 0 184 | 185 | YES 186 | 187 | 188 | 189 | 190 | 191 | 2 192 | 193 | 194 | YES 195 | 196 | 197 | 198 | 199 | 200 | 201 | -1 202 | 203 | 204 | RmlsZSdzIE93bmVyA 205 | 206 | 207 | 3 208 | 209 | 210 | 211 | 212 | -2 213 | 214 | 215 | 216 | 217 | 9 218 | 219 | 220 | YES 221 | 222 | 223 | 224 | 225 | 226 | 227 | 11 228 | 229 | 230 | 231 | 232 | 13 233 | 234 | 235 | YES 236 | 237 | 238 | 239 | 240 | 241 | 14 242 | 243 | 244 | 245 | 246 | 21 247 | 248 | 249 | 250 | 251 | 28 252 | 253 | 254 | 255 | 256 | 32 257 | 258 | 259 | 260 | 261 | 262 | 263 | YES 264 | 265 | YES 266 | -1.CustomClassName 267 | -2.CustomClassName 268 | 11.IBPluginDependency 269 | 13.CustomClassName 270 | 13.IBPluginDependency 271 | 2.IBAttributePlaceholdersKey 272 | 2.IBEditorWindowLastContentRect 273 | 2.IBPluginDependency 274 | 21.CustomClassName 275 | 21.IBPluginDependency 276 | 28.IBPluginDependency 277 | 3.CustomClassName 278 | 3.IBPluginDependency 279 | 32.IBPluginDependency 280 | 9.IBEditorWindowLastContentRect 281 | 9.IBPluginDependency 282 | 283 | 284 | YES 285 | UIApplication 286 | UIResponder 287 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 288 | RootViewController 289 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 290 | 291 | YES 292 | 293 | YES 294 | 295 | 296 | YES 297 | 298 | 299 | {{565, 276}, {320, 480}} 300 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 301 | Controll 302 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 303 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 304 | UIApplicationAppDelegate 305 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 306 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 307 | {{547, 276}, {320, 480}} 308 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 309 | 310 | 311 | 312 | YES 313 | 314 | YES 315 | 316 | 317 | YES 318 | 319 | 320 | 321 | 322 | YES 323 | 324 | YES 325 | 326 | 327 | YES 328 | 329 | 330 | 331 | 33 332 | 333 | 334 | 335 | YES 336 | 337 | Controll 338 | NSObject 339 | 340 | YES 341 | 342 | YES 343 | buttonAction: 344 | sliderAction: 345 | 346 | 347 | YES 348 | id 349 | id 350 | 351 | 352 | 353 | YES 354 | 355 | YES 356 | appDelegate 357 | theField 358 | theLabel 359 | 360 | 361 | YES 362 | UIApplicationAppDelegate 363 | UITextField 364 | UILabel 365 | 366 | 367 | 368 | IBProjectSource 369 | Classes/Controll.h 370 | 371 | 372 | 373 | RootViewController 374 | UITableViewController 375 | 376 | IBProjectSource 377 | Classes/RootViewController.h 378 | 379 | 380 | 381 | UIApplicationAppDelegate 382 | NSObject 383 | 384 | YES 385 | 386 | YES 387 | aPicker 388 | navigationController 389 | window 390 | 391 | 392 | YES 393 | UIDatePicker 394 | UINavigationController 395 | UIWindow 396 | 397 | 398 | 399 | IBProjectSource 400 | Classes/UIApplicationAppDelegate.h 401 | 402 | 403 | 404 | 405 | 0 406 | UIButton.xcodeproj 407 | 3 408 | 409 | 410 | -------------------------------------------------------------------------------- /RootViewController.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 512 5 | 10J4138 6 | 1306 7 | 1038.35 8 | 461.00 9 | 10 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 11 | 301 12 | 13 | 14 | YES 15 | IBProxyObject 16 | IBUITableView 17 | 18 | 19 | YES 20 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 21 | 22 | 23 | YES 24 | 25 | YES 26 | 27 | 28 | 29 | 30 | YES 31 | 32 | IBFilesOwner 33 | IBCocoaTouchFramework 34 | 35 | 36 | IBFirstResponder 37 | IBCocoaTouchFramework 38 | 39 | 40 | 41 | 292 42 | {320, 460} 43 | 44 | 45 | 46 | 47 | 3 48 | MQA 49 | 50 | NO 51 | YES 52 | NO 53 | IBCocoaTouchFramework 54 | NO 55 | NO 56 | 1 57 | 0 58 | YES 59 | 44 60 | 27 61 | 27 62 | 63 | 64 | 65 | 66 | YES 67 | 68 | 69 | view 70 | 71 | 72 | 73 | 5 74 | 75 | 76 | 77 | dataSource 78 | 79 | 80 | 81 | 6 82 | 83 | 84 | 85 | delegate 86 | 87 | 88 | 89 | 7 90 | 91 | 92 | 93 | tableView 94 | 95 | 96 | 97 | 8 98 | 99 | 100 | 101 | 102 | YES 103 | 104 | 0 105 | 106 | 107 | 108 | 109 | 110 | -1 111 | 112 | 113 | File's Owner 114 | 115 | 116 | -2 117 | 118 | 119 | 120 | 121 | 3 122 | 123 | 124 | 125 | 126 | 127 | 128 | YES 129 | 130 | YES 131 | -1.CustomClassName 132 | -2.CustomClassName 133 | 3.IBEditorWindowLastContentRect 134 | 3.IBPluginDependency 135 | 136 | 137 | YES 138 | RootViewController 139 | UIResponder 140 | {{555, 361}, {320, 460}} 141 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 142 | 143 | 144 | 145 | YES 146 | 147 | 148 | 149 | 150 | 151 | YES 152 | 153 | 154 | 155 | 156 | 8 157 | 158 | 159 | 160 | YES 161 | 162 | RootViewController 163 | UITableViewController 164 | 165 | IBProjectSource 166 | ./Classes/RootViewController.h 167 | 168 | 169 | 170 | 171 | 0 172 | IBCocoaTouchFramework 173 | 174 | com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS 175 | 176 | 177 | 178 | com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 179 | 180 | 181 | YES 182 | 3 183 | 301 184 | 185 | 186 | -------------------------------------------------------------------------------- /UIApplication_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'UIApplication' target in the 'UIApplication' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /UIButton.xcodeproj/oomori.mode1v3: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ActivePerspectiveName 6 | Project 7 | AllowedModules 8 | 9 | 10 | BundleLoadPath 11 | 12 | MaxInstances 13 | n 14 | Module 15 | PBXSmartGroupTreeModule 16 | Name 17 | Groups and Files Outline View 18 | 19 | 20 | BundleLoadPath 21 | 22 | MaxInstances 23 | n 24 | Module 25 | PBXNavigatorGroup 26 | Name 27 | Editor 28 | 29 | 30 | BundleLoadPath 31 | 32 | MaxInstances 33 | n 34 | Module 35 | XCTaskListModule 36 | Name 37 | Task List 38 | 39 | 40 | BundleLoadPath 41 | 42 | MaxInstances 43 | n 44 | Module 45 | XCDetailModule 46 | Name 47 | File and Smart Group Detail Viewer 48 | 49 | 50 | BundleLoadPath 51 | 52 | MaxInstances 53 | 1 54 | Module 55 | PBXBuildResultsModule 56 | Name 57 | Detailed Build Results Viewer 58 | 59 | 60 | BundleLoadPath 61 | 62 | MaxInstances 63 | 1 64 | Module 65 | PBXProjectFindModule 66 | Name 67 | Project Batch Find Tool 68 | 69 | 70 | BundleLoadPath 71 | 72 | MaxInstances 73 | n 74 | Module 75 | XCProjectFormatConflictsModule 76 | Name 77 | Project Format Conflicts List 78 | 79 | 80 | BundleLoadPath 81 | 82 | MaxInstances 83 | n 84 | Module 85 | PBXBookmarksModule 86 | Name 87 | Bookmarks Tool 88 | 89 | 90 | BundleLoadPath 91 | 92 | MaxInstances 93 | n 94 | Module 95 | PBXClassBrowserModule 96 | Name 97 | Class Browser 98 | 99 | 100 | BundleLoadPath 101 | 102 | MaxInstances 103 | n 104 | Module 105 | PBXCVSModule 106 | Name 107 | Source Code Control Tool 108 | 109 | 110 | BundleLoadPath 111 | 112 | MaxInstances 113 | n 114 | Module 115 | PBXDebugBreakpointsModule 116 | Name 117 | Debug Breakpoints Tool 118 | 119 | 120 | BundleLoadPath 121 | 122 | MaxInstances 123 | n 124 | Module 125 | XCDockableInspector 126 | Name 127 | Inspector 128 | 129 | 130 | BundleLoadPath 131 | 132 | MaxInstances 133 | n 134 | Module 135 | PBXOpenQuicklyModule 136 | Name 137 | Open Quickly Tool 138 | 139 | 140 | BundleLoadPath 141 | 142 | MaxInstances 143 | 1 144 | Module 145 | PBXDebugSessionModule 146 | Name 147 | Debugger 148 | 149 | 150 | BundleLoadPath 151 | 152 | MaxInstances 153 | 1 154 | Module 155 | PBXDebugCLIModule 156 | Name 157 | Debug Console 158 | 159 | 160 | BundleLoadPath 161 | 162 | MaxInstances 163 | n 164 | Module 165 | XCSnapshotModule 166 | Name 167 | Snapshots Tool 168 | 169 | 170 | BundlePath 171 | /Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources 172 | Description 173 | DefaultDescriptionKey 174 | DockingSystemVisible 175 | 176 | Extension 177 | mode1v3 178 | FavBarConfig 179 | 180 | PBXProjectModuleGUID 181 | F9BC74E90E6D57BC0007C297 182 | XCBarModuleItemNames 183 | 184 | XCBarModuleItems 185 | 186 | 187 | FirstTimeWindowDisplayed 188 | 189 | Identifier 190 | com.apple.perspectives.project.mode1v3 191 | MajorVersion 192 | 33 193 | MinorVersion 194 | 0 195 | Name 196 | Default 197 | Notifications 198 | 199 | OpenEditors 200 | 201 | PerspectiveWidths 202 | 203 | -1 204 | -1 205 | 206 | Perspectives 207 | 208 | 209 | ChosenToolbarItems 210 | 211 | active-target-popup 212 | active-buildstyle-popup 213 | NSToolbarFlexibleSpaceItem 214 | clean 215 | build-and-goOrGo 216 | com.apple.ide.PBXToolbarStopButton 217 | get-info 218 | toggle-editor 219 | NSToolbarFlexibleSpaceItem 220 | com.apple.pbx.toolbar.searchfield 221 | 222 | ControllerClassBaseName 223 | 224 | IconName 225 | WindowOfProjectWithEditor 226 | Identifier 227 | perspective.project 228 | IsVertical 229 | 230 | Layout 231 | 232 | 233 | BecomeActive 234 | 235 | ContentConfiguration 236 | 237 | PBXBottomSmartGroupGIDs 238 | 239 | 1C37FBAC04509CD000000102 240 | 1C37FAAC04509CD000000102 241 | 1C08E77C0454961000C914BD 242 | 1C37FABC05509CD000000102 243 | 1C37FABC05539CD112110102 244 | E2644B35053B69B200211256 245 | 1C37FABC04509CD000100104 246 | 1CC0EA4004350EF90044410B 247 | 1CC0EA4004350EF90041110B 248 | 249 | PBXProjectModuleGUID 250 | 1CE0B1FE06471DED0097A5F4 251 | PBXProjectModuleLabel 252 | Files 253 | PBXProjectStructureProvided 254 | yes 255 | PBXSmartGroupTreeModuleColumnData 256 | 257 | PBXSmartGroupTreeModuleColumnWidthsKey 258 | 259 | 186 260 | 261 | PBXSmartGroupTreeModuleColumnsKey_v4 262 | 263 | MainColumn 264 | 265 | 266 | PBXSmartGroupTreeModuleOutlineStateKey_v7 267 | 268 | PBXSmartGroupTreeModuleOutlineStateExpansionKey 269 | 270 | 29B97314FDCFA39411CA2CEA 271 | 080E96DDFE201D6D7F000001 272 | 29B97315FDCFA39411CA2CEA 273 | 29B97317FDCFA39411CA2CEA 274 | 29B97323FDCFA39411CA2CEA 275 | 1C37FBAC04509CD000000102 276 | 1C37FAAC04509CD000000102 277 | 1C37FABC05509CD000000102 278 | 279 | PBXSmartGroupTreeModuleOutlineStateSelectionKey 280 | 281 | 282 | 26 283 | 25 284 | 285 | 286 | PBXSmartGroupTreeModuleOutlineStateVisibleRectKey 287 | {{0, 0}, {186, 581}} 288 | 289 | PBXTopSmartGroupGIDs 290 | 291 | XCIncludePerspectivesSwitch 292 | 293 | XCSharingToken 294 | com.apple.Xcode.GFSharingToken 295 | 296 | GeometryConfiguration 297 | 298 | Frame 299 | {{0, 0}, {203, 599}} 300 | GroupTreeTableConfiguration 301 | 302 | MainColumn 303 | 186 304 | 305 | RubberWindowFrame 306 | 39 138 1225 640 0 0 1280 778 307 | 308 | Module 309 | PBXSmartGroupTreeModule 310 | Proportion 311 | 203pt 312 | 313 | 314 | Dock 315 | 316 | 317 | ContentConfiguration 318 | 319 | PBXProjectModuleGUID 320 | 1CE0B20306471E060097A5F4 321 | PBXProjectModuleLabel 322 | WordNetJPN.m 323 | PBXSplitModuleInNavigatorKey 324 | 325 | Split0 326 | 327 | PBXProjectModuleGUID 328 | 1CE0B20406471E060097A5F4 329 | PBXProjectModuleLabel 330 | WordNetJPN.m 331 | _historyCapacity 332 | 0 333 | bookmark 334 | F9E3CC3811FA56DA00148A8C 335 | history 336 | 337 | F92775560E7CD8BF00E76D23 338 | F92775570E7CD8BF00E76D23 339 | F987559C0EEA45E9007566BD 340 | F9079B770F81032800E4C5E8 341 | F95508AF0F823AA300D56733 342 | F93CE50A0F8253F300C41ECE 343 | F93CE50B0F8253F300C41ECE 344 | F987DF780F84DA8F00396921 345 | F973DA2B0F9062E9006CF71E 346 | F973DA2C0F9062E9006CF71E 347 | F973DA2D0F9062E9006CF71E 348 | F90411AB0FAB2F0900BA8C5B 349 | 350 | prevStack 351 | 352 | F9BC75040E6D59D50007C297 353 | F9BC75050E6D59D50007C297 354 | F97EBEBF0E7CADB50045446D 355 | F97EBED10E7CAE400045446D 356 | F92775630E7CD8BF00E76D23 357 | F92775640E7CD8BF00E76D23 358 | F91C8EA10E812E8E00863463 359 | F958397D0E8862B000CA63D9 360 | F987559E0EEA45E9007566BD 361 | F95508E40F823AA300D56733 362 | F9F7952D0F864DF5008B13E0 363 | F9047D8E0F88DA7900010F22 364 | 365 | 366 | SplitCount 367 | 1 368 | 369 | StatusBarVisibility 370 | 371 | 372 | GeometryConfiguration 373 | 374 | Frame 375 | {{0, 0}, {1017, 456}} 376 | RubberWindowFrame 377 | 39 138 1225 640 0 0 1280 778 378 | 379 | Module 380 | PBXNavigatorGroup 381 | Proportion 382 | 456pt 383 | 384 | 385 | ContentConfiguration 386 | 387 | PBXProjectModuleGUID 388 | 1CE0B20506471E060097A5F4 389 | PBXProjectModuleLabel 390 | 詳細 391 | 392 | GeometryConfiguration 393 | 394 | Frame 395 | {{0, 461}, {1017, 138}} 396 | RubberWindowFrame 397 | 39 138 1225 640 0 0 1280 778 398 | 399 | Module 400 | XCDetailModule 401 | Proportion 402 | 138pt 403 | 404 | 405 | Proportion 406 | 1017pt 407 | 408 | 409 | Name 410 | Project 411 | ServiceClasses 412 | 413 | XCModuleDock 414 | PBXSmartGroupTreeModule 415 | XCModuleDock 416 | PBXNavigatorGroup 417 | XCDetailModule 418 | 419 | TableOfContents 420 | 421 | F9E3CC3911FA56DA00148A8C 422 | 1CE0B1FE06471DED0097A5F4 423 | F9E3CC3A11FA56DA00148A8C 424 | 1CE0B20306471E060097A5F4 425 | 1CE0B20506471E060097A5F4 426 | 427 | ToolbarConfiguration 428 | xcode.toolbar.config.defaultV3 429 | 430 | 431 | ControllerClassBaseName 432 | 433 | IconName 434 | WindowOfProject 435 | Identifier 436 | perspective.morph 437 | IsVertical 438 | 0 439 | Layout 440 | 441 | 442 | BecomeActive 443 | 1 444 | ContentConfiguration 445 | 446 | PBXBottomSmartGroupGIDs 447 | 448 | 1C37FBAC04509CD000000102 449 | 1C37FAAC04509CD000000102 450 | 1C08E77C0454961000C914BD 451 | 1C37FABC05509CD000000102 452 | 1C37FABC05539CD112110102 453 | E2644B35053B69B200211256 454 | 1C37FABC04509CD000100104 455 | 1CC0EA4004350EF90044410B 456 | 1CC0EA4004350EF90041110B 457 | 458 | PBXProjectModuleGUID 459 | 11E0B1FE06471DED0097A5F4 460 | PBXProjectModuleLabel 461 | Files 462 | PBXProjectStructureProvided 463 | yes 464 | PBXSmartGroupTreeModuleColumnData 465 | 466 | PBXSmartGroupTreeModuleColumnWidthsKey 467 | 468 | 186 469 | 470 | PBXSmartGroupTreeModuleColumnsKey_v4 471 | 472 | MainColumn 473 | 474 | 475 | PBXSmartGroupTreeModuleOutlineStateKey_v7 476 | 477 | PBXSmartGroupTreeModuleOutlineStateExpansionKey 478 | 479 | 29B97314FDCFA39411CA2CEA 480 | 1C37FABC05509CD000000102 481 | 482 | PBXSmartGroupTreeModuleOutlineStateSelectionKey 483 | 484 | 485 | 0 486 | 487 | 488 | PBXSmartGroupTreeModuleOutlineStateVisibleRectKey 489 | {{0, 0}, {186, 337}} 490 | 491 | PBXTopSmartGroupGIDs 492 | 493 | XCIncludePerspectivesSwitch 494 | 1 495 | XCSharingToken 496 | com.apple.Xcode.GFSharingToken 497 | 498 | GeometryConfiguration 499 | 500 | Frame 501 | {{0, 0}, {203, 355}} 502 | GroupTreeTableConfiguration 503 | 504 | MainColumn 505 | 186 506 | 507 | RubberWindowFrame 508 | 373 269 690 397 0 0 1440 878 509 | 510 | Module 511 | PBXSmartGroupTreeModule 512 | Proportion 513 | 100% 514 | 515 | 516 | Name 517 | Morph 518 | PreferredWidth 519 | 300 520 | ServiceClasses 521 | 522 | XCModuleDock 523 | PBXSmartGroupTreeModule 524 | 525 | TableOfContents 526 | 527 | 11E0B1FE06471DED0097A5F4 528 | 529 | ToolbarConfiguration 530 | xcode.toolbar.config.default.shortV3 531 | 532 | 533 | PerspectivesBarVisible 534 | 535 | ShelfIsVisible 536 | 537 | SourceDescription 538 | file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecificationMode1.xcperspec' 539 | StatusbarIsVisible 540 | 541 | TimeStamp 542 | 0.0 543 | ToolbarDisplayMode 544 | 1 545 | ToolbarIsVisible 546 | 547 | ToolbarSizeMode 548 | 1 549 | Type 550 | Perspectives 551 | UpdateMessage 552 | The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'? 553 | WindowJustification 554 | 5 555 | WindowOrderList 556 | 557 | F9BC74EA0E6D57BC0007C297 558 | 1CD10A99069EF8BA00B06720 559 | /Users/oomori/Documents/整理する/200903/sqlite3/UIButton.xcodeproj 560 | 561 | WindowString 562 | 39 138 1225 640 0 0 1280 778 563 | WindowToolsV3 564 | 565 | 566 | FirstTimeWindowDisplayed 567 | 568 | Identifier 569 | windowTool.build 570 | IsVertical 571 | 572 | Layout 573 | 574 | 575 | Dock 576 | 577 | 578 | ContentConfiguration 579 | 580 | PBXProjectModuleGUID 581 | 1CD0528F0623707200166675 582 | PBXProjectModuleLabel 583 | 584 | StatusBarVisibility 585 | 586 | 587 | GeometryConfiguration 588 | 589 | Frame 590 | {{0, 0}, {910, 296}} 591 | RubberWindowFrame 592 | 250 122 910 578 0 0 1280 778 593 | 594 | Module 595 | PBXNavigatorGroup 596 | Proportion 597 | 296pt 598 | 599 | 600 | ContentConfiguration 601 | 602 | PBXBuildLogShowsTranscriptDefaultKey 603 | {{0, 5}, {910, 231}} 604 | PBXProjectModuleGUID 605 | XCMainBuildResultsModuleGUID 606 | PBXProjectModuleLabel 607 | ビルド 608 | XCBuildResultsTrigger_Collapse 609 | 1021 610 | XCBuildResultsTrigger_Open 611 | 1011 612 | 613 | GeometryConfiguration 614 | 615 | Frame 616 | {{0, 301}, {910, 236}} 617 | RubberWindowFrame 618 | 250 122 910 578 0 0 1280 778 619 | 620 | Module 621 | PBXBuildResultsModule 622 | Proportion 623 | 236pt 624 | 625 | 626 | Proportion 627 | 537pt 628 | 629 | 630 | Name 631 | Build Results 632 | ServiceClasses 633 | 634 | PBXBuildResultsModule 635 | 636 | StatusbarIsVisible 637 | 638 | TableOfContents 639 | 640 | F9BC74EA0E6D57BC0007C297 641 | F9E3CC3B11FA56DA00148A8C 642 | 1CD0528F0623707200166675 643 | XCMainBuildResultsModuleGUID 644 | 645 | ToolbarConfiguration 646 | xcode.toolbar.config.buildV3 647 | WindowString 648 | 250 122 910 578 0 0 1280 778 649 | WindowToolGUID 650 | F9BC74EA0E6D57BC0007C297 651 | WindowToolIsVisible 652 | 653 | 654 | 655 | FirstTimeWindowDisplayed 656 | 657 | Identifier 658 | windowTool.debugger 659 | IsVertical 660 | 661 | Layout 662 | 663 | 664 | Dock 665 | 666 | 667 | ContentConfiguration 668 | 669 | Debugger 670 | 671 | HorizontalSplitView 672 | 673 | _collapsingFrameDimension 674 | 0.0 675 | _indexOfCollapsedView 676 | 0 677 | _percentageOfCollapsedView 678 | 0.0 679 | isCollapsed 680 | yes 681 | sizes 682 | 683 | {{0, 0}, {316, 203}} 684 | {{316, 0}, {378, 203}} 685 | 686 | 687 | VerticalSplitView 688 | 689 | _collapsingFrameDimension 690 | 0.0 691 | _indexOfCollapsedView 692 | 0 693 | _percentageOfCollapsedView 694 | 0.0 695 | isCollapsed 696 | yes 697 | sizes 698 | 699 | {{0, 0}, {694, 203}} 700 | {{0, 203}, {694, 178}} 701 | 702 | 703 | 704 | LauncherConfigVersion 705 | 8 706 | PBXProjectModuleGUID 707 | 1C162984064C10D400B95A72 708 | PBXProjectModuleLabel 709 | Debug - GLUTExamples (Underwater) 710 | 711 | GeometryConfiguration 712 | 713 | DebugConsoleVisible 714 | None 715 | DebugConsoleWindowFrame 716 | {{200, 200}, {500, 300}} 717 | DebugSTDIOWindowFrame 718 | {{200, 200}, {500, 300}} 719 | Frame 720 | {{0, 0}, {694, 381}} 721 | PBXDebugSessionStackFrameViewKey 722 | 723 | DebugVariablesTableConfiguration 724 | 725 | Name 726 | 120 727 | Value 728 | 85 729 | Summary 730 | 148 731 | 732 | Frame 733 | {{316, 0}, {378, 203}} 734 | RubberWindowFrame 735 | 249 278 694 422 0 0 1280 778 736 | 737 | RubberWindowFrame 738 | 249 278 694 422 0 0 1280 778 739 | 740 | Module 741 | PBXDebugSessionModule 742 | Proportion 743 | 381pt 744 | 745 | 746 | Proportion 747 | 381pt 748 | 749 | 750 | Name 751 | Debugger 752 | ServiceClasses 753 | 754 | PBXDebugSessionModule 755 | 756 | StatusbarIsVisible 757 | 758 | TableOfContents 759 | 760 | 1CD10A99069EF8BA00B06720 761 | F9E3CC3C11FA56DA00148A8C 762 | 1C162984064C10D400B95A72 763 | F9E3CC3D11FA56DA00148A8C 764 | F9E3CC3E11FA56DA00148A8C 765 | F9E3CC3F11FA56DA00148A8C 766 | F9E3CC4011FA56DA00148A8C 767 | F9E3CC4111FA56DA00148A8C 768 | 769 | ToolbarConfiguration 770 | xcode.toolbar.config.debugV3 771 | WindowString 772 | 249 278 694 422 0 0 1280 778 773 | WindowToolGUID 774 | 1CD10A99069EF8BA00B06720 775 | WindowToolIsVisible 776 | 777 | 778 | 779 | Identifier 780 | windowTool.find 781 | Layout 782 | 783 | 784 | Dock 785 | 786 | 787 | Dock 788 | 789 | 790 | ContentConfiguration 791 | 792 | PBXProjectModuleGUID 793 | 1CDD528C0622207200134675 794 | PBXProjectModuleLabel 795 | <No Editor> 796 | PBXSplitModuleInNavigatorKey 797 | 798 | Split0 799 | 800 | PBXProjectModuleGUID 801 | 1CD0528D0623707200166675 802 | 803 | SplitCount 804 | 1 805 | 806 | StatusBarVisibility 807 | 1 808 | 809 | GeometryConfiguration 810 | 811 | Frame 812 | {{0, 0}, {781, 167}} 813 | RubberWindowFrame 814 | 62 385 781 470 0 0 1440 878 815 | 816 | Module 817 | PBXNavigatorGroup 818 | Proportion 819 | 781pt 820 | 821 | 822 | Proportion 823 | 50% 824 | 825 | 826 | BecomeActive 827 | 1 828 | ContentConfiguration 829 | 830 | PBXProjectModuleGUID 831 | 1CD0528E0623707200166675 832 | PBXProjectModuleLabel 833 | Project Find 834 | 835 | GeometryConfiguration 836 | 837 | Frame 838 | {{8, 0}, {773, 254}} 839 | RubberWindowFrame 840 | 62 385 781 470 0 0 1440 878 841 | 842 | Module 843 | PBXProjectFindModule 844 | Proportion 845 | 50% 846 | 847 | 848 | Proportion 849 | 428pt 850 | 851 | 852 | Name 853 | Project Find 854 | ServiceClasses 855 | 856 | PBXProjectFindModule 857 | 858 | StatusbarIsVisible 859 | 1 860 | TableOfContents 861 | 862 | 1C530D57069F1CE1000CFCEE 863 | 1C530D58069F1CE1000CFCEE 864 | 1C530D59069F1CE1000CFCEE 865 | 1CDD528C0622207200134675 866 | 1C530D5A069F1CE1000CFCEE 867 | 1CE0B1FE06471DED0097A5F4 868 | 1CD0528E0623707200166675 869 | 870 | WindowString 871 | 62 385 781 470 0 0 1440 878 872 | WindowToolGUID 873 | 1C530D57069F1CE1000CFCEE 874 | WindowToolIsVisible 875 | 0 876 | 877 | 878 | Identifier 879 | MENUSEPARATOR 880 | 881 | 882 | FirstTimeWindowDisplayed 883 | 884 | Identifier 885 | windowTool.debuggerConsole 886 | IsVertical 887 | 888 | Layout 889 | 890 | 891 | Dock 892 | 893 | 894 | BecomeActive 895 | 896 | ContentConfiguration 897 | 898 | PBXProjectModuleGUID 899 | 1C78EAAC065D492600B07095 900 | PBXProjectModuleLabel 901 | Debugger Console 902 | 903 | GeometryConfiguration 904 | 905 | Frame 906 | {{0, 0}, {973, 549}} 907 | RubberWindowFrame 908 | 373 188 973 590 0 0 1280 778 909 | 910 | Module 911 | PBXDebugCLIModule 912 | Proportion 913 | 549pt 914 | 915 | 916 | Proportion 917 | 549pt 918 | 919 | 920 | Name 921 | Debugger Console 922 | ServiceClasses 923 | 924 | PBXDebugCLIModule 925 | 926 | StatusbarIsVisible 927 | 928 | TableOfContents 929 | 930 | 1C78EAAD065D492600B07095 931 | F90411A90FAB2ED800BA8C5B 932 | 1C78EAAC065D492600B07095 933 | 934 | ToolbarConfiguration 935 | xcode.toolbar.config.consoleV3 936 | WindowString 937 | 373 188 973 590 0 0 1280 778 938 | WindowToolGUID 939 | 1C78EAAD065D492600B07095 940 | WindowToolIsVisible 941 | 942 | 943 | 944 | Identifier 945 | windowTool.snapshots 946 | Layout 947 | 948 | 949 | Dock 950 | 951 | 952 | Module 953 | XCSnapshotModule 954 | Proportion 955 | 100% 956 | 957 | 958 | Proportion 959 | 100% 960 | 961 | 962 | Name 963 | Snapshots 964 | ServiceClasses 965 | 966 | XCSnapshotModule 967 | 968 | StatusbarIsVisible 969 | Yes 970 | ToolbarConfiguration 971 | xcode.toolbar.config.snapshots 972 | WindowString 973 | 315 824 300 550 0 0 1440 878 974 | WindowToolIsVisible 975 | Yes 976 | 977 | 978 | Identifier 979 | windowTool.scm 980 | Layout 981 | 982 | 983 | Dock 984 | 985 | 986 | ContentConfiguration 987 | 988 | PBXProjectModuleGUID 989 | 1C78EAB2065D492600B07095 990 | PBXProjectModuleLabel 991 | <No Editor> 992 | PBXSplitModuleInNavigatorKey 993 | 994 | Split0 995 | 996 | PBXProjectModuleGUID 997 | 1C78EAB3065D492600B07095 998 | 999 | SplitCount 1000 | 1 1001 | 1002 | StatusBarVisibility 1003 | 1 1004 | 1005 | GeometryConfiguration 1006 | 1007 | Frame 1008 | {{0, 0}, {452, 0}} 1009 | RubberWindowFrame 1010 | 743 379 452 308 0 0 1280 1002 1011 | 1012 | Module 1013 | PBXNavigatorGroup 1014 | Proportion 1015 | 0pt 1016 | 1017 | 1018 | BecomeActive 1019 | 1 1020 | ContentConfiguration 1021 | 1022 | PBXProjectModuleGUID 1023 | 1CD052920623707200166675 1024 | PBXProjectModuleLabel 1025 | SCM 1026 | 1027 | GeometryConfiguration 1028 | 1029 | ConsoleFrame 1030 | {{0, 259}, {452, 0}} 1031 | Frame 1032 | {{0, 7}, {452, 259}} 1033 | RubberWindowFrame 1034 | 743 379 452 308 0 0 1280 1002 1035 | TableConfiguration 1036 | 1037 | Status 1038 | 30 1039 | FileName 1040 | 199 1041 | Path 1042 | 197.0950012207031 1043 | 1044 | TableFrame 1045 | {{0, 0}, {452, 250}} 1046 | 1047 | Module 1048 | PBXCVSModule 1049 | Proportion 1050 | 262pt 1051 | 1052 | 1053 | Proportion 1054 | 266pt 1055 | 1056 | 1057 | Name 1058 | SCM 1059 | ServiceClasses 1060 | 1061 | PBXCVSModule 1062 | 1063 | StatusbarIsVisible 1064 | 1 1065 | TableOfContents 1066 | 1067 | 1C78EAB4065D492600B07095 1068 | 1C78EAB5065D492600B07095 1069 | 1C78EAB2065D492600B07095 1070 | 1CD052920623707200166675 1071 | 1072 | ToolbarConfiguration 1073 | xcode.toolbar.config.scm 1074 | WindowString 1075 | 743 379 452 308 0 0 1280 1002 1076 | 1077 | 1078 | Identifier 1079 | windowTool.breakpoints 1080 | IsVertical 1081 | 0 1082 | Layout 1083 | 1084 | 1085 | Dock 1086 | 1087 | 1088 | BecomeActive 1089 | 1 1090 | ContentConfiguration 1091 | 1092 | PBXBottomSmartGroupGIDs 1093 | 1094 | 1C77FABC04509CD000000102 1095 | 1096 | PBXProjectModuleGUID 1097 | 1CE0B1FE06471DED0097A5F4 1098 | PBXProjectModuleLabel 1099 | Files 1100 | PBXProjectStructureProvided 1101 | no 1102 | PBXSmartGroupTreeModuleColumnData 1103 | 1104 | PBXSmartGroupTreeModuleColumnWidthsKey 1105 | 1106 | 168 1107 | 1108 | PBXSmartGroupTreeModuleColumnsKey_v4 1109 | 1110 | MainColumn 1111 | 1112 | 1113 | PBXSmartGroupTreeModuleOutlineStateKey_v7 1114 | 1115 | PBXSmartGroupTreeModuleOutlineStateExpansionKey 1116 | 1117 | 1C77FABC04509CD000000102 1118 | 1119 | PBXSmartGroupTreeModuleOutlineStateSelectionKey 1120 | 1121 | 1122 | 0 1123 | 1124 | 1125 | PBXSmartGroupTreeModuleOutlineStateVisibleRectKey 1126 | {{0, 0}, {168, 350}} 1127 | 1128 | PBXTopSmartGroupGIDs 1129 | 1130 | XCIncludePerspectivesSwitch 1131 | 0 1132 | 1133 | GeometryConfiguration 1134 | 1135 | Frame 1136 | {{0, 0}, {185, 368}} 1137 | GroupTreeTableConfiguration 1138 | 1139 | MainColumn 1140 | 168 1141 | 1142 | RubberWindowFrame 1143 | 315 424 744 409 0 0 1440 878 1144 | 1145 | Module 1146 | PBXSmartGroupTreeModule 1147 | Proportion 1148 | 185pt 1149 | 1150 | 1151 | ContentConfiguration 1152 | 1153 | PBXProjectModuleGUID 1154 | 1CA1AED706398EBD00589147 1155 | PBXProjectModuleLabel 1156 | Detail 1157 | 1158 | GeometryConfiguration 1159 | 1160 | Frame 1161 | {{190, 0}, {554, 368}} 1162 | RubberWindowFrame 1163 | 315 424 744 409 0 0 1440 878 1164 | 1165 | Module 1166 | XCDetailModule 1167 | Proportion 1168 | 554pt 1169 | 1170 | 1171 | Proportion 1172 | 368pt 1173 | 1174 | 1175 | MajorVersion 1176 | 3 1177 | MinorVersion 1178 | 0 1179 | Name 1180 | Breakpoints 1181 | ServiceClasses 1182 | 1183 | PBXSmartGroupTreeModule 1184 | XCDetailModule 1185 | 1186 | StatusbarIsVisible 1187 | 1 1188 | TableOfContents 1189 | 1190 | 1CDDB66807F98D9800BB5817 1191 | 1CDDB66907F98D9800BB5817 1192 | 1CE0B1FE06471DED0097A5F4 1193 | 1CA1AED706398EBD00589147 1194 | 1195 | ToolbarConfiguration 1196 | xcode.toolbar.config.breakpointsV3 1197 | WindowString 1198 | 315 424 744 409 0 0 1440 878 1199 | WindowToolGUID 1200 | 1CDDB66807F98D9800BB5817 1201 | WindowToolIsVisible 1202 | 1 1203 | 1204 | 1205 | Identifier 1206 | windowTool.debugAnimator 1207 | Layout 1208 | 1209 | 1210 | Dock 1211 | 1212 | 1213 | Module 1214 | PBXNavigatorGroup 1215 | Proportion 1216 | 100% 1217 | 1218 | 1219 | Proportion 1220 | 100% 1221 | 1222 | 1223 | Name 1224 | Debug Visualizer 1225 | ServiceClasses 1226 | 1227 | PBXNavigatorGroup 1228 | 1229 | StatusbarIsVisible 1230 | 1 1231 | ToolbarConfiguration 1232 | xcode.toolbar.config.debugAnimatorV3 1233 | WindowString 1234 | 100 100 700 500 0 0 1280 1002 1235 | 1236 | 1237 | Identifier 1238 | windowTool.bookmarks 1239 | Layout 1240 | 1241 | 1242 | Dock 1243 | 1244 | 1245 | Module 1246 | PBXBookmarksModule 1247 | Proportion 1248 | 100% 1249 | 1250 | 1251 | Proportion 1252 | 100% 1253 | 1254 | 1255 | Name 1256 | Bookmarks 1257 | ServiceClasses 1258 | 1259 | PBXBookmarksModule 1260 | 1261 | StatusbarIsVisible 1262 | 0 1263 | WindowString 1264 | 538 42 401 187 0 0 1280 1002 1265 | 1266 | 1267 | Identifier 1268 | windowTool.projectFormatConflicts 1269 | Layout 1270 | 1271 | 1272 | Dock 1273 | 1274 | 1275 | Module 1276 | XCProjectFormatConflictsModule 1277 | Proportion 1278 | 100% 1279 | 1280 | 1281 | Proportion 1282 | 100% 1283 | 1284 | 1285 | Name 1286 | Project Format Conflicts 1287 | ServiceClasses 1288 | 1289 | XCProjectFormatConflictsModule 1290 | 1291 | StatusbarIsVisible 1292 | 0 1293 | WindowContentMinSize 1294 | 450 300 1295 | WindowString 1296 | 50 850 472 307 0 0 1440 877 1297 | 1298 | 1299 | Identifier 1300 | windowTool.classBrowser 1301 | Layout 1302 | 1303 | 1304 | Dock 1305 | 1306 | 1307 | BecomeActive 1308 | 1 1309 | ContentConfiguration 1310 | 1311 | OptionsSetName 1312 | Hierarchy, all classes 1313 | PBXProjectModuleGUID 1314 | 1CA6456E063B45B4001379D8 1315 | PBXProjectModuleLabel 1316 | Class Browser - NSObject 1317 | 1318 | GeometryConfiguration 1319 | 1320 | ClassesFrame 1321 | {{0, 0}, {374, 96}} 1322 | ClassesTreeTableConfiguration 1323 | 1324 | PBXClassNameColumnIdentifier 1325 | 208 1326 | PBXClassBookColumnIdentifier 1327 | 22 1328 | 1329 | Frame 1330 | {{0, 0}, {630, 331}} 1331 | MembersFrame 1332 | {{0, 105}, {374, 395}} 1333 | MembersTreeTableConfiguration 1334 | 1335 | PBXMemberTypeIconColumnIdentifier 1336 | 22 1337 | PBXMemberNameColumnIdentifier 1338 | 216 1339 | PBXMemberTypeColumnIdentifier 1340 | 97 1341 | PBXMemberBookColumnIdentifier 1342 | 22 1343 | 1344 | PBXModuleWindowStatusBarHidden2 1345 | 1 1346 | RubberWindowFrame 1347 | 385 179 630 352 0 0 1440 878 1348 | 1349 | Module 1350 | PBXClassBrowserModule 1351 | Proportion 1352 | 332pt 1353 | 1354 | 1355 | Proportion 1356 | 332pt 1357 | 1358 | 1359 | Name 1360 | Class Browser 1361 | ServiceClasses 1362 | 1363 | PBXClassBrowserModule 1364 | 1365 | StatusbarIsVisible 1366 | 0 1367 | TableOfContents 1368 | 1369 | 1C0AD2AF069F1E9B00FABCE6 1370 | 1C0AD2B0069F1E9B00FABCE6 1371 | 1CA6456E063B45B4001379D8 1372 | 1373 | ToolbarConfiguration 1374 | xcode.toolbar.config.classbrowser 1375 | WindowString 1376 | 385 179 630 352 0 0 1440 878 1377 | WindowToolGUID 1378 | 1C0AD2AF069F1E9B00FABCE6 1379 | WindowToolIsVisible 1380 | 0 1381 | 1382 | 1383 | Identifier 1384 | windowTool.refactoring 1385 | IncludeInToolsMenu 1386 | 0 1387 | Layout 1388 | 1389 | 1390 | Dock 1391 | 1392 | 1393 | BecomeActive 1394 | 1 1395 | GeometryConfiguration 1396 | 1397 | Frame 1398 | {0, 0}, {500, 335} 1399 | RubberWindowFrame 1400 | {0, 0}, {500, 335} 1401 | 1402 | Module 1403 | XCRefactoringModule 1404 | Proportion 1405 | 100% 1406 | 1407 | 1408 | Proportion 1409 | 100% 1410 | 1411 | 1412 | Name 1413 | Refactoring 1414 | ServiceClasses 1415 | 1416 | XCRefactoringModule 1417 | 1418 | WindowString 1419 | 200 200 500 356 0 0 1920 1200 1420 | 1421 | 1422 | 1423 | 1424 | -------------------------------------------------------------------------------- /UIButton.xcodeproj/oomori.pbxuser: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | 1D3623240D0F684500981E51 /* UIApplicationAppDelegate.h */ = { 4 | uiCtxt = { 5 | sepNavIntBoundsRect = "{{0, 0}, {838, 599}}"; 6 | sepNavSelRange = "{495, 52}"; 7 | sepNavVisRange = "{0, 555}"; 8 | }; 9 | }; 10 | 1D3623250D0F684500981E51 /* UIApplicationAppDelegate.m */ = { 11 | uiCtxt = { 12 | sepNavIntBoundsRect = "{{0, 0}, {838, 664}}"; 13 | sepNavSelRange = "{575, 0}"; 14 | sepNavVisRange = "{0, 894}"; 15 | sepNavWindowFrame = "{{15, 0}, {811, 778}}"; 16 | }; 17 | }; 18 | 1D6058900D05DD3D006BFB54 /* UIApplication */ = { 19 | activeExec = 0; 20 | executables = ( 21 | F9BC74E30E6D57AF0007C297 /* UIApplication */, 22 | ); 23 | }; 24 | 28A0AAE50D9B0CCF005BE974 /* UIApplication_Prefix.pch */ = { 25 | uiCtxt = { 26 | sepNavIntBoundsRect = "{{0, 0}, {604, 379}}"; 27 | sepNavSelRange = "{0, 0}"; 28 | sepNavVisRange = "{0, 189}"; 29 | }; 30 | }; 31 | 28C286DF0D94DF7D0034E888 /* RootViewController.h */ = { 32 | uiCtxt = { 33 | sepNavIntBoundsRect = "{{0, 0}, {838, 599}}"; 34 | sepNavSelRange = "{143, 23}"; 35 | sepNavVisRange = "{0, 232}"; 36 | }; 37 | }; 38 | 28C286E00D94DF7D0034E888 /* RootViewController.m */ = { 39 | uiCtxt = { 40 | sepNavIntBoundsRect = "{{0, 0}, {900, 1500}}"; 41 | sepNavSelRange = "{2785, 30}"; 42 | sepNavVisRange = "{3, 1125}"; 43 | }; 44 | }; 45 | 29B97313FDCFA39411CA2CEA /* Project object */ = { 46 | activeBuildConfigurationName = Debug; 47 | activeExecutable = F9BC74E30E6D57AF0007C297 /* UIApplication */; 48 | activeSDKPreference = iphonesimulator2.2.1; 49 | activeTarget = 1D6058900D05DD3D006BFB54 /* UIApplication */; 50 | addToTargets = ( 51 | 1D6058900D05DD3D006BFB54 /* UIApplication */, 52 | ); 53 | breakpoints = ( 54 | ); 55 | codeSenseManager = F9BC74F40E6D57BC0007C297 /* Code sense */; 56 | executables = ( 57 | F9BC74E30E6D57AF0007C297 /* UIApplication */, 58 | ); 59 | perUserDictionary = { 60 | PBXConfiguration.PBXFileTableDataSource3.PBXExecutablesDataSource = { 61 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; 62 | PBXFileTableDataSourceColumnSortingKey = PBXExecutablesDataSource_NameID; 63 | PBXFileTableDataSourceColumnWidthsKey = ( 64 | 22, 65 | 300, 66 | 318, 67 | ); 68 | PBXFileTableDataSourceColumnsKey = ( 69 | PBXExecutablesDataSource_ActiveFlagID, 70 | PBXExecutablesDataSource_NameID, 71 | PBXExecutablesDataSource_CommentsID, 72 | ); 73 | }; 74 | PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { 75 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; 76 | PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; 77 | PBXFileTableDataSourceColumnWidthsKey = ( 78 | 20, 79 | 778, 80 | 20, 81 | 48, 82 | 43, 83 | 43, 84 | 20, 85 | ); 86 | PBXFileTableDataSourceColumnsKey = ( 87 | PBXFileDataSource_FiletypeID, 88 | PBXFileDataSource_Filename_ColumnID, 89 | PBXFileDataSource_Built_ColumnID, 90 | PBXFileDataSource_ObjectSize_ColumnID, 91 | PBXFileDataSource_Errors_ColumnID, 92 | PBXFileDataSource_Warnings_ColumnID, 93 | PBXFileDataSource_Target_ColumnID, 94 | ); 95 | }; 96 | PBXConfiguration.PBXFileTableDataSource3.XCSCMDataSource = { 97 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; 98 | PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; 99 | PBXFileTableDataSourceColumnWidthsKey = ( 100 | 20, 101 | 20, 102 | 630, 103 | 20, 104 | 48.16259765625, 105 | 43, 106 | 43, 107 | 20, 108 | ); 109 | PBXFileTableDataSourceColumnsKey = ( 110 | PBXFileDataSource_SCM_ColumnID, 111 | PBXFileDataSource_FiletypeID, 112 | PBXFileDataSource_Filename_ColumnID, 113 | PBXFileDataSource_Built_ColumnID, 114 | PBXFileDataSource_ObjectSize_ColumnID, 115 | PBXFileDataSource_Errors_ColumnID, 116 | PBXFileDataSource_Warnings_ColumnID, 117 | PBXFileDataSource_Target_ColumnID, 118 | ); 119 | }; 120 | PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = { 121 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; 122 | PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; 123 | PBXFileTableDataSourceColumnWidthsKey = ( 124 | 20, 125 | 738, 126 | 60, 127 | 20, 128 | 48, 129 | 43, 130 | 43, 131 | ); 132 | PBXFileTableDataSourceColumnsKey = ( 133 | PBXFileDataSource_FiletypeID, 134 | PBXFileDataSource_Filename_ColumnID, 135 | PBXTargetDataSource_PrimaryAttribute, 136 | PBXFileDataSource_Built_ColumnID, 137 | PBXFileDataSource_ObjectSize_ColumnID, 138 | PBXFileDataSource_Errors_ColumnID, 139 | PBXFileDataSource_Warnings_ColumnID, 140 | ); 141 | }; 142 | PBXPerProjectTemplateStateSaveDate = 301618879; 143 | PBXWorkspaceStateSaveDate = 301618879; 144 | }; 145 | perUserProjectItems = { 146 | F90411AB0FAB2F0900BA8C5B /* PBXTextBookmark */ = F90411AB0FAB2F0900BA8C5B /* PBXTextBookmark */; 147 | F9047D8E0F88DA7900010F22 /* PBXTextBookmark */ = F9047D8E0F88DA7900010F22 /* PBXTextBookmark */; 148 | F9079B770F81032800E4C5E8 /* PBXTextBookmark */ = F9079B770F81032800E4C5E8 /* PBXTextBookmark */; 149 | F91C8EA10E812E8E00863463 /* PBXTextBookmark */ = F91C8EA10E812E8E00863463 /* PBXTextBookmark */; 150 | F92775560E7CD8BF00E76D23 /* PBXTextBookmark */ = F92775560E7CD8BF00E76D23 /* PBXTextBookmark */; 151 | F92775570E7CD8BF00E76D23 /* PBXTextBookmark */ = F92775570E7CD8BF00E76D23 /* PBXTextBookmark */; 152 | F92775630E7CD8BF00E76D23 /* PBXTextBookmark */ = F92775630E7CD8BF00E76D23 /* PBXTextBookmark */; 153 | F92775640E7CD8BF00E76D23 /* PBXTextBookmark */ = F92775640E7CD8BF00E76D23 /* PBXTextBookmark */; 154 | F93CE50A0F8253F300C41ECE /* PBXTextBookmark */ = F93CE50A0F8253F300C41ECE /* PBXTextBookmark */; 155 | F93CE50B0F8253F300C41ECE /* PBXTextBookmark */ = F93CE50B0F8253F300C41ECE /* PBXTextBookmark */; 156 | F95508AF0F823AA300D56733 /* PBXTextBookmark */ = F95508AF0F823AA300D56733 /* PBXTextBookmark */; 157 | F95508E40F823AA300D56733 /* PBXTextBookmark */ = F95508E40F823AA300D56733 /* PBXTextBookmark */; 158 | F958397D0E8862B000CA63D9 /* PBXTextBookmark */ = F958397D0E8862B000CA63D9 /* PBXTextBookmark */; 159 | F973DA2B0F9062E9006CF71E /* PBXTextBookmark */ = F973DA2B0F9062E9006CF71E /* PBXTextBookmark */; 160 | F973DA2C0F9062E9006CF71E /* PBXTextBookmark */ = F973DA2C0F9062E9006CF71E /* PBXTextBookmark */; 161 | F973DA2D0F9062E9006CF71E /* PBXTextBookmark */ = F973DA2D0F9062E9006CF71E /* PBXTextBookmark */; 162 | F97EBEBF0E7CADB50045446D /* PBXTextBookmark */ = F97EBEBF0E7CADB50045446D /* PBXTextBookmark */; 163 | F97EBED10E7CAE400045446D /* PBXTextBookmark */ = F97EBED10E7CAE400045446D /* PBXTextBookmark */; 164 | F987559C0EEA45E9007566BD /* PlistBookmark */ = F987559C0EEA45E9007566BD /* PlistBookmark */; 165 | F987559E0EEA45E9007566BD /* PlistBookmark */ = F987559E0EEA45E9007566BD /* PlistBookmark */; 166 | F987DF780F84DA8F00396921 /* PBXTextBookmark */ = F987DF780F84DA8F00396921 /* PBXTextBookmark */; 167 | F9BC75040E6D59D50007C297 /* PBXTextBookmark */ = F9BC75040E6D59D50007C297 /* PBXTextBookmark */; 168 | F9BC75050E6D59D50007C297 /* PBXTextBookmark */ = F9BC75050E6D59D50007C297 /* PBXTextBookmark */; 169 | F9E3CC3811FA56DA00148A8C /* PBXTextBookmark */ = F9E3CC3811FA56DA00148A8C /* PBXTextBookmark */; 170 | F9F7952D0F864DF5008B13E0 /* PBXTextBookmark */ = F9F7952D0F864DF5008B13E0 /* PBXTextBookmark */; 171 | }; 172 | sourceControlManager = F9BC74F30E6D57BC0007C297 /* Source Control */; 173 | userBuildSettings = { 174 | }; 175 | }; 176 | 29B97316FDCFA39411CA2CEA /* main.m */ = { 177 | uiCtxt = { 178 | sepNavIntBoundsRect = "{{0, 0}, {604, 379}}"; 179 | sepNavSelRange = "{0, 0}"; 180 | sepNavVisRange = "{0, 343}"; 181 | }; 182 | }; 183 | F90411AB0FAB2F0900BA8C5B /* PBXTextBookmark */ = { 184 | isa = PBXTextBookmark; 185 | fRef = F955087D0F82351F00D56733 /* WordNetJPN.m */; 186 | name = "WordNetJPN.m: 103"; 187 | rLen = 34; 188 | rLoc = 2641; 189 | rType = 0; 190 | vrLen = 542; 191 | vrLoc = 0; 192 | }; 193 | F9047D8E0F88DA7900010F22 /* PBXTextBookmark */ = { 194 | isa = PBXTextBookmark; 195 | fRef = F955087C0F82351F00D56733 /* WordNetJPN.h */; 196 | name = "WordNetJPN.h: 9"; 197 | rLen = 19; 198 | rLoc = 141; 199 | rType = 0; 200 | vrLen = 868; 201 | vrLoc = 0; 202 | }; 203 | F9079B770F81032800E4C5E8 /* PBXTextBookmark */ = { 204 | isa = PBXTextBookmark; 205 | fRef = 1D3623240D0F684500981E51 /* UIApplicationAppDelegate.h */; 206 | name = "UIApplicationAppDelegate.h: 22"; 207 | rLen = 52; 208 | rLoc = 495; 209 | rType = 0; 210 | vrLen = 555; 211 | vrLoc = 0; 212 | }; 213 | F91C8E820E812BF600863463 /* Controll.h */ = { 214 | uiCtxt = { 215 | sepNavIntBoundsRect = "{{0, 0}, {832, 565}}"; 216 | sepNavSelRange = "{251, 8}"; 217 | sepNavVisRange = "{0, 419}"; 218 | }; 219 | }; 220 | F91C8E830E812BF600863463 /* Controll.m */ = { 221 | uiCtxt = { 222 | sepNavIntBoundsRect = "{{0, 0}, {1135.38, 2356}}"; 223 | sepNavSelRange = "{0, 2337}"; 224 | sepNavVisRange = "{0, 342}"; 225 | sepNavWindowFrame = "{{15, 271}, {818, 502}}"; 226 | }; 227 | }; 228 | F91C8EA10E812E8E00863463 /* PBXTextBookmark */ = { 229 | isa = PBXTextBookmark; 230 | fRef = F91C8E820E812BF600863463 /* Controll.h */; 231 | name = "Controll.h: 1"; 232 | rLen = 0; 233 | rLoc = 0; 234 | rType = 0; 235 | vrLen = 201; 236 | vrLoc = 0; 237 | }; 238 | F92775560E7CD8BF00E76D23 /* PBXTextBookmark */ = { 239 | isa = PBXTextBookmark; 240 | fRef = 28A0AAE50D9B0CCF005BE974 /* UIApplication_Prefix.pch */; 241 | name = "UIApplication_Prefix.pch: 1"; 242 | rLen = 0; 243 | rLoc = 0; 244 | rType = 0; 245 | vrLen = 189; 246 | vrLoc = 0; 247 | }; 248 | F92775570E7CD8BF00E76D23 /* PBXTextBookmark */ = { 249 | isa = PBXTextBookmark; 250 | fRef = 29B97316FDCFA39411CA2CEA /* main.m */; 251 | name = "main.m: 1"; 252 | rLen = 0; 253 | rLoc = 0; 254 | rType = 0; 255 | vrLen = 343; 256 | vrLoc = 0; 257 | }; 258 | F92775630E7CD8BF00E76D23 /* PBXTextBookmark */ = { 259 | isa = PBXTextBookmark; 260 | fRef = 28A0AAE50D9B0CCF005BE974 /* UIApplication_Prefix.pch */; 261 | name = "UIApplication_Prefix.pch: 1"; 262 | rLen = 0; 263 | rLoc = 0; 264 | rType = 0; 265 | vrLen = 189; 266 | vrLoc = 0; 267 | }; 268 | F92775640E7CD8BF00E76D23 /* PBXTextBookmark */ = { 269 | isa = PBXTextBookmark; 270 | fRef = 29B97316FDCFA39411CA2CEA /* main.m */; 271 | name = "main.m: 1"; 272 | rLen = 0; 273 | rLoc = 0; 274 | rType = 0; 275 | vrLen = 343; 276 | vrLoc = 0; 277 | }; 278 | F93CE50A0F8253F300C41ECE /* PBXTextBookmark */ = { 279 | isa = PBXTextBookmark; 280 | fRef = 28C286E00D94DF7D0034E888 /* RootViewController.m */; 281 | name = "RootViewController.m: 108"; 282 | rLen = 30; 283 | rLoc = 2785; 284 | rType = 0; 285 | vrLen = 1125; 286 | vrLoc = 3; 287 | }; 288 | F93CE50B0F8253F300C41ECE /* PBXTextBookmark */ = { 289 | isa = PBXTextBookmark; 290 | fRef = 1D3623250D0F684500981E51 /* UIApplicationAppDelegate.m */; 291 | name = "UIApplicationAppDelegate.m: 32"; 292 | rLen = 0; 293 | rLoc = 575; 294 | rType = 0; 295 | vrLen = 889; 296 | vrLoc = 0; 297 | }; 298 | F955087C0F82351F00D56733 /* WordNetJPN.h */ = { 299 | uiCtxt = { 300 | sepNavIntBoundsRect = "{{0, 0}, {956, 3000}}"; 301 | sepNavSelRange = "{2343, 31}"; 302 | sepNavVisRange = "{2226, 513}"; 303 | sepNavWindowFrame = "{{15, 126}, {720, 647}}"; 304 | }; 305 | }; 306 | F955087D0F82351F00D56733 /* WordNetJPN.m */ = { 307 | uiCtxt = { 308 | sepNavIntBoundsRect = "{{0, 0}, {1074, 5798}}"; 309 | sepNavSelRange = "{2641, 34}"; 310 | sepNavVisRange = "{113, 429}"; 311 | sepNavWindowFrame = "{{15, 126}, {720, 647}}"; 312 | }; 313 | }; 314 | F95508AF0F823AA300D56733 /* PBXTextBookmark */ = { 315 | isa = PBXTextBookmark; 316 | fRef = 28C286DF0D94DF7D0034E888 /* RootViewController.h */; 317 | name = "RootViewController.h: 9"; 318 | rLen = 23; 319 | rLoc = 143; 320 | rType = 0; 321 | vrLen = 232; 322 | vrLoc = 0; 323 | }; 324 | F95508E40F823AA300D56733 /* PBXTextBookmark */ = { 325 | isa = PBXTextBookmark; 326 | fRef = F98755A20EEA469C007566BD /* sqlite3.h */; 327 | name = "sqlite3.h: 1"; 328 | rLen = 0; 329 | rLoc = 0; 330 | rType = 0; 331 | vrLen = 1560; 332 | vrLoc = 4511; 333 | }; 334 | F958397D0E8862B000CA63D9 /* PBXTextBookmark */ = { 335 | isa = PBXTextBookmark; 336 | fRef = F91C8E830E812BF600863463 /* Controll.m */; 337 | name = "Controll.m: 25"; 338 | rLen = 0; 339 | rLoc = 2205; 340 | rType = 0; 341 | vrLen = 1226; 342 | vrLoc = 298; 343 | }; 344 | F973DA2B0F9062E9006CF71E /* PBXTextBookmark */ = { 345 | isa = PBXTextBookmark; 346 | fRef = F91C8E830E812BF600863463 /* Controll.m */; 347 | name = "Controll.m: 1"; 348 | rLen = 2337; 349 | rLoc = 0; 350 | rType = 0; 351 | vrLen = 342; 352 | vrLoc = 0; 353 | }; 354 | F973DA2C0F9062E9006CF71E /* PBXTextBookmark */ = { 355 | isa = PBXTextBookmark; 356 | fRef = F98755A20EEA469C007566BD /* sqlite3.h */; 357 | name = "sqlite3.h: 1"; 358 | rLen = 0; 359 | rLoc = 0; 360 | rType = 0; 361 | vrLen = 503; 362 | vrLoc = 4511; 363 | }; 364 | F973DA2D0F9062E9006CF71E /* PBXTextBookmark */ = { 365 | isa = PBXTextBookmark; 366 | fRef = F955087C0F82351F00D56733 /* WordNetJPN.h */; 367 | name = "WordNetJPN.h: 95"; 368 | rLen = 31; 369 | rLoc = 2343; 370 | rType = 0; 371 | vrLen = 513; 372 | vrLoc = 2226; 373 | }; 374 | F97EBEBF0E7CADB50045446D /* PBXTextBookmark */ = { 375 | isa = PBXTextBookmark; 376 | fRef = 1D3623240D0F684500981E51 /* UIApplicationAppDelegate.h */; 377 | name = "UIApplicationAppDelegate.h: 1"; 378 | rLen = 0; 379 | rLoc = 0; 380 | rType = 0; 381 | vrLen = 467; 382 | vrLoc = 0; 383 | }; 384 | F97EBED10E7CAE400045446D /* PBXTextBookmark */ = { 385 | isa = PBXTextBookmark; 386 | fRef = 28C286DF0D94DF7D0034E888 /* RootViewController.h */; 387 | name = "RootViewController.h: 1"; 388 | rLen = 0; 389 | rLoc = 0; 390 | rType = 0; 391 | vrLen = 232; 392 | vrLoc = 0; 393 | }; 394 | F987559C0EEA45E9007566BD /* PlistBookmark */ = { 395 | isa = PlistBookmark; 396 | fRef = 8D1107310486CEB800E47090 /* Info.plist */; 397 | fallbackIsa = PBXBookmark; 398 | isK = 0; 399 | kPath = ( 400 | ); 401 | name = "/Users/oomori/Documents/touch reference/UIKit/UIButton/initWithFrame 2/Info.plist"; 402 | rLen = 0; 403 | rLoc = 2147483647; 404 | }; 405 | F987559E0EEA45E9007566BD /* PlistBookmark */ = { 406 | isa = PlistBookmark; 407 | fRef = 8D1107310486CEB800E47090 /* Info.plist */; 408 | fallbackIsa = PBXBookmark; 409 | isK = 0; 410 | kPath = ( 411 | ); 412 | name = "/Users/oomori/Documents/touch reference/UIKit/UIButton/initWithFrame 2/Info.plist"; 413 | rLen = 0; 414 | rLoc = 2147483647; 415 | }; 416 | F98755A20EEA469C007566BD /* sqlite3.h */ = { 417 | uiCtxt = { 418 | sepNavIntBoundsRect = "{{0, 0}, {956, 66900}}"; 419 | sepNavSelRange = "{0, 0}"; 420 | sepNavVisRange = "{4511, 503}"; 421 | }; 422 | }; 423 | F987DF780F84DA8F00396921 /* PBXTextBookmark */ = { 424 | isa = PBXTextBookmark; 425 | fRef = F91C8E820E812BF600863463 /* Controll.h */; 426 | name = "Controll.h: 13"; 427 | rLen = 8; 428 | rLoc = 251; 429 | rType = 0; 430 | vrLen = 419; 431 | vrLoc = 0; 432 | }; 433 | F9BC74E30E6D57AF0007C297 /* UIApplication */ = { 434 | isa = PBXExecutable; 435 | activeArgIndices = ( 436 | ); 437 | argumentStrings = ( 438 | ); 439 | autoAttachOnCrash = 1; 440 | breakpointsEnabled = 0; 441 | configStateDict = { 442 | }; 443 | customDataFormattersEnabled = 1; 444 | debuggerPlugin = GDBDebugging; 445 | disassemblyDisplayState = 0; 446 | dylibVariantSuffix = ""; 447 | enableDebugStr = 1; 448 | environmentEntries = ( 449 | ); 450 | executableSystemSymbolLevel = 0; 451 | executableUserSymbolLevel = 0; 452 | libgmallocEnabled = 0; 453 | name = UIApplication; 454 | savedGlobals = { 455 | }; 456 | sourceDirectories = ( 457 | ); 458 | }; 459 | F9BC74F30E6D57BC0007C297 /* Source Control */ = { 460 | isa = PBXSourceControlManager; 461 | fallbackIsa = XCSourceControlManager; 462 | isSCMEnabled = 0; 463 | scmConfiguration = { 464 | }; 465 | }; 466 | F9BC74F40E6D57BC0007C297 /* Code sense */ = { 467 | isa = PBXCodeSenseManager; 468 | indexTemplatePath = ""; 469 | }; 470 | F9BC75040E6D59D50007C297 /* PBXTextBookmark */ = { 471 | isa = PBXTextBookmark; 472 | fRef = 28C286E00D94DF7D0034E888 /* RootViewController.m */; 473 | name = "RootViewController.m: 1"; 474 | rLen = 0; 475 | rLoc = 0; 476 | rType = 0; 477 | vrLen = 472; 478 | vrLoc = 0; 479 | }; 480 | F9BC75050E6D59D50007C297 /* PBXTextBookmark */ = { 481 | isa = PBXTextBookmark; 482 | fRef = 1D3623250D0F684500981E51 /* UIApplicationAppDelegate.m */; 483 | name = "UIApplicationAppDelegate.m: 1"; 484 | rLen = 0; 485 | rLoc = 0; 486 | rType = 0; 487 | vrLen = 367; 488 | vrLoc = 0; 489 | }; 490 | F9E3CC3811FA56DA00148A8C /* PBXTextBookmark */ = { 491 | isa = PBXTextBookmark; 492 | fRef = F955087D0F82351F00D56733 /* WordNetJPN.m */; 493 | name = "WordNetJPN.m: 103"; 494 | rLen = 34; 495 | rLoc = 2641; 496 | rType = 0; 497 | vrLen = 429; 498 | vrLoc = 113; 499 | }; 500 | F9F7952D0F864DF5008B13E0 /* PBXTextBookmark */ = { 501 | isa = PBXTextBookmark; 502 | fRef = F955087D0F82351F00D56733 /* WordNetJPN.m */; 503 | name = "WordNetJPN.m: 10"; 504 | rLen = 108; 505 | rLoc = 141; 506 | rType = 0; 507 | vrLen = 553; 508 | vrLoc = 0; 509 | }; 510 | } 511 | -------------------------------------------------------------------------------- /UIButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 45; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1D3623260D0F684500981E51 /* UIApplicationAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3623250D0F684500981E51 /* UIApplicationAppDelegate.m */; }; 11 | 1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; }; 12 | 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; 13 | 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; 14 | 2892E4100DC94CBA00A64D0F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2892E40F0DC94CBA00A64D0F /* CoreGraphics.framework */; }; 15 | 2899E5600DE3E45000AC0155 /* RootViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2899E55F0DE3E45000AC0155 /* RootViewController.xib */; }; 16 | 28AD73600D9D9599002E5188 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28AD735F0D9D9599002E5188 /* MainWindow.xib */; }; 17 | 28C286E10D94DF7D0034E888 /* RootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28C286E00D94DF7D0034E888 /* RootViewController.m */; }; 18 | 74FE8F791375668700D0CD47 /* wnjpn.db in Resources */ = {isa = PBXBuildFile; fileRef = 74FE8F781375668700D0CD47 /* wnjpn.db */; }; 19 | F91C8E840E812BF600863463 /* Controll.m in Sources */ = {isa = PBXBuildFile; fileRef = F91C8E830E812BF600863463 /* Controll.m */; }; 20 | F955087E0F82351F00D56733 /* WordNetJPN.m in Sources */ = {isa = PBXBuildFile; fileRef = F955087D0F82351F00D56733 /* WordNetJPN.m */; }; 21 | F987557B0EEA4507007566BD /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = F987557A0EEA4507007566BD /* libsqlite3.dylib */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXFileReference section */ 25 | 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 26 | 1D3623240D0F684500981E51 /* UIApplicationAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIApplicationAppDelegate.h; sourceTree = ""; }; 27 | 1D3623250D0F684500981E51 /* UIApplicationAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIApplicationAppDelegate.m; sourceTree = ""; }; 28 | 1D6058910D05DD3D006BFB54 /* UIApplication.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = UIApplication.app; sourceTree = BUILT_PRODUCTS_DIR; }; 29 | 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 30 | 2892E40F0DC94CBA00A64D0F /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 31 | 2899E55F0DE3E45000AC0155 /* RootViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RootViewController.xib; sourceTree = ""; }; 32 | 28A0AAE50D9B0CCF005BE974 /* UIApplication_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIApplication_Prefix.pch; sourceTree = ""; }; 33 | 28AD735F0D9D9599002E5188 /* MainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MainWindow.xib; sourceTree = ""; }; 34 | 28C286DF0D94DF7D0034E888 /* RootViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RootViewController.h; sourceTree = ""; }; 35 | 28C286E00D94DF7D0034E888 /* RootViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RootViewController.m; sourceTree = ""; }; 36 | 29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 37 | 74FE8F781375668700D0CD47 /* wnjpn.db */ = {isa = PBXFileReference; lastKnownFileType = file; path = wnjpn.db; sourceTree = ""; }; 38 | 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 39 | F91C8E820E812BF600863463 /* Controll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Controll.h; sourceTree = ""; }; 40 | F91C8E830E812BF600863463 /* Controll.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Controll.m; sourceTree = ""; }; 41 | F955087C0F82351F00D56733 /* WordNetJPN.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WordNetJPN.h; sourceTree = ""; }; 42 | F955087D0F82351F00D56733 /* WordNetJPN.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WordNetJPN.m; sourceTree = ""; }; 43 | F987557A0EEA4507007566BD /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; }; 44 | F98755A20EEA469C007566BD /* sqlite3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sqlite3.h; path = usr/include/sqlite3.h; sourceTree = SDKROOT; }; 45 | /* End PBXFileReference section */ 46 | 47 | /* Begin PBXFrameworksBuildPhase section */ 48 | 1D60588F0D05DD3D006BFB54 /* Frameworks */ = { 49 | isa = PBXFrameworksBuildPhase; 50 | buildActionMask = 2147483647; 51 | files = ( 52 | 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */, 53 | 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */, 54 | 2892E4100DC94CBA00A64D0F /* CoreGraphics.framework in Frameworks */, 55 | F987557B0EEA4507007566BD /* libsqlite3.dylib in Frameworks */, 56 | ); 57 | runOnlyForDeploymentPostprocessing = 0; 58 | }; 59 | /* End PBXFrameworksBuildPhase section */ 60 | 61 | /* Begin PBXGroup section */ 62 | 080E96DDFE201D6D7F000001 /* Classes */ = { 63 | isa = PBXGroup; 64 | children = ( 65 | F955087C0F82351F00D56733 /* WordNetJPN.h */, 66 | F955087D0F82351F00D56733 /* WordNetJPN.m */, 67 | F91C8E820E812BF600863463 /* Controll.h */, 68 | F91C8E830E812BF600863463 /* Controll.m */, 69 | 28C286DF0D94DF7D0034E888 /* RootViewController.h */, 70 | 28C286E00D94DF7D0034E888 /* RootViewController.m */, 71 | 1D3623240D0F684500981E51 /* UIApplicationAppDelegate.h */, 72 | 1D3623250D0F684500981E51 /* UIApplicationAppDelegate.m */, 73 | F98755A20EEA469C007566BD /* sqlite3.h */, 74 | ); 75 | path = Classes; 76 | sourceTree = ""; 77 | }; 78 | 19C28FACFE9D520D11CA2CBB /* Products */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | 1D6058910D05DD3D006BFB54 /* UIApplication.app */, 82 | ); 83 | name = Products; 84 | sourceTree = ""; 85 | }; 86 | 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 080E96DDFE201D6D7F000001 /* Classes */, 90 | 29B97315FDCFA39411CA2CEA /* Other Sources */, 91 | 29B97317FDCFA39411CA2CEA /* Resources */, 92 | 29B97323FDCFA39411CA2CEA /* Frameworks */, 93 | 19C28FACFE9D520D11CA2CBB /* Products */, 94 | ); 95 | name = CustomTemplate; 96 | sourceTree = ""; 97 | }; 98 | 29B97315FDCFA39411CA2CEA /* Other Sources */ = { 99 | isa = PBXGroup; 100 | children = ( 101 | 28A0AAE50D9B0CCF005BE974 /* UIApplication_Prefix.pch */, 102 | 29B97316FDCFA39411CA2CEA /* main.m */, 103 | ); 104 | name = "Other Sources"; 105 | sourceTree = ""; 106 | }; 107 | 29B97317FDCFA39411CA2CEA /* Resources */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 74FE8F781375668700D0CD47 /* wnjpn.db */, 111 | 2899E55F0DE3E45000AC0155 /* RootViewController.xib */, 112 | 28AD735F0D9D9599002E5188 /* MainWindow.xib */, 113 | 8D1107310486CEB800E47090 /* Info.plist */, 114 | ); 115 | name = Resources; 116 | sourceTree = ""; 117 | }; 118 | 29B97323FDCFA39411CA2CEA /* Frameworks */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | F987557A0EEA4507007566BD /* libsqlite3.dylib */, 122 | 2892E40F0DC94CBA00A64D0F /* CoreGraphics.framework */, 123 | 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */, 124 | 1D30AB110D05D00D00671497 /* Foundation.framework */, 125 | ); 126 | name = Frameworks; 127 | sourceTree = ""; 128 | }; 129 | /* End PBXGroup section */ 130 | 131 | /* Begin PBXNativeTarget section */ 132 | 1D6058900D05DD3D006BFB54 /* UIApplication */ = { 133 | isa = PBXNativeTarget; 134 | buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "UIApplication" */; 135 | buildPhases = ( 136 | 1D60588D0D05DD3D006BFB54 /* Resources */, 137 | 1D60588E0D05DD3D006BFB54 /* Sources */, 138 | 1D60588F0D05DD3D006BFB54 /* Frameworks */, 139 | ); 140 | buildRules = ( 141 | ); 142 | dependencies = ( 143 | ); 144 | name = UIApplication; 145 | productName = UIApplication; 146 | productReference = 1D6058910D05DD3D006BFB54 /* UIApplication.app */; 147 | productType = "com.apple.product-type.application"; 148 | }; 149 | /* End PBXNativeTarget section */ 150 | 151 | /* Begin PBXProject section */ 152 | 29B97313FDCFA39411CA2CEA /* Project object */ = { 153 | isa = PBXProject; 154 | buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "UIButton" */; 155 | compatibilityVersion = "Xcode 3.1"; 156 | developmentRegion = English; 157 | hasScannedForEncodings = 1; 158 | knownRegions = ( 159 | English, 160 | Japanese, 161 | French, 162 | German, 163 | en, 164 | ); 165 | mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */; 166 | projectDirPath = ""; 167 | projectRoot = ""; 168 | targets = ( 169 | 1D6058900D05DD3D006BFB54 /* UIApplication */, 170 | ); 171 | }; 172 | /* End PBXProject section */ 173 | 174 | /* Begin PBXResourcesBuildPhase section */ 175 | 1D60588D0D05DD3D006BFB54 /* Resources */ = { 176 | isa = PBXResourcesBuildPhase; 177 | buildActionMask = 2147483647; 178 | files = ( 179 | 28AD73600D9D9599002E5188 /* MainWindow.xib in Resources */, 180 | 2899E5600DE3E45000AC0155 /* RootViewController.xib in Resources */, 181 | 74FE8F791375668700D0CD47 /* wnjpn.db in Resources */, 182 | ); 183 | runOnlyForDeploymentPostprocessing = 0; 184 | }; 185 | /* End PBXResourcesBuildPhase section */ 186 | 187 | /* Begin PBXSourcesBuildPhase section */ 188 | 1D60588E0D05DD3D006BFB54 /* Sources */ = { 189 | isa = PBXSourcesBuildPhase; 190 | buildActionMask = 2147483647; 191 | files = ( 192 | 1D60589B0D05DD56006BFB54 /* main.m in Sources */, 193 | 1D3623260D0F684500981E51 /* UIApplicationAppDelegate.m in Sources */, 194 | 28C286E10D94DF7D0034E888 /* RootViewController.m in Sources */, 195 | F91C8E840E812BF600863463 /* Controll.m in Sources */, 196 | F955087E0F82351F00D56733 /* WordNetJPN.m in Sources */, 197 | ); 198 | runOnlyForDeploymentPostprocessing = 0; 199 | }; 200 | /* End PBXSourcesBuildPhase section */ 201 | 202 | /* Begin XCBuildConfiguration section */ 203 | 1D6058940D05DD3E006BFB54 /* Debug */ = { 204 | isa = XCBuildConfiguration; 205 | buildSettings = { 206 | ALWAYS_SEARCH_USER_PATHS = NO; 207 | COPY_PHASE_STRIP = NO; 208 | GCC_DYNAMIC_NO_PIC = NO; 209 | GCC_OPTIMIZATION_LEVEL = 0; 210 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 211 | GCC_PREFIX_HEADER = UIApplication_Prefix.pch; 212 | INFOPLIST_FILE = Info.plist; 213 | IPHONEOS_DEPLOYMENT_TARGET = 2.2.1; 214 | PRODUCT_NAME = UIApplication; 215 | SDKROOT = iphoneos; 216 | }; 217 | name = Debug; 218 | }; 219 | 1D6058950D05DD3E006BFB54 /* Release */ = { 220 | isa = XCBuildConfiguration; 221 | buildSettings = { 222 | ALWAYS_SEARCH_USER_PATHS = NO; 223 | COPY_PHASE_STRIP = YES; 224 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 225 | GCC_PREFIX_HEADER = UIApplication_Prefix.pch; 226 | INFOPLIST_FILE = Info.plist; 227 | PRODUCT_NAME = UIApplication; 228 | SDKROOT = iphoneos; 229 | }; 230 | name = Release; 231 | }; 232 | C01FCF4F08A954540054247B /* Debug */ = { 233 | isa = XCBuildConfiguration; 234 | buildSettings = { 235 | ARCHS = "$(ARCHS_STANDARD_32_BIT)"; 236 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 237 | GCC_C_LANGUAGE_STANDARD = c99; 238 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 239 | GCC_WARN_UNUSED_VARIABLE = YES; 240 | ONLY_ACTIVE_ARCH = YES; 241 | PREBINDING = NO; 242 | SDKROOT = iphoneos; 243 | }; 244 | name = Debug; 245 | }; 246 | C01FCF5008A954540054247B /* Release */ = { 247 | isa = XCBuildConfiguration; 248 | buildSettings = { 249 | ARCHS = "$(ARCHS_STANDARD_32_BIT)"; 250 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 251 | GCC_C_LANGUAGE_STANDARD = c99; 252 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 253 | GCC_WARN_UNUSED_VARIABLE = YES; 254 | PREBINDING = NO; 255 | SDKROOT = iphoneos; 256 | }; 257 | name = Release; 258 | }; 259 | /* End XCBuildConfiguration section */ 260 | 261 | /* Begin XCConfigurationList section */ 262 | 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "UIApplication" */ = { 263 | isa = XCConfigurationList; 264 | buildConfigurations = ( 265 | 1D6058940D05DD3E006BFB54 /* Debug */, 266 | 1D6058950D05DD3E006BFB54 /* Release */, 267 | ); 268 | defaultConfigurationIsVisible = 0; 269 | defaultConfigurationName = Release; 270 | }; 271 | C01FCF4E08A954540054247B /* Build configuration list for PBXProject "UIButton" */ = { 272 | isa = XCConfigurationList; 273 | buildConfigurations = ( 274 | C01FCF4F08A954540054247B /* Debug */, 275 | C01FCF5008A954540054247B /* Release */, 276 | ); 277 | defaultConfigurationIsVisible = 0; 278 | defaultConfigurationName = Release; 279 | }; 280 | /* End XCConfigurationList section */ 281 | }; 282 | rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; 283 | } 284 | -------------------------------------------------------------------------------- /UIButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /UIButton.xcodeproj/satoshi.mode1v3: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ActivePerspectiveName 6 | Project 7 | AllowedModules 8 | 9 | 10 | BundleLoadPath 11 | 12 | MaxInstances 13 | n 14 | Module 15 | PBXSmartGroupTreeModule 16 | Name 17 | Groups and Files Outline View 18 | 19 | 20 | BundleLoadPath 21 | 22 | MaxInstances 23 | n 24 | Module 25 | PBXNavigatorGroup 26 | Name 27 | Editor 28 | 29 | 30 | BundleLoadPath 31 | 32 | MaxInstances 33 | n 34 | Module 35 | XCTaskListModule 36 | Name 37 | Task List 38 | 39 | 40 | BundleLoadPath 41 | 42 | MaxInstances 43 | n 44 | Module 45 | XCDetailModule 46 | Name 47 | File and Smart Group Detail Viewer 48 | 49 | 50 | BundleLoadPath 51 | 52 | MaxInstances 53 | 1 54 | Module 55 | PBXBuildResultsModule 56 | Name 57 | Detailed Build Results Viewer 58 | 59 | 60 | BundleLoadPath 61 | 62 | MaxInstances 63 | 1 64 | Module 65 | PBXProjectFindModule 66 | Name 67 | Project Batch Find Tool 68 | 69 | 70 | BundleLoadPath 71 | 72 | MaxInstances 73 | n 74 | Module 75 | XCProjectFormatConflictsModule 76 | Name 77 | Project Format Conflicts List 78 | 79 | 80 | BundleLoadPath 81 | 82 | MaxInstances 83 | n 84 | Module 85 | PBXBookmarksModule 86 | Name 87 | Bookmarks Tool 88 | 89 | 90 | BundleLoadPath 91 | 92 | MaxInstances 93 | n 94 | Module 95 | PBXClassBrowserModule 96 | Name 97 | Class Browser 98 | 99 | 100 | BundleLoadPath 101 | 102 | MaxInstances 103 | n 104 | Module 105 | PBXCVSModule 106 | Name 107 | Source Code Control Tool 108 | 109 | 110 | BundleLoadPath 111 | 112 | MaxInstances 113 | n 114 | Module 115 | PBXDebugBreakpointsModule 116 | Name 117 | Debug Breakpoints Tool 118 | 119 | 120 | BundleLoadPath 121 | 122 | MaxInstances 123 | n 124 | Module 125 | XCDockableInspector 126 | Name 127 | Inspector 128 | 129 | 130 | BundleLoadPath 131 | 132 | MaxInstances 133 | n 134 | Module 135 | PBXOpenQuicklyModule 136 | Name 137 | Open Quickly Tool 138 | 139 | 140 | BundleLoadPath 141 | 142 | MaxInstances 143 | 1 144 | Module 145 | PBXDebugSessionModule 146 | Name 147 | Debugger 148 | 149 | 150 | BundleLoadPath 151 | 152 | MaxInstances 153 | 1 154 | Module 155 | PBXDebugCLIModule 156 | Name 157 | Debug Console 158 | 159 | 160 | BundleLoadPath 161 | 162 | MaxInstances 163 | n 164 | Module 165 | XCSnapshotModule 166 | Name 167 | Snapshots Tool 168 | 169 | 170 | BundlePath 171 | /Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources 172 | Description 173 | DefaultDescriptionKey 174 | DockingSystemVisible 175 | 176 | Extension 177 | mode1v3 178 | FavBarConfig 179 | 180 | PBXProjectModuleGUID 181 | 74197D5E11FA5881007C4C02 182 | XCBarModuleItemNames 183 | 184 | XCBarModuleItems 185 | 186 | 187 | FirstTimeWindowDisplayed 188 | 189 | Identifier 190 | com.apple.perspectives.project.mode1v3 191 | MajorVersion 192 | 33 193 | MinorVersion 194 | 0 195 | Name 196 | Default 197 | Notifications 198 | 199 | OpenEditors 200 | 201 | PerspectiveWidths 202 | 203 | -1 204 | -1 205 | 206 | Perspectives 207 | 208 | 209 | ChosenToolbarItems 210 | 211 | active-combo-popup 212 | action 213 | NSToolbarFlexibleSpaceItem 214 | debugger-enable-breakpoints 215 | clean 216 | build-and-go 217 | com.apple.ide.PBXToolbarStopButton 218 | get-info 219 | NSToolbarFlexibleSpaceItem 220 | com.apple.pbx.toolbar.searchfield 221 | 222 | ControllerClassBaseName 223 | 224 | IconName 225 | WindowOfProjectWithEditor 226 | Identifier 227 | perspective.project 228 | IsVertical 229 | 230 | Layout 231 | 232 | 233 | ContentConfiguration 234 | 235 | PBXBottomSmartGroupGIDs 236 | 237 | 1C37FBAC04509CD000000102 238 | 1C37FAAC04509CD000000102 239 | 1C37FABC05509CD000000102 240 | 1C37FABC05539CD112110102 241 | E2644B35053B69B200211256 242 | 1C37FABC04509CD000100104 243 | 1CC0EA4004350EF90044410B 244 | 1CC0EA4004350EF90041110B 245 | 246 | PBXProjectModuleGUID 247 | 1CE0B1FE06471DED0097A5F4 248 | PBXProjectModuleLabel 249 | Files 250 | PBXProjectStructureProvided 251 | yes 252 | PBXSmartGroupTreeModuleColumnData 253 | 254 | PBXSmartGroupTreeModuleColumnWidthsKey 255 | 256 | 186 257 | 258 | PBXSmartGroupTreeModuleColumnsKey_v4 259 | 260 | MainColumn 261 | 262 | 263 | PBXSmartGroupTreeModuleOutlineStateKey_v7 264 | 265 | PBXSmartGroupTreeModuleOutlineStateExpansionKey 266 | 267 | 29B97314FDCFA39411CA2CEA 268 | 080E96DDFE201D6D7F000001 269 | 29B97315FDCFA39411CA2CEA 270 | 1C37FBAC04509CD000000102 271 | 1C37FABC05509CD000000102 272 | 273 | PBXSmartGroupTreeModuleOutlineStateSelectionKey 274 | 275 | 276 | 5 277 | 1 278 | 0 279 | 280 | 281 | PBXSmartGroupTreeModuleOutlineStateVisibleRectKey 282 | {{0, 0}, {186, 580}} 283 | 284 | PBXTopSmartGroupGIDs 285 | 286 | XCIncludePerspectivesSwitch 287 | 288 | XCSharingToken 289 | com.apple.Xcode.GFSharingToken 290 | 291 | GeometryConfiguration 292 | 293 | Frame 294 | {{0, 0}, {203, 598}} 295 | GroupTreeTableConfiguration 296 | 297 | MainColumn 298 | 186 299 | 300 | RubberWindowFrame 301 | 414 80 794 639 0 0 1280 778 302 | 303 | Module 304 | PBXSmartGroupTreeModule 305 | Proportion 306 | 203pt 307 | 308 | 309 | Dock 310 | 311 | 312 | BecomeActive 313 | 314 | ContentConfiguration 315 | 316 | PBXProjectModuleGUID 317 | 1CE0B20306471E060097A5F4 318 | PBXProjectModuleLabel 319 | Controll.m 320 | PBXSplitModuleInNavigatorKey 321 | 322 | Split0 323 | 324 | PBXProjectModuleGUID 325 | 1CE0B20406471E060097A5F4 326 | PBXProjectModuleLabel 327 | Controll.m 328 | _historyCapacity 329 | 0 330 | bookmark 331 | 7408FF9D127BD7C5002570AB 332 | history 333 | 334 | 7408FF9A127BD7C5002570AB 335 | 7408FF9B127BD7C5002570AB 336 | 7408FF9C127BD7C5002570AB 337 | 338 | 339 | SplitCount 340 | 1 341 | 342 | StatusBarVisibility 343 | 344 | 345 | GeometryConfiguration 346 | 347 | Frame 348 | {{0, 0}, {586, 586}} 349 | RubberWindowFrame 350 | 414 80 794 639 0 0 1280 778 351 | 352 | Module 353 | PBXNavigatorGroup 354 | Proportion 355 | 586pt 356 | 357 | 358 | ContentConfiguration 359 | 360 | PBXProjectModuleGUID 361 | 1CE0B20506471E060097A5F4 362 | PBXProjectModuleLabel 363 | 詳細 364 | 365 | GeometryConfiguration 366 | 367 | Frame 368 | {{0, 591}, {586, 7}} 369 | RubberWindowFrame 370 | 414 80 794 639 0 0 1280 778 371 | 372 | Module 373 | XCDetailModule 374 | Proportion 375 | 7pt 376 | 377 | 378 | Proportion 379 | 586pt 380 | 381 | 382 | Name 383 | Project 384 | ServiceClasses 385 | 386 | XCModuleDock 387 | PBXSmartGroupTreeModule 388 | XCModuleDock 389 | PBXNavigatorGroup 390 | XCDetailModule 391 | 392 | TableOfContents 393 | 394 | 7408FF88127BD6D0002570AB 395 | 1CE0B1FE06471DED0097A5F4 396 | 7408FF89127BD6D0002570AB 397 | 1CE0B20306471E060097A5F4 398 | 1CE0B20506471E060097A5F4 399 | 400 | ToolbarConfigUserDefaultsMinorVersion 401 | 2 402 | ToolbarConfiguration 403 | xcode.toolbar.config.defaultV3 404 | 405 | 406 | ControllerClassBaseName 407 | 408 | IconName 409 | WindowOfProject 410 | Identifier 411 | perspective.morph 412 | IsVertical 413 | 0 414 | Layout 415 | 416 | 417 | BecomeActive 418 | 1 419 | ContentConfiguration 420 | 421 | PBXBottomSmartGroupGIDs 422 | 423 | 1C37FBAC04509CD000000102 424 | 1C37FAAC04509CD000000102 425 | 1C08E77C0454961000C914BD 426 | 1C37FABC05509CD000000102 427 | 1C37FABC05539CD112110102 428 | E2644B35053B69B200211256 429 | 1C37FABC04509CD000100104 430 | 1CC0EA4004350EF90044410B 431 | 1CC0EA4004350EF90041110B 432 | 433 | PBXProjectModuleGUID 434 | 11E0B1FE06471DED0097A5F4 435 | PBXProjectModuleLabel 436 | Files 437 | PBXProjectStructureProvided 438 | yes 439 | PBXSmartGroupTreeModuleColumnData 440 | 441 | PBXSmartGroupTreeModuleColumnWidthsKey 442 | 443 | 186 444 | 445 | PBXSmartGroupTreeModuleColumnsKey_v4 446 | 447 | MainColumn 448 | 449 | 450 | PBXSmartGroupTreeModuleOutlineStateKey_v7 451 | 452 | PBXSmartGroupTreeModuleOutlineStateExpansionKey 453 | 454 | 29B97314FDCFA39411CA2CEA 455 | 1C37FABC05509CD000000102 456 | 457 | PBXSmartGroupTreeModuleOutlineStateSelectionKey 458 | 459 | 460 | 0 461 | 462 | 463 | PBXSmartGroupTreeModuleOutlineStateVisibleRectKey 464 | {{0, 0}, {186, 337}} 465 | 466 | PBXTopSmartGroupGIDs 467 | 468 | XCIncludePerspectivesSwitch 469 | 1 470 | XCSharingToken 471 | com.apple.Xcode.GFSharingToken 472 | 473 | GeometryConfiguration 474 | 475 | Frame 476 | {{0, 0}, {203, 355}} 477 | GroupTreeTableConfiguration 478 | 479 | MainColumn 480 | 186 481 | 482 | RubberWindowFrame 483 | 373 269 690 397 0 0 1440 878 484 | 485 | Module 486 | PBXSmartGroupTreeModule 487 | Proportion 488 | 100% 489 | 490 | 491 | Name 492 | Morph 493 | PreferredWidth 494 | 300 495 | ServiceClasses 496 | 497 | XCModuleDock 498 | PBXSmartGroupTreeModule 499 | 500 | TableOfContents 501 | 502 | 11E0B1FE06471DED0097A5F4 503 | 504 | ToolbarConfiguration 505 | xcode.toolbar.config.default.shortV3 506 | 507 | 508 | PerspectivesBarVisible 509 | 510 | ShelfIsVisible 511 | 512 | SourceDescription 513 | file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecificationMode1.xcperspec' 514 | StatusbarIsVisible 515 | 516 | TimeStamp 517 | 0.0 518 | ToolbarConfigUserDefaultsMinorVersion 519 | 2 520 | ToolbarDisplayMode 521 | 2 522 | ToolbarIsVisible 523 | 524 | ToolbarSizeMode 525 | 2 526 | Type 527 | Perspectives 528 | UpdateMessage 529 | The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'? 530 | WindowJustification 531 | 5 532 | WindowOrderList 533 | 534 | 1CD10A99069EF8BA00B06720 535 | 74197D5F11FA5881007C4C02 536 | 1C78EAAD065D492600B07095 537 | /Users/satoshi/Documents/勉強中/WordNetJP/UIButton.xcodeproj 538 | 539 | WindowString 540 | 414 80 794 639 0 0 1280 778 541 | WindowToolsV3 542 | 543 | 544 | FirstTimeWindowDisplayed 545 | 546 | Identifier 547 | windowTool.build 548 | IsVertical 549 | 550 | Layout 551 | 552 | 553 | Dock 554 | 555 | 556 | ContentConfiguration 557 | 558 | PBXProjectModuleGUID 559 | 1CD0528F0623707200166675 560 | PBXProjectModuleLabel 561 | 562 | StatusBarVisibility 563 | 564 | 565 | GeometryConfiguration 566 | 567 | Frame 568 | {{0, 0}, {500, 218}} 569 | RubberWindowFrame 570 | 435 196 500 500 0 0 1280 778 571 | 572 | Module 573 | PBXNavigatorGroup 574 | Proportion 575 | 218pt 576 | 577 | 578 | ContentConfiguration 579 | 580 | PBXProjectModuleGUID 581 | XCMainBuildResultsModuleGUID 582 | PBXProjectModuleLabel 583 | ビルド結果 584 | XCBuildResultsTrigger_Collapse 585 | 1021 586 | XCBuildResultsTrigger_Open 587 | 1011 588 | 589 | GeometryConfiguration 590 | 591 | Frame 592 | {{0, 223}, {500, 236}} 593 | RubberWindowFrame 594 | 435 196 500 500 0 0 1280 778 595 | 596 | Module 597 | PBXBuildResultsModule 598 | Proportion 599 | 236pt 600 | 601 | 602 | Proportion 603 | 459pt 604 | 605 | 606 | Name 607 | Build Results 608 | ServiceClasses 609 | 610 | PBXBuildResultsModule 611 | 612 | StatusbarIsVisible 613 | 614 | TableOfContents 615 | 616 | 74197D5F11FA5881007C4C02 617 | 7408FF8A127BD6D0002570AB 618 | 1CD0528F0623707200166675 619 | XCMainBuildResultsModuleGUID 620 | 621 | ToolbarConfiguration 622 | xcode.toolbar.config.buildV3 623 | WindowContentMinSize 624 | 486 300 625 | WindowString 626 | 435 196 500 500 0 0 1280 778 627 | WindowToolGUID 628 | 74197D5F11FA5881007C4C02 629 | WindowToolIsVisible 630 | 631 | 632 | 633 | FirstTimeWindowDisplayed 634 | 635 | Identifier 636 | windowTool.debugger 637 | IsVertical 638 | 639 | Layout 640 | 641 | 642 | Dock 643 | 644 | 645 | ContentConfiguration 646 | 647 | Debugger 648 | 649 | HorizontalSplitView 650 | 651 | _collapsingFrameDimension 652 | 0.0 653 | _indexOfCollapsedView 654 | 0 655 | _percentageOfCollapsedView 656 | 0.0 657 | isCollapsed 658 | yes 659 | sizes 660 | 661 | {{0, 0}, {316, 198}} 662 | {{316, 0}, {378, 198}} 663 | 664 | 665 | VerticalSplitView 666 | 667 | _collapsingFrameDimension 668 | 0.0 669 | _indexOfCollapsedView 670 | 0 671 | _percentageOfCollapsedView 672 | 0.0 673 | isCollapsed 674 | yes 675 | sizes 676 | 677 | {{0, 0}, {694, 198}} 678 | {{0, 198}, {694, 183}} 679 | 680 | 681 | 682 | LauncherConfigVersion 683 | 8 684 | PBXProjectModuleGUID 685 | 1C162984064C10D400B95A72 686 | PBXProjectModuleLabel 687 | Debug - GLUTExamples (Underwater) 688 | 689 | GeometryConfiguration 690 | 691 | DebugConsoleVisible 692 | None 693 | DebugConsoleWindowFrame 694 | {{200, 200}, {500, 300}} 695 | DebugSTDIOWindowFrame 696 | {{200, 200}, {500, 300}} 697 | Frame 698 | {{0, 0}, {694, 381}} 699 | PBXDebugSessionStackFrameViewKey 700 | 701 | DebugVariablesTableConfiguration 702 | 703 | Name 704 | 120 705 | Value 706 | 85 707 | Summary 708 | 148 709 | 710 | Frame 711 | {{316, 0}, {378, 198}} 712 | RubberWindowFrame 713 | 435 274 694 422 0 0 1280 778 714 | 715 | RubberWindowFrame 716 | 435 274 694 422 0 0 1280 778 717 | 718 | Module 719 | PBXDebugSessionModule 720 | Proportion 721 | 381pt 722 | 723 | 724 | Proportion 725 | 381pt 726 | 727 | 728 | Name 729 | Debugger 730 | ServiceClasses 731 | 732 | PBXDebugSessionModule 733 | 734 | StatusbarIsVisible 735 | 736 | TableOfContents 737 | 738 | 1CD10A99069EF8BA00B06720 739 | 7408FF8B127BD6D0002570AB 740 | 1C162984064C10D400B95A72 741 | 7408FF8C127BD6D0002570AB 742 | 7408FF8D127BD6D0002570AB 743 | 7408FF8E127BD6D0002570AB 744 | 7408FF8F127BD6D0002570AB 745 | 7408FF90127BD6D0002570AB 746 | 747 | ToolbarConfiguration 748 | xcode.toolbar.config.debugV3 749 | WindowString 750 | 435 274 694 422 0 0 1280 778 751 | WindowToolGUID 752 | 1CD10A99069EF8BA00B06720 753 | WindowToolIsVisible 754 | 755 | 756 | 757 | Identifier 758 | windowTool.find 759 | Layout 760 | 761 | 762 | Dock 763 | 764 | 765 | Dock 766 | 767 | 768 | ContentConfiguration 769 | 770 | PBXProjectModuleGUID 771 | 1CDD528C0622207200134675 772 | PBXProjectModuleLabel 773 | <No Editor> 774 | PBXSplitModuleInNavigatorKey 775 | 776 | Split0 777 | 778 | PBXProjectModuleGUID 779 | 1CD0528D0623707200166675 780 | 781 | SplitCount 782 | 1 783 | 784 | StatusBarVisibility 785 | 1 786 | 787 | GeometryConfiguration 788 | 789 | Frame 790 | {{0, 0}, {781, 167}} 791 | RubberWindowFrame 792 | 62 385 781 470 0 0 1440 878 793 | 794 | Module 795 | PBXNavigatorGroup 796 | Proportion 797 | 781pt 798 | 799 | 800 | Proportion 801 | 50% 802 | 803 | 804 | BecomeActive 805 | 1 806 | ContentConfiguration 807 | 808 | PBXProjectModuleGUID 809 | 1CD0528E0623707200166675 810 | PBXProjectModuleLabel 811 | Project Find 812 | 813 | GeometryConfiguration 814 | 815 | Frame 816 | {{8, 0}, {773, 254}} 817 | RubberWindowFrame 818 | 62 385 781 470 0 0 1440 878 819 | 820 | Module 821 | PBXProjectFindModule 822 | Proportion 823 | 50% 824 | 825 | 826 | Proportion 827 | 428pt 828 | 829 | 830 | Name 831 | Project Find 832 | ServiceClasses 833 | 834 | PBXProjectFindModule 835 | 836 | StatusbarIsVisible 837 | 1 838 | TableOfContents 839 | 840 | 1C530D57069F1CE1000CFCEE 841 | 1C530D58069F1CE1000CFCEE 842 | 1C530D59069F1CE1000CFCEE 843 | 1CDD528C0622207200134675 844 | 1C530D5A069F1CE1000CFCEE 845 | 1CE0B1FE06471DED0097A5F4 846 | 1CD0528E0623707200166675 847 | 848 | WindowString 849 | 62 385 781 470 0 0 1440 878 850 | WindowToolGUID 851 | 1C530D57069F1CE1000CFCEE 852 | WindowToolIsVisible 853 | 0 854 | 855 | 856 | Identifier 857 | MENUSEPARATOR 858 | 859 | 860 | FirstTimeWindowDisplayed 861 | 862 | Identifier 863 | windowTool.debuggerConsole 864 | IsVertical 865 | 866 | Layout 867 | 868 | 869 | Dock 870 | 871 | 872 | BecomeActive 873 | 874 | ContentConfiguration 875 | 876 | PBXProjectModuleGUID 877 | 1C78EAAC065D492600B07095 878 | PBXProjectModuleLabel 879 | Debugger Console 880 | 881 | GeometryConfiguration 882 | 883 | Frame 884 | {{0, 0}, {688, 599}} 885 | RubberWindowFrame 886 | 435 56 688 640 0 0 1280 778 887 | 888 | Module 889 | PBXDebugCLIModule 890 | Proportion 891 | 599pt 892 | 893 | 894 | Proportion 895 | 599pt 896 | 897 | 898 | Name 899 | Debugger Console 900 | ServiceClasses 901 | 902 | PBXDebugCLIModule 903 | 904 | StatusbarIsVisible 905 | 906 | TableOfContents 907 | 908 | 1C78EAAD065D492600B07095 909 | 7408FF91127BD6D0002570AB 910 | 1C78EAAC065D492600B07095 911 | 912 | ToolbarConfiguration 913 | xcode.toolbar.config.consoleV3 914 | WindowString 915 | 435 56 688 640 0 0 1280 778 916 | WindowToolGUID 917 | 1C78EAAD065D492600B07095 918 | WindowToolIsVisible 919 | 920 | 921 | 922 | Identifier 923 | windowTool.snapshots 924 | Layout 925 | 926 | 927 | Dock 928 | 929 | 930 | Module 931 | XCSnapshotModule 932 | Proportion 933 | 100% 934 | 935 | 936 | Proportion 937 | 100% 938 | 939 | 940 | Name 941 | Snapshots 942 | ServiceClasses 943 | 944 | XCSnapshotModule 945 | 946 | StatusbarIsVisible 947 | Yes 948 | ToolbarConfiguration 949 | xcode.toolbar.config.snapshots 950 | WindowString 951 | 315 824 300 550 0 0 1440 878 952 | WindowToolIsVisible 953 | Yes 954 | 955 | 956 | Identifier 957 | windowTool.scm 958 | Layout 959 | 960 | 961 | Dock 962 | 963 | 964 | ContentConfiguration 965 | 966 | PBXProjectModuleGUID 967 | 1C78EAB2065D492600B07095 968 | PBXProjectModuleLabel 969 | <No Editor> 970 | PBXSplitModuleInNavigatorKey 971 | 972 | Split0 973 | 974 | PBXProjectModuleGUID 975 | 1C78EAB3065D492600B07095 976 | 977 | SplitCount 978 | 1 979 | 980 | StatusBarVisibility 981 | 1 982 | 983 | GeometryConfiguration 984 | 985 | Frame 986 | {{0, 0}, {452, 0}} 987 | RubberWindowFrame 988 | 743 379 452 308 0 0 1280 1002 989 | 990 | Module 991 | PBXNavigatorGroup 992 | Proportion 993 | 0pt 994 | 995 | 996 | BecomeActive 997 | 1 998 | ContentConfiguration 999 | 1000 | PBXProjectModuleGUID 1001 | 1CD052920623707200166675 1002 | PBXProjectModuleLabel 1003 | SCM 1004 | 1005 | GeometryConfiguration 1006 | 1007 | ConsoleFrame 1008 | {{0, 259}, {452, 0}} 1009 | Frame 1010 | {{0, 7}, {452, 259}} 1011 | RubberWindowFrame 1012 | 743 379 452 308 0 0 1280 1002 1013 | TableConfiguration 1014 | 1015 | Status 1016 | 30 1017 | FileName 1018 | 199 1019 | Path 1020 | 197.0950012207031 1021 | 1022 | TableFrame 1023 | {{0, 0}, {452, 250}} 1024 | 1025 | Module 1026 | PBXCVSModule 1027 | Proportion 1028 | 262pt 1029 | 1030 | 1031 | Proportion 1032 | 266pt 1033 | 1034 | 1035 | Name 1036 | SCM 1037 | ServiceClasses 1038 | 1039 | PBXCVSModule 1040 | 1041 | StatusbarIsVisible 1042 | 1 1043 | TableOfContents 1044 | 1045 | 1C78EAB4065D492600B07095 1046 | 1C78EAB5065D492600B07095 1047 | 1C78EAB2065D492600B07095 1048 | 1CD052920623707200166675 1049 | 1050 | ToolbarConfiguration 1051 | xcode.toolbar.config.scm 1052 | WindowString 1053 | 743 379 452 308 0 0 1280 1002 1054 | 1055 | 1056 | Identifier 1057 | windowTool.breakpoints 1058 | IsVertical 1059 | 0 1060 | Layout 1061 | 1062 | 1063 | Dock 1064 | 1065 | 1066 | BecomeActive 1067 | 1 1068 | ContentConfiguration 1069 | 1070 | PBXBottomSmartGroupGIDs 1071 | 1072 | 1C77FABC04509CD000000102 1073 | 1074 | PBXProjectModuleGUID 1075 | 1CE0B1FE06471DED0097A5F4 1076 | PBXProjectModuleLabel 1077 | Files 1078 | PBXProjectStructureProvided 1079 | no 1080 | PBXSmartGroupTreeModuleColumnData 1081 | 1082 | PBXSmartGroupTreeModuleColumnWidthsKey 1083 | 1084 | 168 1085 | 1086 | PBXSmartGroupTreeModuleColumnsKey_v4 1087 | 1088 | MainColumn 1089 | 1090 | 1091 | PBXSmartGroupTreeModuleOutlineStateKey_v7 1092 | 1093 | PBXSmartGroupTreeModuleOutlineStateExpansionKey 1094 | 1095 | 1C77FABC04509CD000000102 1096 | 1097 | PBXSmartGroupTreeModuleOutlineStateSelectionKey 1098 | 1099 | 1100 | 0 1101 | 1102 | 1103 | PBXSmartGroupTreeModuleOutlineStateVisibleRectKey 1104 | {{0, 0}, {168, 350}} 1105 | 1106 | PBXTopSmartGroupGIDs 1107 | 1108 | XCIncludePerspectivesSwitch 1109 | 0 1110 | 1111 | GeometryConfiguration 1112 | 1113 | Frame 1114 | {{0, 0}, {185, 368}} 1115 | GroupTreeTableConfiguration 1116 | 1117 | MainColumn 1118 | 168 1119 | 1120 | RubberWindowFrame 1121 | 315 424 744 409 0 0 1440 878 1122 | 1123 | Module 1124 | PBXSmartGroupTreeModule 1125 | Proportion 1126 | 185pt 1127 | 1128 | 1129 | ContentConfiguration 1130 | 1131 | PBXProjectModuleGUID 1132 | 1CA1AED706398EBD00589147 1133 | PBXProjectModuleLabel 1134 | Detail 1135 | 1136 | GeometryConfiguration 1137 | 1138 | Frame 1139 | {{190, 0}, {554, 368}} 1140 | RubberWindowFrame 1141 | 315 424 744 409 0 0 1440 878 1142 | 1143 | Module 1144 | XCDetailModule 1145 | Proportion 1146 | 554pt 1147 | 1148 | 1149 | Proportion 1150 | 368pt 1151 | 1152 | 1153 | MajorVersion 1154 | 3 1155 | MinorVersion 1156 | 0 1157 | Name 1158 | Breakpoints 1159 | ServiceClasses 1160 | 1161 | PBXSmartGroupTreeModule 1162 | XCDetailModule 1163 | 1164 | StatusbarIsVisible 1165 | 1 1166 | TableOfContents 1167 | 1168 | 1CDDB66807F98D9800BB5817 1169 | 1CDDB66907F98D9800BB5817 1170 | 1CE0B1FE06471DED0097A5F4 1171 | 1CA1AED706398EBD00589147 1172 | 1173 | ToolbarConfiguration 1174 | xcode.toolbar.config.breakpointsV3 1175 | WindowString 1176 | 315 424 744 409 0 0 1440 878 1177 | WindowToolGUID 1178 | 1CDDB66807F98D9800BB5817 1179 | WindowToolIsVisible 1180 | 1 1181 | 1182 | 1183 | Identifier 1184 | windowTool.debugAnimator 1185 | Layout 1186 | 1187 | 1188 | Dock 1189 | 1190 | 1191 | Module 1192 | PBXNavigatorGroup 1193 | Proportion 1194 | 100% 1195 | 1196 | 1197 | Proportion 1198 | 100% 1199 | 1200 | 1201 | Name 1202 | Debug Visualizer 1203 | ServiceClasses 1204 | 1205 | PBXNavigatorGroup 1206 | 1207 | StatusbarIsVisible 1208 | 1 1209 | ToolbarConfiguration 1210 | xcode.toolbar.config.debugAnimatorV3 1211 | WindowString 1212 | 100 100 700 500 0 0 1280 1002 1213 | 1214 | 1215 | Identifier 1216 | windowTool.bookmarks 1217 | Layout 1218 | 1219 | 1220 | Dock 1221 | 1222 | 1223 | Module 1224 | PBXBookmarksModule 1225 | Proportion 1226 | 100% 1227 | 1228 | 1229 | Proportion 1230 | 100% 1231 | 1232 | 1233 | Name 1234 | Bookmarks 1235 | ServiceClasses 1236 | 1237 | PBXBookmarksModule 1238 | 1239 | StatusbarIsVisible 1240 | 0 1241 | WindowString 1242 | 538 42 401 187 0 0 1280 1002 1243 | 1244 | 1245 | Identifier 1246 | windowTool.projectFormatConflicts 1247 | Layout 1248 | 1249 | 1250 | Dock 1251 | 1252 | 1253 | Module 1254 | XCProjectFormatConflictsModule 1255 | Proportion 1256 | 100% 1257 | 1258 | 1259 | Proportion 1260 | 100% 1261 | 1262 | 1263 | Name 1264 | Project Format Conflicts 1265 | ServiceClasses 1266 | 1267 | XCProjectFormatConflictsModule 1268 | 1269 | StatusbarIsVisible 1270 | 0 1271 | WindowContentMinSize 1272 | 450 300 1273 | WindowString 1274 | 50 850 472 307 0 0 1440 877 1275 | 1276 | 1277 | Identifier 1278 | windowTool.classBrowser 1279 | Layout 1280 | 1281 | 1282 | Dock 1283 | 1284 | 1285 | BecomeActive 1286 | 1 1287 | ContentConfiguration 1288 | 1289 | OptionsSetName 1290 | Hierarchy, all classes 1291 | PBXProjectModuleGUID 1292 | 1CA6456E063B45B4001379D8 1293 | PBXProjectModuleLabel 1294 | Class Browser - NSObject 1295 | 1296 | GeometryConfiguration 1297 | 1298 | ClassesFrame 1299 | {{0, 0}, {374, 96}} 1300 | ClassesTreeTableConfiguration 1301 | 1302 | PBXClassNameColumnIdentifier 1303 | 208 1304 | PBXClassBookColumnIdentifier 1305 | 22 1306 | 1307 | Frame 1308 | {{0, 0}, {630, 331}} 1309 | MembersFrame 1310 | {{0, 105}, {374, 395}} 1311 | MembersTreeTableConfiguration 1312 | 1313 | PBXMemberTypeIconColumnIdentifier 1314 | 22 1315 | PBXMemberNameColumnIdentifier 1316 | 216 1317 | PBXMemberTypeColumnIdentifier 1318 | 97 1319 | PBXMemberBookColumnIdentifier 1320 | 22 1321 | 1322 | PBXModuleWindowStatusBarHidden2 1323 | 1 1324 | RubberWindowFrame 1325 | 385 179 630 352 0 0 1440 878 1326 | 1327 | Module 1328 | PBXClassBrowserModule 1329 | Proportion 1330 | 332pt 1331 | 1332 | 1333 | Proportion 1334 | 332pt 1335 | 1336 | 1337 | Name 1338 | Class Browser 1339 | ServiceClasses 1340 | 1341 | PBXClassBrowserModule 1342 | 1343 | StatusbarIsVisible 1344 | 0 1345 | TableOfContents 1346 | 1347 | 1C0AD2AF069F1E9B00FABCE6 1348 | 1C0AD2B0069F1E9B00FABCE6 1349 | 1CA6456E063B45B4001379D8 1350 | 1351 | ToolbarConfiguration 1352 | xcode.toolbar.config.classbrowser 1353 | WindowString 1354 | 385 179 630 352 0 0 1440 878 1355 | WindowToolGUID 1356 | 1C0AD2AF069F1E9B00FABCE6 1357 | WindowToolIsVisible 1358 | 0 1359 | 1360 | 1361 | Identifier 1362 | windowTool.refactoring 1363 | IncludeInToolsMenu 1364 | 0 1365 | Layout 1366 | 1367 | 1368 | Dock 1369 | 1370 | 1371 | BecomeActive 1372 | 1 1373 | GeometryConfiguration 1374 | 1375 | Frame 1376 | {0, 0}, {500, 335} 1377 | RubberWindowFrame 1378 | {0, 0}, {500, 335} 1379 | 1380 | Module 1381 | XCRefactoringModule 1382 | Proportion 1383 | 100% 1384 | 1385 | 1386 | Proportion 1387 | 100% 1388 | 1389 | 1390 | Name 1391 | Refactoring 1392 | ServiceClasses 1393 | 1394 | XCRefactoringModule 1395 | 1396 | WindowString 1397 | 200 200 500 356 0 0 1920 1200 1398 | 1399 | 1400 | 1401 | 1402 | -------------------------------------------------------------------------------- /UIButton.xcodeproj/satoshi.pbxuser: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | 1D6058900D05DD3D006BFB54 /* UIApplication */ = { 4 | activeExec = 0; 5 | executables = ( 6 | 74197D5311FA5865007C4C02 /* UIApplication */, 7 | ); 8 | }; 9 | 29B97313FDCFA39411CA2CEA /* Project object */ = { 10 | activeBuildConfigurationName = Debug; 11 | activeExecutable = 74197D5311FA5865007C4C02 /* UIApplication */; 12 | activeSDKPreference = iphonesimulator3.2; 13 | activeTarget = 1D6058900D05DD3D006BFB54 /* UIApplication */; 14 | codeSenseManager = 74197D6211FA5882007C4C02 /* Code sense */; 15 | executables = ( 16 | 74197D5311FA5865007C4C02 /* UIApplication */, 17 | ); 18 | perUserDictionary = { 19 | PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { 20 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; 21 | PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; 22 | PBXFileTableDataSourceColumnWidthsKey = ( 23 | 20, 24 | 347, 25 | 20, 26 | 48, 27 | 43, 28 | 43, 29 | 20, 30 | ); 31 | PBXFileTableDataSourceColumnsKey = ( 32 | PBXFileDataSource_FiletypeID, 33 | PBXFileDataSource_Filename_ColumnID, 34 | PBXFileDataSource_Built_ColumnID, 35 | PBXFileDataSource_ObjectSize_ColumnID, 36 | PBXFileDataSource_Errors_ColumnID, 37 | PBXFileDataSource_Warnings_ColumnID, 38 | PBXFileDataSource_Target_ColumnID, 39 | ); 40 | }; 41 | PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = { 42 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; 43 | PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; 44 | PBXFileTableDataSourceColumnWidthsKey = ( 45 | 20, 46 | 301, 47 | 60, 48 | 20, 49 | 48.16259765625, 50 | 43, 51 | 43, 52 | ); 53 | PBXFileTableDataSourceColumnsKey = ( 54 | PBXFileDataSource_FiletypeID, 55 | PBXFileDataSource_Filename_ColumnID, 56 | PBXTargetDataSource_PrimaryAttribute, 57 | PBXFileDataSource_Built_ColumnID, 58 | PBXFileDataSource_ObjectSize_ColumnID, 59 | PBXFileDataSource_Errors_ColumnID, 60 | PBXFileDataSource_Warnings_ColumnID, 61 | ); 62 | }; 63 | PBXPerProjectTemplateStateSaveDate = 310105803; 64 | PBXWorkspaceStateSaveDate = 310105803; 65 | }; 66 | perUserProjectItems = { 67 | 7408FF9A127BD7C5002570AB /* PBXTextBookmark */ = 7408FF9A127BD7C5002570AB /* PBXTextBookmark */; 68 | 7408FF9B127BD7C5002570AB /* PBXTextBookmark */ = 7408FF9B127BD7C5002570AB /* PBXTextBookmark */; 69 | 7408FF9C127BD7C5002570AB /* PBXBookmark */ = 7408FF9C127BD7C5002570AB /* PBXBookmark */; 70 | 7408FF9D127BD7C5002570AB /* PBXTextBookmark */ = 7408FF9D127BD7C5002570AB /* PBXTextBookmark */; 71 | }; 72 | sourceControlManager = 74197D6111FA5882007C4C02 /* Source Control */; 73 | userBuildSettings = { 74 | }; 75 | }; 76 | 7408FF9A127BD7C5002570AB /* PBXTextBookmark */ = { 77 | isa = PBXTextBookmark; 78 | fRef = F955087D0F82351F00D56733 /* WordNetJPN.m */; 79 | name = "WordNetJPN.m: 22"; 80 | rLen = 0; 81 | rLoc = 337; 82 | rType = 0; 83 | vrLen = 1582; 84 | vrLoc = 871; 85 | }; 86 | 7408FF9B127BD7C5002570AB /* PBXTextBookmark */ = { 87 | isa = PBXTextBookmark; 88 | fRef = F955087C0F82351F00D56733 /* WordNetJPN.h */; 89 | name = "WordNetJPN.h: 1"; 90 | rLen = 0; 91 | rLoc = 0; 92 | rType = 0; 93 | vrLen = 852; 94 | vrLoc = 0; 95 | }; 96 | 7408FF9C127BD7C5002570AB /* PBXBookmark */ = { 97 | isa = PBXBookmark; 98 | fRef = F91C8E830E812BF600863463 /* Controll.m */; 99 | }; 100 | 7408FF9D127BD7C5002570AB /* PBXTextBookmark */ = { 101 | isa = PBXTextBookmark; 102 | fRef = F91C8E830E812BF600863463 /* Controll.m */; 103 | name = "Controll.m: 21"; 104 | rLen = 0; 105 | rLoc = 473; 106 | rType = 0; 107 | vrLen = 1224; 108 | vrLoc = 424; 109 | }; 110 | 74197D5311FA5865007C4C02 /* UIApplication */ = { 111 | isa = PBXExecutable; 112 | activeArgIndices = ( 113 | ); 114 | argumentStrings = ( 115 | ); 116 | autoAttachOnCrash = 1; 117 | breakpointsEnabled = 0; 118 | configStateDict = { 119 | }; 120 | customDataFormattersEnabled = 1; 121 | dataTipCustomDataFormattersEnabled = 1; 122 | dataTipShowTypeColumn = 1; 123 | dataTipSortType = 0; 124 | debuggerPlugin = GDBDebugging; 125 | disassemblyDisplayState = 0; 126 | dylibVariantSuffix = ""; 127 | enableDebugStr = 1; 128 | environmentEntries = ( 129 | ); 130 | executableSystemSymbolLevel = 0; 131 | executableUserSymbolLevel = 0; 132 | libgmallocEnabled = 0; 133 | name = UIApplication; 134 | showTypeColumn = 0; 135 | sourceDirectories = ( 136 | ); 137 | }; 138 | 74197D6111FA5882007C4C02 /* Source Control */ = { 139 | isa = PBXSourceControlManager; 140 | fallbackIsa = XCSourceControlManager; 141 | isSCMEnabled = 0; 142 | scmConfiguration = { 143 | repositoryNamesForRoots = { 144 | "" = ""; 145 | }; 146 | }; 147 | }; 148 | 74197D6211FA5882007C4C02 /* Code sense */ = { 149 | isa = PBXCodeSenseManager; 150 | indexTemplatePath = ""; 151 | }; 152 | F91C8E830E812BF600863463 /* Controll.m */ = { 153 | uiCtxt = { 154 | sepNavIntBoundsRect = "{{0, 0}, {740, 1183}}"; 155 | sepNavSelRange = "{473, 0}"; 156 | sepNavVisRange = "{424, 1224}"; 157 | }; 158 | }; 159 | F955087C0F82351F00D56733 /* WordNetJPN.h */ = { 160 | uiCtxt = { 161 | sepNavIntBoundsRect = "{{0, 0}, {525, 1620}}"; 162 | sepNavSelRange = "{0, 0}"; 163 | sepNavVisRange = "{0, 852}"; 164 | }; 165 | }; 166 | F955087D0F82351F00D56733 /* WordNetJPN.m */ = { 167 | uiCtxt = { 168 | sepNavIntBoundsRect = "{{0, 0}, {1251, 5445}}"; 169 | sepNavSelRange = "{337, 0}"; 170 | sepNavVisRange = "{871, 1582}"; 171 | }; 172 | }; 173 | } 174 | -------------------------------------------------------------------------------- /UIButton.xcodeproj/xcuserdata/satoshi.xcuserdatad/xcschemes/UIApplication.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 14 | 20 | 21 | 22 | 23 | 24 | 29 | 30 | 31 | 32 | 40 | 41 | 47 | 48 | 49 | 50 | 51 | 52 | 59 | 60 | 66 | 67 | 68 | 69 | 71 | 72 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /UIButton.xcodeproj/xcuserdata/satoshi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | UIApplication.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 1D6058900D05DD3D006BFB54 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UIApplication 4 | // 5 | // Created by 大森 智史 on 08/09/02. 6 | // Copyright Satoshi Oomori 2008. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) { 12 | 13 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 14 | int retVal = UIApplicationMain(argc, argv, nil, nil); 15 | [pool release]; 16 | return retVal; 17 | } 18 | -------------------------------------------------------------------------------- /put "wnjpn.db" file in this dir.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg932\cocoartf1038\cocoasubrtf350 2 | {\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} 3 | {\colortbl;\red255\green255\blue255;} 4 | \margl1440\margr1440\vieww9000\viewh8400\viewkind0 5 | \pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\ql\qnatural\pardirnatural 6 | 7 | \f0\fs24 \cf0 \'82\'b1\'82\'b1\'82\'c9wnjpn.db\'82\'f0\'92\'75\'82\'ad} --------------------------------------------------------------------------------