mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 00:09:56 +08:00

* [v2, darwin] Add "Hide, Hide Others, Show All“ to appmenu This also includes shortcuts support for those commands. Arrange the menu items in the well known MacOS order. * [v2, darwin] Add Window menu with well known shortcuts Minimize, Full-Screen and Zoom.
18 lines
238 B
C
18 lines
238 B
C
//
|
|
// Role.h
|
|
// test
|
|
//
|
|
// Created by Lea Anthony on 24/10/21.
|
|
//
|
|
|
|
#ifndef Role_h
|
|
#define Role_h
|
|
|
|
typedef int Role;
|
|
|
|
static const Role AppMenu = 1;
|
|
static const Role EditMenu = 2;
|
|
static const Role WindowMenu = 3;
|
|
|
|
#endif /* Role_h */
|