Marcus Fritzsch [Tue, 12 Sep 2017 10:29:09 +0000 (12:29 +0200)]
AFBClient: impl ptr is const
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 10:17:11 +0000 (12:17 +0200)]
client-lib: add cmakelists
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 10:06:20 +0000 (12:06 +0200)]
Move AFBClient to client-lib/
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 5 Sep 2017 14:45:49 +0000 (16:45 +0200)]
AFBClient: fix port sanity check
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 5 Sep 2017 07:54:58 +0000 (09:54 +0200)]
AFBClient: move dispatch_internal() to Impl ...
* ... move json argument helper to anon namespace
* call api_call() with this->
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 5 Sep 2017 07:50:25 +0000 (09:50 +0200)]
AFBClient: move api_call() to Impl as it's now private anyway.
* Also put json argument creation to helper function
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 5 Sep 2017 07:49:45 +0000 (09:49 +0200)]
AFBClient: use fputs where sensible, more this-> name qualification
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 5 Sep 2017 07:48:46 +0000 (09:48 +0200)]
AFBClient: prevent init if already initialized
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Mon, 4 Sep 2017 14:25:35 +0000 (16:25 +0200)]
AFBClient: fix some clang-tidy issues
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Mon, 4 Sep 2017 14:05:06 +0000 (16:05 +0200)]
Call event handler only if event-label matches
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Mon, 4 Sep 2017 13:20:56 +0000 (15:20 +0200)]
Add doc/
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Mon, 4 Sep 2017 12:58:08 +0000 (14:58 +0200)]
AFBClient: remove obsolete UNUSED() usages
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Mon, 4 Sep 2017 12:53:35 +0000 (14:53 +0200)]
Impl: use handler_fun instead of its full type
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Mon, 4 Sep 2017 12:47:44 +0000 (14:47 +0200)]
AFBClient: implement event handler dispatch
* requestSurface will store label if successful.
* onEvent calls AFBClient::Impl::event to dispatch the event.
* stripped down onCall and onEvent implementations.
* event names from onEvent are matched on-the-fly to
AFBClient::EventType.
* requestSurface with a name that is already known will fail
immediately.
* Removal of event handler not supported.
* Removal of surfaces not supported - assume the application
lives only as long as it's surface.
* Add minimal Event_Active event handler to main.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Mon, 4 Sep 2017 11:43:29 +0000 (13:43 +0200)]
Impl: made wsj1_itf const
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Mon, 4 Sep 2017 11:41:35 +0000 (13:41 +0200)]
Impl: made 'returned' boolean atomic
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Mon, 4 Sep 2017 11:27:43 +0000 (13:27 +0200)]
AFBClient: Pimpl'ed to hide impl details
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Mon, 4 Sep 2017 09:52:52 +0000 (11:52 +0200)]
remove json_object fwd decl
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Fri, 1 Sep 2017 12:39:28 +0000 (14:39 +0200)]
Guard dispatch using a mutex, remove dipatch() timeout parameter
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Fri, 1 Sep 2017 11:18:35 +0000 (13:18 +0200)]
AFBClient: remove call() method
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Fri, 1 Sep 2017 11:07:55 +0000 (13:07 +0200)]
AFBClient: TRACE() onReply too!
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Fri, 1 Sep 2017 10:55:56 +0000 (12:55 +0200)]
AFBClient: trace dispatch_internal(), header hygiene
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Fri, 1 Sep 2017 10:06:09 +0000 (12:06 +0200)]
AFBClient: make all call through call()
* Make all calls through call().
* dispatch() aggressively to ensure we actually dispatch our call
reply too.
* Extend scope tracing, guarded by NDEBUG.
* Remove onReply, always use the locally supplied callable.
* Simplify method implementations making API calls.
* Propagate API call result through call() method return value.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 31 Aug 2017 12:49:43 +0000 (14:49 +0200)]
AFBClient:: clang-format
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 31 Aug 2017 12:49:15 +0000 (14:49 +0200)]
AFBClient: fix NDEBUG usage
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 31 Aug 2017 12:42:55 +0000 (14:42 +0200)]
Make all non-public things private (move to impl)
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 31 Aug 2017 12:15:53 +0000 (14:15 +0200)]
Add set_event_handler, added int returns for all API methods.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 14 Sep 2017 12:04:49 +0000 (14:04 +0200)]
Application code clean-up
original author is Aurelian.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 14 Sep 2017 12:04:43 +0000 (14:04 +0200)]
Removing some test calls
There were some test calls left that don't make any sense to be
kept in the main().
Removed the extern C definitions of the functions used by the
application from the AFB.
Added some more debugging information
original author is Aurelian.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 29 Aug 2017 11:48:10 +0000 (13:48 +0200)]
WIP: add enddraw() and deacrivate_surface() implementations.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 29 Aug 2017 08:05:41 +0000 (10:05 +0200)]
WIP: make requestSurface/activateSurace() syncronous
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 14 Sep 2017 12:04:41 +0000 (14:04 +0200)]
Reading and exporting the surfaceID from WM
original author is Aurelian.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 14 Sep 2017 12:04:40 +0000 (14:04 +0200)]
Remove the AFB definition
original author is Aurelian.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Mon, 28 Aug 2017 11:14:56 +0000 (13:14 +0200)]
WIP: dispatch sd_events, but break qt event handling
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 14 Sep 2017 12:04:38 +0000 (14:04 +0200)]
Trying to fix the link with wsj1
original author is Aurelian.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 14 Sep 2017 12:04:36 +0000 (14:04 +0200)]
Adding some extra application parameters
original author is Aurelian.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 14 Sep 2017 12:04:35 +0000 (14:04 +0200)]
Moved the AFBClient to singleton
original author is Aurelian.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 14 Sep 2017 12:04:31 +0000 (14:04 +0200)]
Fix compilation for target
original author is Aurelian.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Thu, 14 Sep 2017 12:04:27 +0000 (14:04 +0200)]
Fix compilation on host
original author is Aurelian.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 10:02:38 +0000 (12:02 +0200)]
add AFBClient
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:37:09 +0000 (11:37 +0200)]
cmake: add file license header
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:36:02 +0000 (11:36 +0200)]
wm-request: add file license header
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:35:37 +0000 (11:35 +0200)]
cmake: add file license header
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:35:08 +0000 (11:35 +0200)]
policy: add file license header
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:34:55 +0000 (11:34 +0200)]
redraw_fixer: add file license header
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:42 +0000 (11:29 +0200)]
redraw_fixer: fix a couple of unneeded extra redundant stuff
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:41 +0000 (11:29 +0200)]
add redraw_fixer, separate controller tool
* Use the existing wayland.hpp/cpp implementation
* Listen for visibility and destination_rectangle events
* Apply changing values to opacity to "fix" redraw
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:41 +0000 (11:29 +0200)]
util: add ability to disable afb logging macro usage
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:40 +0000 (11:29 +0200)]
App: controller hooks impl
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:40 +0000 (11:29 +0200)]
policy: debuglog everytime-positive result
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:40 +0000 (11:29 +0200)]
Add visibility dst-rect controller hooks
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:39 +0000 (11:29 +0200)]
App: be more thorough on (de)activate()
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:39 +0000 (11:29 +0200)]
App: correctly deactivate sub surfaces
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:39 +0000 (11:29 +0200)]
App: remove unused field layouts
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:39 +0000 (11:29 +0200)]
App: fix missing layout_commit() on single-surface deactivate
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:38 +0000 (11:29 +0200)]
policy: add a simple policy stub, broke some layouting tho
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:38 +0000 (11:29 +0200)]
app: emit_syncdraw() only after layout commit to compositor
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:38 +0000 (11:29 +0200)]
layers/app: properly remove surfs, deactivate main_surface
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:37 +0000 (11:29 +0200)]
App: add layout_commit()
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:37 +0000 (11:29 +0200)]
App: single-method layout setup
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:37 +0000 (11:29 +0200)]
App: make a couple of methods private to signal internal use
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:36 +0000 (11:29 +0200)]
App: add enqueue_flushdraw() and check_flushdraw()
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:36 +0000 (11:29 +0200)]
App: do some clang-format
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:36 +0000 (11:29 +0200)]
App: rename api call implementations to api_*
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:35 +0000 (11:29 +0200)]
app/binding: implement crude syndraw/enddraw/flushdraw sequence
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:35 +0000 (11:29 +0200)]
App: std::move() optional wrapped values out of there
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:35 +0000 (11:29 +0200)]
App: thoroughly check LayoutState availability in activate too
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:35 +0000 (11:29 +0200)]
App: be more thorough when checking surface-associated LayoutState
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:34 +0000 (11:29 +0200)]
App: take local copies of some optional<> wrapped values.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:34 +0000 (11:29 +0200)]
App: emit_flushdraw() should actually emit a flushdraw event.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:33 +0000 (11:29 +0200)]
App: remove some superflous debuglog()
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:33 +0000 (11:29 +0200)]
layers.json: set OnScreen area to non-center non-full
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:33 +0000 (11:29 +0200)]
app: check layer <-> surface assoc more thoroughly
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:32 +0000 (11:29 +0200)]
wm-request: use a preset UUID if uuidgen cannot be found
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:32 +0000 (11:29 +0200)]
App/layers: deactivate surfaces on layers above.
* When activating a surface on layer x, all surfaces on all layers above
this will be deactivated.
* Remove main_surface special case (we get the same result by putting
the main_surface on the bottom layer).
* Track LayoutState per layer, make can_split() accept this layer-local
LayoutState for its decision.
* Sort layers on load according to their ID. That is, do not make use
Of the layer's z-order attribute, also there is no need to.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:32 +0000 (11:29 +0200)]
wm-request: fix unset-var error
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:32 +0000 (11:29 +0200)]
App: special-case (de)activation for main_surface
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:31 +0000 (11:29 +0200)]
misc: fix some minor style issues, fix SCOPE_TRACING compilation
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:31 +0000 (11:29 +0200)]
app: emit syncdraw and flushdraw events
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:30 +0000 (11:29 +0200)]
app: remove unsused surface ref in activate_surface()
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:30 +0000 (11:29 +0200)]
wayland: fix two instances of logdebug format breakage
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:30 +0000 (11:29 +0200)]
util/cmake: enable ScopeTracing through cmake variable option
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:30 +0000 (11:29 +0200)]
scripts: wm-request uses afb-client-demo
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:29 +0000 (11:29 +0200)]
app: do not inline assignments
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:29 +0000 (11:29 +0200)]
app/layers: consolidate signed/unsigned usage
* Also make use of optional's operator* where appropriate.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:29 +0000 (11:29 +0200)]
app/layout: fix split layout from and to transitions
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:28 +0000 (11:29 +0200)]
binding: protect raise(SIGKILL) by getenv
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:28 +0000 (11:29 +0200)]
binding: make the pending_events functionality nicer[tm]
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:28 +0000 (11:29 +0200)]
binding: ping() dispatches only pending events
* Also, move binding_m mutex to the binding glue.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:27 +0000 (11:29 +0200)]
binding: manual lock on API call, do not use noconcurrent bit
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:27 +0000 (11:29 +0200)]
app/main: dispatch wayland events using ping(), WIP on split layout
* Dispatch ayland events with ping() API call, after having read events
from wayland fd - in order to prevent indefinite-poll on wrongly read+
dispatch from multiple threads (dispatcher and API call).
* Add scope trace to all API call thunks.
* Split layout advancements, still broken AF though.
* Add App1 example split layout to App layer.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:27 +0000 (11:29 +0200)]
binding: add ping() API call
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:26 +0000 (11:29 +0200)]
app: remove last remnants of obsolete layout config
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:26 +0000 (11:29 +0200)]
layers: fix layers parsing, do not sort by prio
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:26 +0000 (11:29 +0200)]
util: add scope tracer utility (hack, but more or less useful)
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:26 +0000 (11:29 +0200)]
wayland: extend wl::display for finer grained dispatch control
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 12 Sep 2017 09:29:20 +0000 (11:29 +0200)]
WIP split layouts, reading config, defining data layout.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 5 Sep 2017 13:51:20 +0000 (15:51 +0200)]
App/binding: move binding_api impl to its own source file.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 5 Sep 2017 13:50:19 +0000 (15:50 +0200)]
main: only exit on hangup if WINMAN_EXIT_ON_HANGUP env var is present
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Marcus Fritzsch [Tue, 5 Sep 2017 13:04:59 +0000 (15:04 +0200)]
App: emit visibility events
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>