aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11.c
AgeCommit message (Expand)AuthorFilesLines
2023-05-03Fix mismatched types in ternary expressionsDavid Robillard1-5/+6
2023-05-03Fix implicit sign conversionsDavid Robillard1-3/+3
2023-02-18Use XSetWMNormalHints instead of XSetNormalHintssjaehn1-1/+1
2023-02-15Fix crash on views with no title setDavid Robillard1-9/+11
2023-02-10Factor out macrosDavid Robillard1-8/+1
2023-01-14Add general string hint interfaceDavid Robillard1-10/+20
2023-01-11Guard against required hints explicitly being set to PUGL_DONT_CAREDavid Robillard1-0/+5
2023-01-11Clean up puglRealize() implementationsDavid Robillard1-10/+4
2023-01-11X11: Fix puglPostRedisplay() outside of event handlersDavid Robillard1-2/+4
2023-01-11X11: Make puglSendEvent() gracefully handle unrealized viewsDavid Robillard1-0/+3
2023-01-11Reduce duplicated codeDavid Robillard1-11/+1
2023-01-11X11: Fix positioning of top-level windows with decorationsDavid Robillard1-8/+65
2023-01-11Remove cached frame from viewDavid Robillard1-41/+89
2023-01-11Fix checks for invalid view positionsDavid Robillard1-1/+1
2023-01-10Add PUGL_CURSOR_ALL_SCROLLDavid Robillard1-0/+1
2023-01-10Fix inconsistent naming conventionDavid Robillard1-5/+5
2023-01-08Remove branch cloneDavid Robillard1-2/+0
2023-01-08X11: Add support for _NET_WM_PING protocolDavid Robillard1-14/+53
2023-01-08Add support for raising windowsDavid Robillard1-2/+13
2023-01-07Replace map/unmap events with more expressive configure eventsDavid Robillard1-17/+21
2023-01-07Add support for special view types and stylesDavid Robillard1-51/+185
2023-01-07Support closing views by sending a close eventDavid Robillard1-4/+26
2023-01-07Rename create/destroy events to realize/unrealizeDavid Robillard1-4/+3
2023-01-07Replace visible flag with a more descriptive view "stage"David Robillard1-4/+4
2023-01-04Add puglUnrealize()David Robillard1-16/+50
2023-01-02X11: Factor out getCurrentConfigurationDavid Robillard1-11/+18
2023-01-02Factor out common realize checks and initializationDavid Robillard1-14/+4
2023-01-02Fix PUGL_NUM_CURSORSDavid Robillard1-3/+1
2022-12-27Fix inconsistent initial window positioning across platformsDavid Robillard1-1/+1
2022-12-27Set transient parent when views are realized if necessaryDavid Robillard1-1/+1
2022-12-27Fail to set transient parent of views with a parent windowDavid Robillard1-0/+4
2022-12-24Fix weird/inconsistent control flow in puglSetSize()David Robillard1-3/+2
2022-12-24Add diagonal cursorsfalkTX1-2/+4
2022-10-07Use uppercase integer literal suffixesDavid Robillard1-10/+10
2022-07-16Fix missing field initializers when building as C++falkTX1-3/+3
2022-06-17Call XrmInitialize()David Robillard1-0/+1
2022-06-08Use consistent terminology for native viewsDavid Robillard1-1/+1
2022-06-08Separate platform.h from internal.hDavid Robillard1-0/+1
2022-06-08Separate private and public function implementationsDavid Robillard1-1/+1
2022-06-08Fix potential null pointer dereferenceDavid Robillard1-5/+5
2022-06-07Remove unnecessary forward-compatibility codeDavid Robillard1-4/+0
2022-06-07X11: Simplify dispatchX11Events()David Robillard1-31/+44
2022-06-07X11: Flush before returning from puglRealize()David Robillard1-0/+8
2022-06-03X11: Fix crash when input context is unavailable due to localesPace Willisson1-11/+17
2022-05-28Omit cursor_names if XCursor is not availableDavid Robillard1-0/+2
2022-05-23Add rich clipboard supportDavid Robillard1-84/+286
2022-05-21Add puglGetScaleFactor()David Robillard1-1/+36
2022-05-21Add puglSetPosition() and puglSetSize()David Robillard1-5/+48
2022-05-21Use consistent integer types for view positions and sizesDavid Robillard1-25/+25
2022-05-21Add a uniform API for setting size hintsDavid Robillard1-49/+42