Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions app/src/main/aidl/com/fde/x11/IActivityCallback.aidl
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,9 @@ interface IActivityCallback {

void finisDecorMovingTask(long window);

boolean finishActivity(long window);

boolean configureActivity(long window);


}
5 changes: 5 additions & 0 deletions app/src/main/aidl/com/fde/x11/ICmdEntryInterface.aidl
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ interface ICmdEntryInterface {

void configureWindow(long winPtr, long window, int x, int y, int w, int h);

void setWindowingMode(long frame, long window, int mode);

void moveWindow(long winPtr, long window, int x, int y);

void resizeWindow(long window, int w, int h);
Expand All @@ -39,4 +41,7 @@ interface ICmdEntryInterface {

void updateSystemViewVisible(boolean visible);

//unused interface
void onWindowFocusChanged(long window, boolean hasFocus);

}
Loading