/* * Name: OgreTextViewPlainAdapter.h * Project: OgreKit * * Creation Date: May 20 2004 * Author: Isao Sonobe * Copyright: Copyright (c) 2003 Isao Sonobe, All rights reserved. * License: OgreKit License * * Encoding: UTF8 * Tabsize: 4 */ #import #import @class OgreTextViewUndoer; @interface OgreTextViewPlainAdapter : OgreTextFindLeaf { NSTextView *_textView; NSTextStorage *_textStorage; NSUndoManager *_undoManager; BOOL _storageLocked; BOOL _allowsUndo; OgreTextViewUndoer *_undoer; } - (id)initWithTarget:(id)aTextView; - (NSTextStorage*)textStorage; @end