-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adapt to xf4w v4.19.7 * Ensure we depend specifically on xf4w 4.19.7 * Add a metadata file plus custom file to allow generation of xf4w vapi correctly * Update README instructions to build xf4w vapi
- Loading branch information
1 parent
afc7e42
commit a23ff6a
Showing
13 changed files
with
215 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Window.activate.seat nullable=true | ||
Workspace.get_workspace_group type="unowned libxfce4windowing.WorkspaceGroup?" | ||
Application.get_instance skip=true | ||
Workspace.assign_to_workspace_group skip=true | ||
Window.get_screen type="unowned libxfce4windowing.Screen" | ||
WorkspaceGroup.get_workspace_manager type="unowned libxfce4windowing.WorkspaceManager" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace libxfce4windowing { | ||
[CCode (cheader_filename = "libxfce4windowing/libxfce4windowing.h", cname = "XfwApplication", type_id = "xfw_application_get_type ()")] | ||
public abstract class Application : GLib.Object { | ||
[CCode (cname = "xfw_application_get_instance")] | ||
public unowned libxfce4windowing.ApplicationInstance? get_instance (libxfce4windowing.Window window); | ||
} | ||
|
||
[CCode (cheader_filename = "libxfce4windowing/libxfce4windowing.h", cname = "XfwWorkspace", type_id = "xfw_workspace_get_type ()")] | ||
public interface Workspace : GLib.Object { | ||
[CCode (cname = "xfw_workspace_assign_to_workspace_group")] | ||
public bool assign_to_workspace_group (libxfce4windowing.WorkspaceGroup group) throws GLib.Error; | ||
} | ||
} |
Oops, something went wrong.