Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove-quotes-from-ctrl-shift-c v1.0 #1328

Merged
merged 2 commits into from
Dec 11, 2024
Merged
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
92 changes: 92 additions & 0 deletions mods/remove-quotes-from-ctrl-shift-c.wh.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
// ==WindhawkMod==
// @id remove-quotes-from-ctrl-shift-c
// @name CTRL+SHIFT+C quotes remover
// @description Intercepts the copied file path (CTRL+SHIFT+C in Explorer) and removes surrounding quotes
// @version 1.0
// @author draxas
// @github https://github.com/draxas
// @include explorer.exe
// ==/WindhawkMod==

// ==WindhawkModReadme==
/*
# Remove quotes from CTRL+SHIFT+C file paths

When you press `CTRL+SHIFT+C` on a file in Windows Explorer, the file’s full path is usually copied to the clipboard with quotes, for example: `"C:\Path\To\File.txt"`. With this mod, those quotes are automatically removed, leaving you with a clean, unquoted path for easier use.

## How it works
- Whenever you copy a file path using `CTRL+SHIFT+C`, this mod intercepts the text before it’s placed into the clipboard.
- If the path is enclosed in quotes, they are removed.
- You end up with a path like `C:\Path\To\File.txt` instead of `"C:\Path\To\File.txt"`.

No additional configuration is needed—just use CTRL+SHIFT+C as you normally would.
*/
// ==/WindhawkModReadme==

// ==WindhawkModSettings==
// No settings are defined for this mod.
// ==/WindhawkModSettings==

#include <windows.h>
#include <wchar.h>

typedef HANDLE (WINAPI *SetClipboardData_t)(UINT uFormat, HANDLE hMem);
SetClipboardData_t SetClipboardData_Original;

static void RemoveSurroundingQuotes(wchar_t* str) {
size_t len = wcslen(str);
if (len >= 2 && str[0] == L'\"' && str[len - 1] == L'\"') {
wmemmove(str, str + 1, len - 2);
str[len - 2] = L'\0';
}
}

HANDLE WINAPI SetClipboardData_Hook(UINT uFormat, HANDLE hMem) {
if (uFormat == CF_UNICODETEXT && hMem) {
LPWSTR pData = (LPWSTR)GlobalLock(hMem);
if (pData) {
size_t len = wcslen(pData);
wchar_t* buffer = (wchar_t*)HeapAlloc(GetProcessHeap(), 0, (len + 1) * sizeof(wchar_t));
if (buffer) {
wcscpy_s(buffer, len + 1, pData);
GlobalUnlock(hMem);

RemoveSurroundingQuotes(buffer);

size_t newLen = wcslen(buffer);
HGLOBAL hNew = GlobalAlloc(GMEM_MOVEABLE, (newLen + 1) * sizeof(wchar_t));
if (hNew) {
LPWSTR pNewData = (LPWSTR)GlobalLock(hNew);
if (pNewData) {
wcscpy_s(pNewData, newLen + 1, buffer);
GlobalUnlock(hNew);
HeapFree(GetProcessHeap(), 0, buffer);
return SetClipboardData_Original(uFormat, hNew);
}
GlobalFree(hNew);
}
HeapFree(GetProcessHeap(), 0, buffer);
} else {
GlobalUnlock(hMem);
}
}
}

return SetClipboardData_Original(uFormat, hMem);
}

BOOL Wh_ModInit() {
Wh_Log(L"Init remove-quotes-from-ctrl-shift-c mod");

Wh_SetFunctionHook((void*)SetClipboardData, (void*)SetClipboardData_Hook, (void**)&SetClipboardData_Original);

return TRUE;
}

void Wh_ModUninit() {
Wh_Log(L"Uninit remove-quotes-from-ctrl-shift-c mod");
}

void Wh_ModSettingsChanged() {
Wh_Log(L"SettingsChanged remove-quotes-from-ctrl-shift-c mod");
}
Loading