forked from compnerd/swift-win32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLabel.swift
94 lines (77 loc) · 3.04 KB
/
Label.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/**
* Copyright © 2019 Saleem Abdulrasool <[email protected]>
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
**/
import WinSDK
private let SwiftLabelProc: SUBCLASSPROC = { (hWnd, uMsg, wParam, lParam, uIdSubclass, dwRefData) in
let label: Label? = unsafeBitCast(dwRefData, to: AnyObject.self) as? Label
switch uMsg {
case UINT(WM_LBUTTONUP):
label?.sendActions(for: .primaryActionTriggered)
default:
break
}
return DefSubclassProc(hWnd, uMsg, wParam, lParam)
}
public class Label: Control {
private static let `class`: WindowClass =
WindowClass(hInst: GetModuleHandleW(nil), name: "Swift.Label")
private static let style: WindowStyle = (base: WS_TABSTOP, extended: 0)
private var staticHWnd: HWND!
public var text: String? {
get {
let szLength: Int32 = GetWindowTextLengthW(self.staticHWnd)
let buffer: [WCHAR] = Array<WCHAR>(unsafeUninitializedCapacity: Int(szLength) + 1) {
$1 = Int(GetWindowTextW(self.staticHWnd, $0.baseAddress!, CInt($0.count)))
}
return String(decodingCString: buffer, as: UTF16.self)
}
set(value) { _ = SetWindowTextW(self.staticHWnd, value?.wide) }
}
public override var font: Font! {
didSet {
SendMessageW(self.staticHWnd, UINT(WM_SETFONT),
unsafeBitCast(self.font?.hFont.value, to: WPARAM.self),
LPARAM(1))
}
}
public override var frame: Rect {
didSet {
let rect = GetRect(hWnd: self.hWnd)
_ = SetWindowPos(self.staticHWnd, nil,
CInt(rect.origin.x), CInt(rect.origin.y),
CInt(rect.size.width), CInt(rect.size.height),
UINT(SWP_NOZORDER | SWP_FRAMECHANGED))
}
}
public init(frame: Rect) {
super.init(frame: frame, class: Label.class, style: Label.style)
_ = SetWindowSubclass(hWnd, SwiftLabelProc, UINT_PTR(1),
unsafeBitCast(self as AnyObject, to: DWORD_PTR.self))
let rect = GetRect(hWnd: self.hWnd)
self.staticHWnd = CreateWindowExW(0, WC_STATIC.wide, nil, 0,
0, 0,
Int32(rect.size.width),
Int32(rect.size.height),
nil, nil, GetModuleHandleW(nil), nil)!
_ = SetWindowLongW(self.staticHWnd, WinSDK.GWL_STYLE, WS_CHILD)
_ = SetParent(self.staticHWnd, self.hWnd)
self.font = Font.systemFont(ofSize: Font.systemFontSize)
}
deinit {
DestroyWindow(self.staticHWnd)
}
// ContentSizeCategoryAdjusting
public var adjustsFontForContentSizeCategory = false
// TraitEnvironment
override public func traitCollectionDidChange(_ previousTraitCollection: TraitCollection?) {
super.traitCollectionDidChange(previousTraitCollection)
guard self.adjustsFontForContentSizeCategory else { return }
self.font = FontMetrics.default.scaledFont(for: self.font,
compatibleWith: traitCollection)
}
}
extension Label: ContentSizeCategoryAdjusting {
}