Go to the source code of this file.
◆ get_key()
static skui::Key get_key |
( |
unsigned short |
vk | ) |
|
|
static |
Definition at line 216 of file Window_mac.mm.
216 {
217
218
219 static const struct {
220 unsigned short fVK;
222 } gPair[] = {
250 };
251
253 if (gPair[
i].fVK ==
vk) {
254 return gPair[
i].fKey;
255 }
256 }
257
259}
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
@ kHome
the home key - added to match android
◆ get_modifiers()
Definition at line 261 of file Window_mac.mm.
261 {
262 NSUInteger modifierFlags = [event modifierFlags];
264
265 if (modifierFlags & NSEventModifierFlagCommand) {
267 }
268 if (modifierFlags & NSEventModifierFlagShift) {
270 }
271 if (modifierFlags & NSEventModifierFlagControl) {
273 }
274 if (modifierFlags & NSEventModifierFlagOption) {
276 }
277
280 }
281
282 return modifiers;
283}
◆ fLastModifiers
◆ fTrackingArea
NSTrackingArea* fTrackingArea |