aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/pugl_win.cpp
AgeCommit message (Collapse)AuthorFilesLines
2019-07-20Use C for Windows implementationDavid Robillard1-781/+0
This avoids C++ binary compatibility and dependency hassles when cross-compiling.
2019-06-30Tidy up whitespaceDavid Robillard1-0/+1
2019-06-30Clean up redundant wrappers around SetWindowLongPtrDavid Robillard1-16/+2
2019-06-30Implement attributes on WindowsDavid Robillard1-46/+190
2019-06-30Clean up window creation on WindowsDavid Robillard1-30/+24
2019-06-29Fix various warningsDavid Robillard1-11/+11
2019-06-27Enable vsync on WindowsDavid Robillard1-0/+9
2019-06-27Draw while resizing on WindowsDavid Robillard1-0/+2
2019-06-27Add puglGetTime()David Robillard1-0/+13
2019-06-27Remove redundant glFlush on WindowsDavid Robillard1-1/+0
2019-06-27Fix some warnings on WindowsDavid Robillard1-5/+5
2019-06-27Remove dead code on WindowsDavid Robillard1-17/+0
2019-06-27Fix window embedding on WindowsStefan Westerfeld1-1/+1
2019-06-27Consistently use uint32_t everywhereDavid Robillard1-5/+5
2019-02-17Add puglGetProcAddress for using OpenGL extensionsDavid Robillard1-0/+6
2019-02-17Add configuration APIDavid Robillard1-1/+1
2019-02-16Clean up includesDavid Robillard1-2/+2
2016-10-29Properly reset view->redisplay on windowsHanspeter Portner1-0/+1
2016-09-19Fix compilation on WindowsDavid Robillard1-12/+0
2016-09-14Fix puglInitInternals prototypeDavid Robillard1-1/+1
2016-09-01Add PUGL_CLOSE eventDavid Robillard1-4/+1
This allows purely event-driven applications to handle window close. Something more extensible for WM message seems like it might be a good idea here, but I can't think of specific uses, so this will do.
2016-09-01Add puglGetVisible()David Robillard1-0/+2
2016-08-31Replace send_event with extensible flagsDavid Robillard1-3/+5
This is currently functionally equivalent, but taking up space in the event struct for a single bool which could be used for 32 flags for any number of things that might show up in the future seems like a very bad idea.
2015-11-13Fix minor style issuesDavid Robillard1-3/+3
2015-11-12Fix memory leaksDavid Robillard1-0/+1
2015-11-11Add API to set window class nameDavid Robillard1-20/+14
2015-09-13Fix compilation on Windows.David Robillard1-20/+20
2015-09-13Merge branch 'master' of git.drobilla.net:/home/drobilla/git.drobilla.net/puglDavid Robillard1-85/+258
2015-09-13Preliminary Windows event work.David Robillard1-85/+258
2015-09-13Merge branch 'master' of git.drobilla.net:/home/drobilla/git.drobilla.net/puglDavid Robillard1-4/+10
2015-09-12Update copyright dates.David Robillard1-1/+1
2015-09-12Add puglWaitForEvent for blocking main loops.David Robillard1-0/+7
2015-07-12Fix whitespace.David Robillard1-3/+2
2015-03-03Fix compilation on Windows.David Robillard1-1/+1
2014-12-16Only handle Windows events for the view window.Robin Gareus1-1/+1
Conflicts: pugl/pugl_win.cpp
2014-12-16Ensure unique window class IDs for long titles.Robin Gareus1-1/+1
Conflicts: pugl/pugl_win.cpp
2014-12-16Fix Windows window class name.Robin Gareus1-1/+2
Conflicts: pugl/pugl_win.cpp
2014-12-1664bit Windows update.Robin Gareus1-1/+10
Conflicts: pugl/pugl_win.cpp
2014-12-16Support minimum window size.Robin Gareus1-2/+15
Conflicts: pugl/pugl_win.cpp
2014-12-16Fix windows scroll wheel.Robin Gareus1-4/+8
Conflicts: pugl/pugl_win.cpp
2014-12-16Gracefully handle init failure on Windows.Robin Gareus1-2/+18
Conflicts: pugl/pugl_win.cpp
2014-12-16Never redisplay after close.Robin Gareus1-0/+1
Conflicts: pugl/pugl_x11.c
2014-09-27Improve documentation.David Robillard1-1/+1
2014-08-28Fix compilation on Windows.David Robillard1-8/+24
2014-08-27Event-based dispatch.David Robillard1-0/+6
2014-07-16Various minor fixes (#953).David Robillard1-1/+2
2014-05-13Fix compilation on Windows. Maybe.David Robillard1-23/+33
2014-05-13Minor fixes.David Robillard1-4/+4
2014-05-13Fix non-extensible puglInit API.David Robillard1-6/+22
Fix memory leak.
2014-01-27Fix event timestamps on win32, probably.David Robillard1-4/+4
Fix horizontal scroll events on win32, maybe.