• 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用プレビューアプラグイン。もしかするとThousandでも使えるかも?


File Info

Rev. e778a3bc4d66c7cdd9543ad6bca38ff10262916a
Größe 473 Bytes
Zeit 2011-11-15 23:04:55
Autor masakih
Log Message

Append Makefile

Makefileを追加。

Content

//
//  MosaicView.h
//  MosaicPreviewerForThousand
//
//  Created by Hori,Masaki on 07/12/13.
//  Copyright 2007 __MyCompanyName__. All rights reserved.
//

#import <Cocoa/Cocoa.h>

#import "CircleGestureView.h"

@interface MosaicView : CircleGestureView
{
	IBOutlet id delegate;
	
	NSString *text;
	
	CIContext *context;
}

- (void)setText:(NSString *)text;
@end

@interface NSObject (MosaicViewDelegate)
- (CIImage *)viewImage;

-(BOOL)isClosePanelWithSingleClick;

@end