Users browsing this thread: 14 Guest(s)
ckester
Nixers
I don't see why/how using pipes or sockets to ask a separate process to draw these window decorations would be any better than calling the API of a framework library(*), which is what most GUI applications currently do.

I.e., the API is already the interface enforcing the kind of separation of concerns you're looking for. For the process at the other end of the pipe/socket to work, you're going to have to send it pretty much the same data you're passing to the API, only now you'd be passing it via a more cumbersome mechanism.

(* Doesn't have to be a callback-driven framework, of course. A widget library or an immediate mode UI library like imgui or imtui is an interesting solution to some situations.)


Messages In This Thread
GUI pipes - by eduarch42 - 20-01-2020, 01:41 AM
RE: GUI pipes - by jkl - 20-01-2020, 10:34 AM
RE: GUI pipes - by eduarch42 - 21-01-2020, 11:38 PM
RE: GUI pipes - by pkal - 24-01-2020, 05:43 AM
RE: GUI pipes - by josuah - 25-01-2020, 02:05 PM
RE: GUI pipes - by z3bra - 25-01-2020, 06:28 PM
RE: GUI pipes - by eduarch42 - 25-01-2020, 08:27 PM
RE: GUI pipes - by z3bra - 26-01-2020, 09:08 AM
RE: GUI pipes - by eduarch42 - 27-01-2020, 12:00 PM
RE: GUI pipes - by Halfwit - 28-01-2020, 08:54 PM
RE: GUI pipes - by Halfwit - 28-01-2020, 08:58 PM
RE: GUI pipes - by eduarch42 - 28-01-2020, 09:42 PM
RE: GUI pipes - by eduarch42 - 28-01-2020, 09:48 PM
RE: GUI pipes - by josuah - 08-04-2020, 04:35 PM
RE: GUI pipes - by twee - 13-04-2020, 01:44 PM
RE: GUI pipes - by z3bra - 14-04-2020, 07:21 AM
RE: GUI pipes - by twee - 14-04-2020, 07:33 AM
RE: GUI pipes - by seninha - 01-05-2020, 09:45 AM
RE: GUI pipes - by ckester - 01-05-2020, 12:45 PM
RE: GUI pipes - by z3bra - 02-05-2020, 08:13 AM
RE: GUI pipes - by ckester - 02-05-2020, 03:42 PM