• R/O
  • HTTP
  • SSH
  • HTTPS

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

BathyScapheのSQLiteデータベース内を覗くアプリ


File Info

Rev. c5cbcdd0fa257327a0f792df0f709ecf2683297c
크기 965 bytes
Time 2011-12-03 14:04:59
Author masakih
Log Message

nibをxibに変更。

git-svn-id: svn+ssh://macmini/usr/local/svnrepos/BSDBViewer/BSDBViewer@18 477addb1-df5c-4826-a637-c2b1bdcd60d4

Content

#import <Cocoa/Cocoa.h>

#import "SQLiteDB.h"

@interface BSDBViewer : NSObject
{
	IBOutlet id window;
	IBOutlet id boardArrayController;
    IBOutlet id boardSource;
    IBOutlet id boardView;
	IBOutlet id threadArrayController;
    IBOutlet id threadSource;
    IBOutlet id threadView;
	
	int progressStack;
	
	NSMutableDictionary *boardNameCache;
}

+ (SQLiteDB *)sqliteDB;

- (IBAction)openInBathyScaphe:(id)sender;
- (IBAction)deleteThreadInfo:(id)sender;
- (IBAction)showThreadInfo:(id)sender;

@property (retain) id window;
@property (retain) id boardArrayController;
@property (retain) id boardSource;
@property (retain) id boardView;
@property (retain) id threadArrayController;
@property (retain) id threadSource;
@property (retain) id threadView;
@property int progressStack;
@property (retain) NSMutableDictionary *boardNameCache;
@end

@interface BSDBDateTransformer : NSValueTransformer
@end
@interface BSDBNumberTransformer : NSValueTransformer
@end