SYMBOL INDEX (74 symbols across 8 files) FILE: files/js/scripts.js function setTheme (line 7) | function setTheme(theme) { function setEffect (line 17) | function setEffect(effect) { function setParams (line 21) | function setParams(params, value) { function htmlToColor (line 25) | function htmlToColor(color) { FILE: main.js constant IS_ELECTRON_RECENT_VERSION (line 22) | const IS_ELECTRON_RECENT_VERSION = process.versions.electron >= '27.0.0'... function isWin11 (line 54) | function isWin11() { constant WINDOWS_11 (line 61) | const WINDOWS_11 = isWin11(); function redrawFrame (line 67) | function redrawFrame(window) { constant PARAMS (line 78) | const PARAMS = { constant VALUE (line 94) | const VALUE = { constant WIN10 (line 120) | const WIN10 = { class BrowserWindow (line 167) | class BrowserWindow extends electron.BrowserWindow { method constructor (line 190) | constructor(...args) { method applyStyle (line 258) | applyStyle() { method interceptMessage (line 265) | interceptMessage() { method removeCaption (line 272) | removeCaption() { method disableMargin (line 279) | disableMargin() { method enableMargin (line 293) | enableMargin() { method alwaysFocused (line 321) | alwaysFocused(enable) { method setMicaEffect (line 331) | setMicaEffect() { method setMicaTabbedEffect (line 340) | setMicaTabbedEffect() { method setMicaAcrylicEffect (line 349) | setMicaAcrylicEffect() { method setDarkTheme (line 358) | setDarkTheme() { method setLightTheme (line 367) | setLightTheme() { method setAutoTheme (line 376) | setAutoTheme() { method setRoundedCorner (line 385) | setRoundedCorner() { method setSmallRoundedCorner (line 392) | setSmallRoundedCorner() { method setSquareCorner (line 399) | setSquareCorner() { method setBorderColor (line 407) | setBorderColor(color) { method setCaptionColor (line 420) | setCaptionColor(color) { method setTitleTextColor (line 433) | setTitleTextColor(color) { method setTransparent (line 445) | setTransparent() { method setBlur (line 454) | setBlur() { method setAcrylic (line 463) | setAcrylic() { method setCustomEffect (line 475) | setCustomEffect(nAccentState, color, a) { method disableUser32 (line 487) | disableUser32() { method disableDWM (line 496) | disableDWM() { method executeDwm (line 508) | executeDwm(params, value) { method executeUser32 (line 525) | executeUser32(params, value) { FILE: module/app.cpp type micaElectron (line 29) | namespace micaElectron function napi_value (line 32) | napi_value executeDwm(napi_env env, napi_callback_info args) function napi_value (line 183) | napi_value executeUser32(napi_env env, napi_callback_info args) function napi_value (line 248) | napi_value redraw(napi_env env, napi_callback_info args) function napi_value (line 334) | napi_value init(napi_env env, napi_value exports) FILE: module/assets/dwm.cpp function enableDWM (line 27) | void enableDWM() function disableDWM (line 36) | void disableDWM() function setAppTheme (line 42) | void setAppTheme(int value, HWND hwnd) function applyMicaEffect (line 56) | bool applyMicaEffect(int type, HWND hwnd) function setCorner (line 84) | void setCorner(int type, HWND hwnd) { function setBorderColor (line 89) | void setBorderColor(int type, HWND hwnd) { function setCaptionColor (line 94) | void setCaptionColor(int type, HWND hwnd) { function setTextColor (line 99) | void setTextColor(int type, HWND hwnd) { function setMargin (line 104) | void setMargin(int type, HWND hwnd) { FILE: module/assets/user32.cpp function enableUser32 (line 25) | void enableUser32() function disableUser32 (line 32) | void disableUser32() function resetBorderApp (line 38) | void resetBorderApp(HWND hwnd) function enableMaximizeBox (line 43) | void enableMaximizeBox(HWND hwnd) function interceptMessage (line 54) | void interceptMessage(HWND hwnd) function disableCaption (line 60) | void disableCaption(HWND hwnd) function enableCaption (line 67) | void enableCaption(HWND hwnd) function applyWindows10Effect (line 74) | void applyWindows10Effect(int nAccentState, int nColor, HWND hwnd) FILE: module/assets/win.cpp function LRESULT (line 25) | LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM ... function DWORD (line 45) | DWORD getBuild() function isInsider (line 63) | bool isInsider() function isWin11 (line 68) | bool isWin11() function is_light_theme (line 73) | bool is_light_theme() FILE: module/assets/winstyle.h type ACCENTPOLICY (line 6) | struct ACCENTPOLICY type WINCOMATTRPDATA (line 14) | struct WINCOMATTRPDATA type WINCOMATTRPDATA (line 21) | typedef BOOL(WINAPI *pSetWindowCompositionAttribute)(HWND, WINCOMATTRPDA... type DWORD (line 22) | typedef BOOL(WINAPI *pDwmSetWindowAttribute)(HWND, DWORD, int *, int); type byte (line 24) | typedef BOOL(WINAPI *pSetLayeredWindowAttributes)(HWND, int, byte, int); type MARGINS (line 25) | typedef BOOL(WINAPI *pDwmExtendFrameIntoClientArea)(HWND, MARGINS *); type HWND (line 27) | typedef BOOL(WINAPI *pSetWindowPos)(HWND, HWND, int, int, int, int, int); FILE: types/index.d.ts class MicaBrowserWindow (line 9) | class MicaBrowserWindow extends Electron.BrowserWindow {