-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
30 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,27 @@ | ||
#ifndef ALTDRAG_RPC_H | ||
#define ALTDRAG_RPC_H | ||
|
||
#define WM_TRAY (WM_USER+1) | ||
#define WM_SCLICK (WM_USER+2) | ||
#define WM_UPDCFRACTION (WM_USER+3) | ||
#define WM_UPDATETRAY (WM_USER+4) | ||
// App | ||
#define APP_NAME L"AltDrag" | ||
#define APP_NAMEA "AltDrag" | ||
#define APP_VERSION "1.46" | ||
|
||
// User Messages | ||
#define WM_TRAY (WM_USER+1) | ||
#define WM_SCLICK (WM_USER+2) | ||
#define WM_UPDCFRACTION (WM_USER+3) | ||
#define WM_UPDATETRAY (WM_USER+4) | ||
#define WM_UPDATESETTINGS (WM_USER+5) | ||
#define WM_OPENCONFIG (WM_USER+6) | ||
#define WM_CLOSECONFIG (WM_USER+7) | ||
#define WM_ADDTRAY (WM_USER+8) | ||
#define WM_HIDETRAY (WM_USER+9) | ||
|
||
// List of possible actions | ||
enum action { AC_NONE=0, AC_MOVE, AC_RESIZE, AC_MENU, AC_MINIMIZE, AC_MAXIMIZE, AC_CENTER | ||
, AC_ALWAYSONTOP, AC_CLOSE, AC_LOWER, AC_BORDERLESS, AC_KILL | ||
, AC_ROLL, AC_ALTTAB, AC_VOLUME, AC_TRANSPARENCY, AC_HSCROLL }; | ||
|
||
#define MOUVEMENT(action) (action <= AC_RESIZE) | ||
|
||
#endif /* ALTDRAG_RPC_H */ |
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