/* * Name: OGMutableString.h * Project: OgreKit * * Creation Date: Sep 22 2004 * Author: Isao Sonobe * Copyright: Copyright (c) 2004 Isao Sonobe, All rights reserved. * License: OgreKit License * * Encoding: UTF8 * Tabsize: 4 */ #import #import @protocol OGMutableStringProtocol - (void)appendString:(NSString*)string; - (void)appendString:(NSString*)string hasAttributesOfOGString:(NSObject*)ogString; - (void)appendAttributedString:(NSAttributedString*)string; - (void)appendOGString:(NSObject*)string; - (void)appendOGStringLeaveImprint:(NSObject*)string; - (void)appendOGString:(NSObject*)string changeFont:(BOOL)changeFont mergeAttributes:(BOOL)mergeAttributes; - (void)appendOGString:(NSObject*)string changeFont:(BOOL)changeFont mergeAttributes:(BOOL)mergeAttributes ofOGString:(NSObject*)srcString; - (void)setAttributesOfOGString:(NSObject*)string atIndex:(unsigned)index; @end