AutoFitContentView.h 415 B

1234567891011121314151617
  1. //
  2. // Created by Dan Walmsley on 05/05/2022.
  3. // Copyright (c) 2022 Avalonia. All rights reserved.
  4. //
  5. #pragma once
  6. #import <Foundation/Foundation.h>
  7. #include "avalonia-native.h"
  8. @interface AutoFitContentView : NSView
  9. -(AutoFitContentView* _Nonnull) initWithContent: (NSView* _Nonnull) content;
  10. -(void) ShowTitleBar: (bool) show;
  11. -(void) SetTitleBarHeightHint: (double) height;
  12. -(void) ShowBlur: (bool) show;
  13. @end