I've looked around, and I found this: http://msdn.microsoft.com/en-us/library/windows/desktop/ms724947(v=vs.85).aspx
The menu is located here: Right click my computer, properties, advanced system settings, advanced tab, performance -> settings
That works exactly as I hoped. However, there's a few settings I can't seem to find. Here's my list so far, specifically from the list of options in the visual effects menu.
//SPI_SETCLIENTAREAANIMATION = Animate controls and elements inside windows
//SPI_SETANIMATION = Animate windows when minimizing and maximizing
//SPI_SETMENUANIMATION = Fade or slide menus into view
//SPI_SETCURSORSHADOW = Show shadows under mouse pointer
//SPI_SETDROPSHADOW = Show shadows under windows
//SPI_SETCOMBOBOXANIMATION = Slide open combo boxes
//SPI_SETCLEARTYPE = Smooth edges of screen fonts
//SPI_SETLISTBOXSMOOTHSCROLLING = Smooth-scroll list boxes
//SPI_SETUIEFFECTS = A whole bunch of settings
Still missing these ones
//Animations in the taskbar and Start Menu
//Show translucent selection rectangle
//Show window content while dragging
//Use drop shadows for icon labels on the desktop
//Use visual styles on windows and buttons
Has anyone managed to figure out where the remaining settings can be enabled / disabled from? Perhaps I missed a value?
BTW: I'm setting them like this in Python
windll.user32.SystemParametersInfoA(SPI_SETLISTBOXSMOOTHSCROLLING, 0, cBoolTrue, 0)
Thanks.