mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
28 lines
751 B
Objective-C
28 lines
751 B
Objective-C
//
|
|
// SelectedElementsInfoPopoverViewController.h
|
|
// macSVG
|
|
//
|
|
// Created by Douglas Ward on 8/31/16.
|
|
//
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "MacSVGDocumentWindowController.h"
|
|
|
|
@interface SelectedElementsInfoPopoverViewController : NSViewController
|
|
{
|
|
IBOutlet MacSVGDocumentWindowController * macSVGDocumentWindowController;
|
|
|
|
IBOutlet NSTextField * selectedElementsCountTextField;
|
|
IBOutlet NSTextField * topTextField;
|
|
IBOutlet NSTextField * bottomTextField;
|
|
IBOutlet NSTextField * leftTextField;
|
|
IBOutlet NSTextField * rightTextField;
|
|
IBOutlet NSTextField * widthTextField;
|
|
IBOutlet NSTextField * heightTextField;
|
|
IBOutlet NSTextField * centerXTextField;
|
|
IBOutlet NSTextField * centerYTextField;
|
|
}
|
|
|
|
@end
|