File tree 3 files changed +10
-32
lines changed
native/Avalonia.Native/src/OSX
3 files changed +10
-32
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,6 @@ BEGIN_INTERFACE_MAP()
110
110
private:
111
111
void CreateNSWindow (bool isDialog);
112
112
void CleanNSWindow ();
113
- void InitialiseNSWindow ();
114
113
115
114
NSCursor *cursor;
116
115
ComPtr<IAvnGlContext> _glContext;
Original file line number Diff line number Diff line change 38
38
lastMenu = nullptr ;
39
39
40
40
CreateNSWindow (usePanel);
41
- InitialiseNSWindow ();
41
+
42
+ [Window setContentView: StandardContainer];
43
+ [Window setStyleMask: NSWindowStyleMaskBorderless];
44
+ [Window setBackingType: NSBackingStoreBuffered];
45
+
46
+ [Window setContentMinSize: lastMinSize];
47
+ [Window setContentMaxSize: lastMaxSize];
48
+
49
+ [Window setOpaque: false ];
50
+ [Window setHasShadow: true ];
42
51
}
43
52
44
53
HRESULT WindowBaseImpl::ObtainNSViewHandle (void **ret) {
568
577
}
569
578
}
570
579
571
- void WindowBaseImpl::InitialiseNSWindow () {
572
- if (Window != nullptr ) {
573
- [Window setContentView: StandardContainer];
574
- [Window setStyleMask: NSWindowStyleMaskBorderless];
575
- [Window setBackingType: NSBackingStoreBuffered];
576
-
577
- [Window setContentSize: lastSize];
578
- [Window setContentMinSize: lastMinSize];
579
- [Window setContentMaxSize: lastMaxSize];
580
-
581
- [Window setOpaque: false ];
582
-
583
- [Window setHasShadow: true ];
584
- [Window invalidateShadow ];
585
-
586
- if (lastMenu != nullptr ) {
587
- [GetWindowProtocol () applyMenu: lastMenu];
588
-
589
- if ([Window isKeyWindow ]) {
590
- [GetWindowProtocol () showWindowMenuWithAppMenu ];
591
- }
592
- }
593
- }
594
- }
595
-
596
580
id <AvnWindowProtocol> WindowBaseImpl::GetWindowProtocol () {
597
581
if (Window == nullptr )
598
582
{
Original file line number Diff line number Diff line change 54
54
[GetWindowProtocol () setIsExtended: true ];
55
55
SetExtendClientArea (true );
56
56
}
57
-
58
- if (_parent != nullptr )
59
- {
60
- SetParent (_parent);
61
- }
62
57
}
63
58
64
59
HRESULT WindowImpl::Show (bool activate, bool isDialog) {
You can’t perform that action at this time.
0 commit comments