- Combined MPExpression and MPMutableExpression - Abstracted children of MPExpression into MPExpressionElement protocol - Abstracted most of MPExpressionLayout and MPFunctionLayout into common superclass MPLayout
53 lines
1.6 KiB
Objective-C
53 lines
1.6 KiB
Objective-C
//
|
|
// MPFunction.h
|
|
// MathPad
|
|
//
|
|
// Created by Kim Wittenburg on 18.04.14.
|
|
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
#import "MPExpressionElement.h"
|
|
|
|
@class MPFunction, MPExpression, MPRangePath;
|
|
|
|
@interface MPFunction : NSObject <NSCoding, NSCopying, MPExpressionElement>
|
|
|
|
#pragma mark Creation Methods
|
|
|
|
- (instancetype)init;
|
|
|
|
#pragma mark Properties
|
|
// Subclasses should define accessor properties for all sub expressions, which, in the setter, should send didChangeElementAtRangePath:replacementLength: to self with a replacement length of 1.
|
|
|
|
#pragma mark Working With the Expression Tree
|
|
@property (nonatomic, weak) MPExpression *parent; // Documentation: Do not set
|
|
|
|
- (NSUInteger)numberOfChildren; // Override
|
|
- (MPExpression *)childAtIndex:(NSUInteger)index; // Override
|
|
- (void)setChild:(MPExpression *)child
|
|
atIndex:(NSUInteger)index; // Override
|
|
|
|
// May be overridden for performance improvements
|
|
- (NSArray *)children; // Indexes must equal the ones from the native methods
|
|
- (NSUInteger)indexOfChild:(MPExpression *)child;
|
|
|
|
- (id)elementAtIndexPath:(NSIndexPath *)indexPath;
|
|
|
|
#pragma mark Evaluating Functions
|
|
- (double)doubleValue; // Override
|
|
|
|
#pragma mark Messages
|
|
- (void)didChangeElementsInRangePath:(MPRangePath *)rangePath
|
|
replacementLength:(NSUInteger)replacementLength;
|
|
- (void)didChangeChild:(MPExpression *)child;
|
|
- (void)didChangeChildAtIndex:(NSUInteger)index;
|
|
|
|
#pragma mark Working With Functions
|
|
- (BOOL)isEqualToFunction:(MPFunction *)aFunction; // Override
|
|
|
|
- (NSString *)description; // Should be overridden
|
|
- (NSUInteger)hash;// Override
|
|
|
|
@end
|