mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 20:23:01 +00:00
[RAPPS] application-view refactor (#3003)
* [RAPPS] separate application-view from gui.cpp * [RAPPS] make the code looks more clear * [RAPPS] fix & improve tab-order handle * [RAPPS] now double-click / right-click & install an item will install exactly this app * [RAPPS] add handling for DWORD timestamp for InstallDate * [RAPPS] make the code setting column style more clear * [RAPPS] change the owner of popup-menu * [RAPPS] now the popup menu (the one when right-click listview) now belongs to application-view
This commit is contained in:
parent
10c0ff7416
commit
e44c9b6630
11 changed files with 3257 additions and 2741 deletions
|
@ -3,6 +3,10 @@
|
|||
#include <windef.h>
|
||||
#include <atlstr.h>
|
||||
|
||||
#define EPOCH_DIFF 116444736000000000 //FILETIME starts from 1601-01-01 UTC, UnixTime starts from 1970-01-01
|
||||
#define RATE_DIFF 10000000
|
||||
|
||||
|
||||
INT GetWindowWidth(HWND hwnd);
|
||||
INT GetWindowHeight(HWND hwnd);
|
||||
INT GetClientWindowWidth(HWND hwnd);
|
||||
|
@ -48,3 +52,7 @@ public:
|
|||
BOOL PathAppendNoDirEscapeW(LPWSTR pszPath, LPCWSTR pszMore);
|
||||
|
||||
BOOL IsSystem64Bit();
|
||||
|
||||
INT GetSystemColorDepth();
|
||||
|
||||
void UnixTimeToFileTime(DWORD dwUnixTime, LPFILETIME pFileTime);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue