File tree Expand file tree Collapse file tree 4 files changed +14
-28
lines changed Expand file tree Collapse file tree 4 files changed +14
-28
lines changed Original file line number Diff line number Diff line change 33 * SPDX-License-Identifier: GPL-3.0-or-later
44 */
55
6- public struct Gala.Daemon.DaemonWindowMenuItem {
7- WindowMenuItemType type;
8- bool sensitive;
9- bool toggle_state;
10- string display_name;
11- string keybinding;
12- }
13-
146public struct Gala.Daemon.MonitorLabelInfo {
157 public int monitor;
168 public string label;
Original file line number Diff line number Diff line change 33 * SPDX-License-Identifier: GPL-3.0-or-later
44 */
55
6- public enum Gala.WindowMenuItemType {
7- BUTTON ,
8- TOGGLE ,
9- SEPARATOR
10- }
11-
12- public struct Gala.DaemonWindowMenuItem {
13- WindowMenuItemType type;
14- bool sensitive;
15- bool toggle_state;
16- string display_name;
17- string keybinding;
18- }
19-
206[DBus (name = " org.pantheon.gala" )]
217public interface Gala.WMDBus : GLib .Object {
228 public abstract void perform_action (Gala .ActionType type ) throws DBusError , IOError ;
Original file line number Diff line number Diff line change 77 */
88
99namespace Gala {
10+ public enum WindowMenuItemType {
11+ BUTTON ,
12+ TOGGLE ,
13+ SEPARATOR
14+ }
15+
16+ public struct DaemonWindowMenuItem {
17+ WindowMenuItemType type;
18+ bool sensitive;
19+ bool toggle_state;
20+ string display_name;
21+ string keybinding;
22+ }
23+
1024 public enum ActionType {
1125 NONE = 0 ,
1226 SHOW_MULTITASKING_VIEW ,
Original file line number Diff line number Diff line change @@ -26,12 +26,6 @@ namespace Gala {
2626
2727 public delegate void WindowMenuItemCallback (Meta .Window window );
2828
29- public enum WindowMenuItemType {
30- BUTTON ,
31- TOGGLE ,
32- SEPARATOR
33- }
34-
3529 public struct WindowMenuItem {
3630 WindowMenuItemType type;
3731 bool sensitive;
You can’t perform that action at this time.
0 commit comments