aboutsummaryrefslogtreecommitdiff
path: root/platform/windows/os_windows.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* property output unix seconds since epoch in windows get_system_time_secs, ↵Juan Linietsky2016-06-111-1/+7
| | | | fixes #5155
* Windows: Hide mouse on MOUSE_MODE_CAPTUREDJ08nY2016-06-071-1/+1
| | | | Fixes #5051
* vsync supportJuan Linietsky2016-06-051-0/+15
| | | | | | -works on windows -may not work on X11, if so please fix -OSX does not seem to support disabling vsync
* -customizable shortcuts in editorJuan Linietsky2016-06-041-1/+1
| | | | | -editor settings now save to .tres instead of .xml -buttons can now hold a shortcut
* change invalid characters when get user data dir on Windows & Unixvolzhs2016-06-031-1/+1
| | | | | | | Can't create user data folder when project name has ``\ / : * ? " < > |`` characters on OS_Windows & OS_Unix. So, change it to ``-`` to be able to make folder. fixes #4928 and it's altanative to #4986.
* removed dependency on shcore.dll to get DPIJuan Linietsky2016-06-011-14/+74
| | | | fixes #4973
* DPI Detection supportJuan Linietsky2016-05-291-1/+22
| | | | | Windows only for now. Many builds may break (older visual studio, mingw32)
* Changed import workflowJuan Linietsky2016-05-271-0/+28
| | | | | | | | | | | | | | | | -Rearrange favorites in fs dock with drag and drop -Removed import -> sub-scene, moved to scenetree contextual menu -Removed import -> re-import , moved and integrated to FS dock -Added ability in FS dock to re-import more than one resource simultaneously -Added ability to drag from native filesystem explorer to Godot, only works on Windows though -Removed scene reimport merge options, never worked well. Eventually merging materials should be re-added -Added ability to set custom root node type when importing scenes -Re-Import is now automatic, can be configured back to manual in editor settings -Added resource previews in property list for many resource types
* Working even when re-entering window.Mattias Cibien2016-05-091-0/+2
|
* Cursor hides only in client areaMattias Cibien2016-05-091-1/+17
| | | At the moment is however restored when going out and then in again.
* Fixed behavior of OS.set_window_resizableMattias Cibien2016-05-031-1/+1
| | | | Should fix #4428. * Minimize button is not hidden anymore
* Implement OS.get_process_ID for WindowsGeorge Marques2016-04-291-0/+5
| | | | | Based on code by @ratsdiov. Closes #1733
* Borderless window support for the Win32 build. Default window position is ↵Saracen2016-03-121-2/+11
| | | | now also centred.
* remove trailing whitespaceHubert Jarosz2016-03-091-32/+32
|
* Added constant to retrieve Windows' Documents pathFranco Eusébio Garcia2016-02-071-1/+1
| | | | | | | | | | | | | | According to MSDN's documentation (https://msdn.microsoft.com/en-us/library/windows/desktop/bb762181(v=vs.85).aspx), CSIDL_PERSONAL represents the default path to Windows Document's folder: "Previous to Version 6.0. The file system directory used to physically store a user's common repository of documents. A typical path is C:\Documents and Settings\username\My Documents. This should be distinguished from the virtual My Documents folder in the namespace. To access that virtual folder, use SHGetFolderLocation, which returns the ITEMIDLIST for the virtual location, or refer to the technique described in Managing the File System."
* support horizontal mouse wheel, use in text editorhondres2016-02-041-2/+19
|
* remove pc_joystick_map.hhondres2016-02-011-1/+0
|
* Change default window size for desktopGeorge Marques2016-01-241-1/+1
| | | | Fix #3149
* Merge pull request #3272 from Hinsbart/joy-bindingpunto-2016-01-121-0/+7
|\ | | | | Add some joystick functions to input. Enables manipulation of mapping…
| * Add some joystick functions to input. Enables manipulation of mappings at ↵hondres2016-01-081-0/+7
| | | | | | | | runtime
* | Merge pull request #3230 from touilleMan/issue-55Rémi Verschelde2016-01-111-2/+1
|\ \ | | | | | | Remove unnecessary null pointer checks
| * | Remove unnecessary null pointer checksEmmanuel Leblond2016-01-041-2/+1
| |/
* / -Removed OS.get_system_time_msec(), this is undoable on Windows and also ↵Juan Linietsky2016-01-101-2/+8
|/ | | | | | unusable from GDscript due to precision. -Added, instead an OS.get_system_time_secs(), which is 32 bits friendly, fixes #3143
* Update copyright to 2016 in headersGeorge Marques2016-01-011-1/+1
|
* Better gamepad supporthondres2015-12-181-260/+8
|
* -added windowed mode with -w, fixes #3020Juan Linietsky2015-12-121-1/+1
| | | | -changed default windowed resolution to 1280x720
* Added missing \n in script error output.ZuBsPaCe2015-11-191-1/+1
|
* Nice error output padding. Code location behind " At: " is now aligned with ↵ZuBsPaCe2015-11-191-9/+17
| | | | the error message above. Also removed the dot after the file location.
* Set console background color on windows in SetConsoleTextAttribute, ↵ZuBsPaCe2015-11-191-5/+8
| | | | otherwise text background will be black, which looks strange if the terminal color is not black.
* Set output color of ERR_SCRIPT messages to purple. Same as on linux.ZuBsPaCe2015-11-191-1/+1
|
* Removed ANSI error codes from windows terminal error output. Windows does ↵ZuBsPaCe2015-11-191-6/+6
| | | | | | | not support them. See: http://stackoverflow.com/questions/16755142/how-to-make-win32-console-recognize-ansi-vt100-escape-sequences See: http://stackoverflow.com/questions/22777142/is-there-a-way-to-make-windows-output-ansi-escape-sequences?lq=1
* Inconsistent code formatting in print_error (Newlines and spaces)ZuBsPaCe2015-11-191-36/+37
|
* Merge pull request #2718 from SaracenOne/audio_system_crash_fixJuan Linietsky2015-11-181-1/+2
|\ | | | | Fixed Audio System Crash
| * Moved deleting sample player in OS finalize methods to before deleting audio ↵Saracen2015-11-021-1/+2
| | | | | | | | server to prevent crash when exiting.
* | Merge pull request #2737 from akien-mga/type-specific-error-outputJuan Linietsky2015-11-181-7/+18
|\ \ | | | | | | Display error type (error, warning, script error) in OS::print_error + cleanup error ANSI coloring
| * | Fix error messages forcing a white font for subsequent messagesRémi Verschelde2015-11-101-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | This is achieved using the "no specific formatting" \E[0m tag. Fixes #2566. Also remove the hardcoded black background colour and use default bolded terminal font for error message. Error logs should now look good both on terminals with a dark and light background colour.
| * | Display error type (error, warning, script error) in OS::print_errorRémi Verschelde2015-11-101-7/+18
| |/ | | | | | | | | | | Previously all types of errors would be shown as ERROR, thus making for example warnings (WARN_PRINT) somewhat aggressive. ERROR is displayed in red, WARNING in yellow and SCRIPT ERROR in magenta (though the latter does not seem used so far). Fixes #1127.
* / windows crash and bind placeholder methodAriel Manzur2015-11-141-3/+3
|/
* Added ability to set custom mouse cursors. Not hardware accelerated yet.Juan Linietsky2015-09-241-0/+10
|
* Add OS.get_system_time_msecMaximillian2015-08-061-0/+6
|
* Complete fix for windows compilabilityest312015-06-071-1/+2
| | | | Thanks @volzhs for testing :)
* Fix windows compilabilityest312015-06-071-17/+4
|
* Add OS.get_time_zone_info functionest312015-06-061-0/+30
| | | | | | The returned dictionary maps "name" to the name of the current time zone, and "bias" to a bias from UTC in minutes.
* Add utc param to get_time and get_date methodsest312015-06-061-4/+10
| | | | | | If utc == false, we return the local time, like before. Otherwise, we return UTC time. utc defaults to false to not break behaviour.
* Use local time for both time and date on winest312015-06-061-1/+1
| | | | On unix and nacl, both date and time are expressed in local time.
* ability to run 2D physics in a threadJuan Linietsky2015-05-261-2/+5
| | | | | also, 2D physics is now thread safe too. see physics_2d/thread_model
* Merge remote-tracking branch 'origin/master'Juan Linietsky2015-05-041-1/+8
|\ | | | | | | | | Conflicts: drivers/windows/dir_access_windows.cpp
| * add missing WM_RBUTTONDBLCLK messagesanikoyes2015-03-251-1/+8
| |
* | small unicode fixesJuan Linietsky2015-05-041-5/+6
|/
* window managements functions workJuan Linietsky2015-03-231-19/+100
| | | | but still side-functions, all API needs to be migrated to them