Archived
1
This repository has been archived on 2022-08-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mathpad/MathPad/MPExpressionLayout.h
Kim Wittenburg 4a3ea0cede Improved Model
Added Keyboard Selection Support
Added Mouse Selection Support
Added Keyboard Editing Support
Corrected Some Bugs
Abstracted the Layout System further
Added Functions Button (test)
2014-08-31 15:41:17 +02:00

20 lines
398 B
Objective-C

//
// MPExpressionLayout.h
// MathPad
//
// Created by Kim Wittenburg on 07.08.14.
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
//
@import Cocoa;
#import "MPLayout.h"
#import "MPExpression.h"
@interface MPExpressionLayout : MPLayout
- (instancetype)initRootLayoutWithExpression:(MPExpression *)expression;
@property (readonly, nonatomic, weak) MPExpression *expression;
@end