|
Revision 3219, 334 bytes
(checked in by timothy, 2 years ago)
|
Code clean up. SOme sidebar fixes, still broken. Added some unit tests, will expanded in the future.
|
| Line | |
|---|
| 1 |
@interface JVSplitView : NSSplitView { |
|---|
| 2 |
long _mainSubviewIndex; |
|---|
| 3 |
} |
|---|
| 4 |
- (NSString *) stringWithSavedPosition; |
|---|
| 5 |
- (void) setPositionFromString:(NSString *) string; |
|---|
| 6 |
|
|---|
| 7 |
- (void) savePositionUsingName:(NSString *) name; |
|---|
| 8 |
- (BOOL) setPositionUsingName:(NSString *) name; |
|---|
| 9 |
|
|---|
| 10 |
- (void) setMainSubviewIndex:(long) index; |
|---|
| 11 |
- (BOOL) mainSubviewIndex; |
|---|
| 12 |
@end |
|---|