masakih

あれとこれコンバータ (プロジェクト終了)

  • R/O
  • HTTP
  • SSH
  • HTTPS

よく使われているワード(クリックで追加)

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

あれとこれのコンバータ


ファイル情報

Rev. 8ece8bbf421226ddce3c4f26df1acff3c279292f
サイズ 888 バイト
日時 2011-12-03 17:21:11
作者 masakih
ログメッセージ

Treat source code

ソースコードの整理。

内容

//
//  BSCDProgressPanelController.m
//  BathyScapheDataConverter
//
//  Created by 堀 昌樹 on 11/11/29.
//  Copyright (c) 2011年 __MyCompanyName__. All rights reserved.
//

#import "BSCDProgressPanelController.h"

@implementation BSCDProgressPanelController

@synthesize inProgress = _inProgress;
@synthesize amount = _amount;
@synthesize count = _count;
@synthesize label = _label;
@synthesize message = _message;

@synthesize progressTime = _progressTime;

- (id)init
{
	return [self initWithWindowNibName:@"BSCDProgressPanel"];
}
- (id)initWithWindow:(NSWindow *)window
{
    self = [super initWithWindow:window];
    if (self) {
        // Initialization code here.
		self.inProgress = YES;
    }
    
    return self;
}

- (NSWindow *)window
{
	NSWindow *window = [super window];
	[window center];
	return window;
}

- (IBAction)cancel:(id)sender
{
	[NSApp abortModal];
}

@end