Seunghun Lee [Thu, 13 Jul 2023 07:11:42 +0000 (16:11 +0900)]
subsurface: Remove check for subsurface on creation
The sub-surface should be able to be created with the surface that used
to be a sub-surface. This has been unable because of
ds_surface_is_subsurface() so this patch removes this check.
Instead, the ds_surface_set_role() will ensure that if the given surface
can have a role.
Change-Id: I12f7b6fa525728f86404a7e8f14574ef66534c6a
Seunghun Lee [Thu, 13 Apr 2023 01:08:22 +0000 (10:08 +0900)]
subsurface: Add missing cache initialization
This is to fix a crash attempting to use uninitilized cache state.
Change-Id: Ic7d4e241dee046e98b030c6ade815c28b55408bc
Seunghun Lee [Fri, 28 Apr 2023 04:54:19 +0000 (13:54 +0900)]
subsurface: Add ds_subsurface_create() API
It's to allow compositor to create a wl_subsurface with its own wayland
resource id.
Change-Id: Iefd982885ec6deeaa8274399826aa9ff9936f09d
Seunghun Lee [Wed, 12 Apr 2023 07:53:25 +0000 (16:53 +0900)]
subcompositor: Split out from compositor
Change-Id: Ib3cd4a2caedccca91af3397df31ccaba20580ba0
Seunghun Lee [Thu, 8 Jun 2023 23:50:42 +0000 (08:50 +0900)]
xdg_shell_v6: Emit new_surface signal on toplevel creation
It's actually supposed to emit new_surface signal on wl_surface.commit()
of xdg_toplevel_v6.
However, the tizen application doesn't follow this rule for historical
reason, and this patch makes new_surface signal be emitted on creation
of toplevel to make tizen applications work properly.
Change-Id: I5dc7f8104935ac1ad67b235afca384dbf8eb7414
Seunghun Lee [Thu, 8 Jun 2023 06:32:57 +0000 (15:32 +0900)]
xdg_shell_v6: Remove some exception handling
This is to support for tizen applications. They are not conforming to
some of the rules that wayland specification requires, for example, the
rule that the surface can not have more than one role.
Change-Id: I1bc782ba862c6552c6307efd73170051c1cc0906
Seunghun Lee [Fri, 2 Jun 2023 04:36:09 +0000 (13:36 +0900)]
xdg_shell_v6: Reset role data
It has to reset role data when xdg_toplevel_v6 is destroyed.
Otherwise, the role->commit() callback can be called with a freed
toplevel pointer and the process would end up being crashed.
Change-Id: Ida94443c1bb256847b8a1cbadd69db94afef452b
Seunghun Lee [Fri, 2 Jun 2023 04:33:46 +0000 (13:33 +0900)]
surface: Add null check on role_data
The role_data can be null if the role is no longer valid.
Change-Id: If7da1906ea9c8aa1bffc440417ea7881c22e57ab
Seunghun Lee [Tue, 23 May 2023 01:24:28 +0000 (10:24 +0900)]
xdg_shell_v6: Add ds_xdg_surface_v6_from_resource()
Change-Id: Ie357eff7049a409a3bed99e65a77085aa69b5a50
Seunghun Lee [Tue, 23 May 2023 01:23:32 +0000 (10:23 +0900)]
Expose ds_xdg_shell_v6 as ABI
Change-Id: Icde932664fe639394c2aef2ea22f0a867ca9f7c5
Seunghun Lee [Mon, 15 May 2023 06:57:00 +0000 (15:57 +0900)]
xdg_toplevel_v6: Implement remaining part of xdg_toplevel_v6
This makes xdg_shell_v6 work properly.
Change-Id: I33ff81c5870aaf101471a7d68666e61d11d708be
Seunghun Lee [Mon, 15 May 2023 05:27:52 +0000 (14:27 +0900)]
xdg_toplevel_v6: Remove an unused field in struct
Change-Id: Idab336b073cbcc768c1d3c1bc7af6d10b144f76e
Seunghun Lee [Mon, 15 May 2023 05:05:58 +0000 (14:05 +0900)]
xdg_toplevel_v6: Use toplevel for user data
Change-Id: I5445632e0e56b3fb1273fab90edde85e43649392
Seunghun Lee [Mon, 15 May 2023 01:54:03 +0000 (10:54 +0900)]
xdg_shell_v6: Add ds_xdg_toplevel_v6_set APIs
Change-Id: I3d57455ff3cdd41e0abb3f30b2513f777d422122
Seunghun Lee [Mon, 15 May 2023 01:42:11 +0000 (10:42 +0900)]
xdg_toplevel_v6: Fix typo
Change-Id: I245eaf9b7ba2024cefa0702fb2b238349aa67ffa
Seunghun Lee [Thu, 11 May 2023 06:06:29 +0000 (15:06 +0900)]
data_source: Remove pre_destroy signal
Now that the wl_signal_emit_mutable() is used, the `pre_destroy` signal
is no longer necessary.
Change-Id: Iec6ea58c20e46b3de97625904b9b58499d19f024
Seunghun Lee [Thu, 11 May 2023 05:15:58 +0000 (14:15 +0900)]
tinyds: Fix crash when unlink uninitialized list
Change-Id: I33622bf48720fcf892e98fd6095ac3655aba7341
Seunghun Lee [Thu, 11 May 2023 04:48:11 +0000 (13:48 +0900)]
Use wl_signal_emit_mutable()
It's a safer version of wl_signal_emit().
Change-Id: I938dd15116549640c24af97e8f4a3b0bd379ae3c
Seunghun Lee [Wed, 21 Jun 2023 05:12:04 +0000 (14:12 +0900)]
tinyds: Clear focus only if no view to be focused
Change-Id: I6fb3fa176443bbdf6768a194f8415acf2a98b02d
Seunghun Lee [Wed, 21 Jun 2023 05:08:35 +0000 (14:08 +0900)]
tinyds: Activate/deactivate xdg_surfaces
This change will activate and deactivate xdg_surfaces when keyboard
focus changes. This lets client know if it has focus and the client will
repaint accordingly.
Change-Id: Idf774f5d4e0bb8a272d5833b235ea2d4433d75f4
Seunghun Lee [Thu, 23 Mar 2023 08:10:56 +0000 (17:10 +0900)]
Expose ds_buffer as ABI
Change-Id: Ife3b046ef3d6ef4afc8efdfa188e8bdf09791f32
Seunghun Lee [Thu, 15 Jun 2023 00:53:31 +0000 (09:53 +0900)]
surface: Initialize current commit state before update
Since the current state is used to distinguish updated fields, the
current state has to be initialied instead of accumulating.
Change-Id: Ibbed13100b949993a2d230200950c99cda4cc174
Seunghun Lee [Thu, 15 Jun 2023 00:51:44 +0000 (09:51 +0900)]
surface: Accumulate commit state on surface_state_move
Instead of having replaced commit state with next one, this patch
accumulates commit state. Otherwise, cached state would be replaced by
the pending state.
If a state needs to be replaced, then caller can initialie the commit
state before the call to surface_state_move().
Change-Id: I92072b38989f14fa4db84d95329d058cab6614f2
Seunghun Lee [Tue, 30 May 2023 08:20:16 +0000 (17:20 +0900)]
subsurface: Add request_move signal
This is to inform an exact timing to move a subsurface.
Change-Id: Ib2aaaccbdc6a92bfa7cf7b818cc06a3057414631
Seunghun Lee [Thu, 27 Apr 2023 04:47:42 +0000 (13:47 +0900)]
subsurface: Add cached signal
The cached signal can be used for wl_surface add-on objects such as
wl_viewport, wp_presnetaiton to get a chance to cahce its interesting
pending states.
Change-Id: I7e0d66e833686853b66d8ff8251edc97bdfe7aa2
Seunghun Lee [Thu, 27 Apr 2023 04:46:28 +0000 (13:46 +0900)]
subsurface: Add ds_subsurface_from_surface()
As the name explains itself, the API is to get a ds_subsurface from a
ds_surface.
Change-Id: Iada285039de4e78c1df171d885128c72cd3cdc1c
Seunghun Lee [Thu, 15 Jun 2023 05:40:44 +0000 (14:40 +0900)]
box: Use spaces instead of a tab for indentation
Change-Id: I4eb36cc4491f5e5e0901f435288fad5a6f35ff2d
Seunghun Lee [Thu, 15 Jun 2023 01:54:51 +0000 (10:54 +0900)]
box: Remove duplicate transform calculation
Change-Id: I20a78ff303061e0bb1a3a42dbc35f0ee4f685687
Seunghun Lee [Wed, 22 Feb 2023 05:35:35 +0000 (14:35 +0900)]
Expose ds_subsurface as ABI
Change-Id: I57a13628ea72393ec0b4d89442ee20bc9b5751b0
Seunghun Lee [Fri, 28 Apr 2023 05:06:33 +0000 (14:06 +0900)]
subsurface: Destroy after destruction of parent surface
A subsurface will be destroyed after its parent surface because the
subsurface becomes inert when its parent is destroyed.
Thus, we can make sure that a subsurface always has a valid parent.
Change-Id: I50ac03e9e3e7bd4373a2f028d89697d597016889
Seunghun Lee [Wed, 22 Feb 2023 00:52:38 +0000 (09:52 +0900)]
subsurface: Add cached states
This makes subsurface work with cached states depending on the sync
mode.
Change-Id: I186de52c6c4bc20329e61e7ec2a85185dedfd6c8
Seunghun Lee [Wed, 22 Feb 2023 05:10:00 +0000 (14:10 +0900)]
Expose ds_surface as ABI
Change-Id: I43ee7c7423915ead7ac0b0f924436e9e84ac9c48
Seunghun Lee [Thu, 11 May 2023 05:46:27 +0000 (14:46 +0900)]
drag: Fix wrong error check
That was a mistake made by commit
3f83416b.
Change-Id: I2431b9f9a0d5dd6ba1eddb1635d9c8e172c6ec82
Seunghun Lee [Mon, 20 Mar 2023 04:48:36 +0000 (13:48 +0900)]
Fix build error by -Werror=shadow
The global variable of buffer seemed to have been accidently inserted by
the commit,
4304a4d4. This removes this unused variable.
Change-Id: I98118f54d38912a0e54758c4caeaaab5cb48f3b1
Seunghun Lee [Mon, 20 Mar 2023 04:47:51 +0000 (13:47 +0900)]
util: Fix mismatched declaration of prototype
Change-Id: I845c684ea869bfda3a9d57409fc827c99f81677a
Seunghun Lee [Thu, 29 Dec 2022 07:21:55 +0000 (16:21 +0900)]
input_device: Remove unused include
Change-Id: Id761447c4eaa675df8b1e1a3bdfd210fec7f008e
Seunghun Lee [Thu, 29 Dec 2022 07:16:41 +0000 (16:16 +0900)]
input_device: Put input_device impelmentation into a directoy
Change-Id: I4880c9821045ba4ffc5480f756295459048e8939
Seunghun Lee [Thu, 29 Dec 2022 06:57:47 +0000 (15:57 +0900)]
compositor: Put compositor implementation into a directory
This patch renames and puts all related compositor implementation into
one directoy.
Change-Id: I819e0e6f9e4c574a3e03ab7f2b452dd7fa9b5cec
Seunghun Lee [Thu, 8 Dec 2022 09:20:04 +0000 (18:20 +0900)]
Add defs.h to export helper macros
We need to export helper macros and definitions for libds-tizen.
Change-Id: I14d8e064980a56f98e9f107473638b42b2e5eb4d
Seunghun Lee [Thu, 27 Oct 2022 06:00:37 +0000 (15:00 +0900)]
Rename event types for consistency
The event type names should be prefixed with `ds_{submodule}_event_`.
Change-Id: I72dd9ee5df04042dd061a9c5a0641a6c120dca22
Seunghun Lee [Mon, 24 Oct 2022 01:41:57 +0000 (10:41 +0900)]
Create wl_resource with minimum version
The version of wl_resource has to be the minimum among the versions for
which both compositor and client support.
Change-Id: I16e310e8f5aaec570b1dc1a956b05fd115facd58
Seunghun Lee [Sun, 23 Oct 2022 23:51:33 +0000 (08:51 +0900)]
surface: Use DS_FLAG_* macros
Change-Id: I67d3134e36c70aa7b490dd7f7c4d23438789118e
Seunghun Lee [Sun, 23 Oct 2022 23:43:16 +0000 (08:43 +0900)]
Replace MIN macro with DS_MIN
Change-Id: I03566bf438710b36387c27bbb547bb7bf0ee1c7f
Seunghun Lee [Fri, 21 Oct 2022 05:41:52 +0000 (14:41 +0900)]
Use DS_ASSERT macro instead of assert()
Change-Id: Iecf32f4173556f50c913c50d58338062ae1daf24
Seunghun Lee [Thu, 20 Oct 2022 04:26:33 +0000 (13:26 +0900)]
util: Add helper macros
Change-Id: I955e2744468e314250af2bc3479496b992cb604c
Seunghun Lee [Thu, 27 Oct 2022 06:02:35 +0000 (15:02 +0900)]
Fix unused variable warning
Change-Id: Iabad6e7f7d390da7ff9c312b49bf7e96a90c3563
duna.oh [Mon, 17 Oct 2022 08:38:32 +0000 (17:38 +0900)]
backend-wayland: create cursor and show it when pointer enters
get wl_cursor from default cursor theme.
name: "left_ptr"
image_count: 1
image[0]->width: 10, height: 16, hotspot_x: 1, hotspot_y: 1
Change-Id: I7438282d007647aeab3fd9bcb0c5eaf5dc5f155b
duna.oh [Tue, 4 Oct 2022 03:35:07 +0000 (12:35 +0900)]
clients: Fix null dereferencing
Change-Id: I5bf4aaa0c28e552d1377585a6cc570e1ab376305
duna.oh [Mon, 19 Sep 2022 02:33:35 +0000 (11:33 +0900)]
libinput: use ds_log_error() which calls 'strerror_r'
strerror makes no guarantee of thread safety.
It'd better use strerror_r function instead.
Change-Id: I8fe56323b0f81343e7d8082146724a7223cbdebf
Seunghun Lee [Thu, 25 Aug 2022 07:21:46 +0000 (16:21 +0900)]
surface: Flesh out handling viewport
Change-Id: Ida32b06ea9b1f2aa38f9dc552c2fb318daa4fa77
Seunghun Lee [Thu, 25 Aug 2022 06:50:37 +0000 (15:50 +0900)]
surface: Add ds_surface_viewport
This introduces ds_surface_viewport and its functions to be used for
manipulating viewport of surface.
The ds_surface_viewport is to provide an exclusive access of surface
viewport for all viewport protocols such as wp_viewport, scaler, and
tizen_viewport.
Change-Id: Ia502902ad418120993cf7f14a6348bcf5e33ba8e
Seunghun [Tue, 23 Aug 2022 07:32:09 +0000 (16:32 +0900)]
util: Add box util
Change-Id: I759c39e0dedf218f63064cd7e479de996d058987
Seunghun Lee [Tue, 6 Sep 2022 01:36:38 +0000 (10:36 +0900)]
clients: Fix null dereferencing
Change-Id: Ibce07f092400ecedbe3ad93d220c06fe3c87f97a
Seunghun Lee [Tue, 6 Sep 2022 01:18:42 +0000 (10:18 +0900)]
clients: Silence wstringop-truncation warning
Change-Id: Ia90870b6b2b21832f7f440cd141c368a314a86b3
Seunghun Lee [Mon, 5 Sep 2022 09:36:44 +0000 (18:36 +0900)]
log: Replace strerror with strerror_r
This means to use thread safe API.
Change-Id: I68d157d1107261d3252991ec54ae8f16381fb221
Seunghun Lee [Mon, 5 Sep 2022 04:45:32 +0000 (13:45 +0900)]
client_buffer: Assert if shm_buffer is null
Change-Id: I55b352663dcb9a2edbf863a279b9bdcc44e75269
duna.oh [Mon, 5 Sep 2022 02:17:00 +0000 (11:17 +0900)]
libinput: do not call close() when fd is negative
fix potential security issue
Change-Id: Ie6ee22ced3c913902124daed181056bfdcaa7cd7
duna.oh [Fri, 2 Sep 2022 06:36:57 +0000 (15:36 +0900)]
tinyds: use 'rand_r' instead of function 'rand'
For thread safety, rand_r is preferred to use.
Change-Id: I6076f937595480a28fb83e9efadc02e53f345542
Seunghun Lee [Fri, 26 Aug 2022 06:28:39 +0000 (15:28 +0900)]
region: Add missing return
There is nothing to do except for copy a source to a destination when
1.0 scale given.
Change-Id: Id6d5dcfc51763280d46c199c5e93356a74fab898
Seunghun Lee [Thu, 25 Aug 2022 09:28:27 +0000 (18:28 +0900)]
shm: Fix using negative fd
Change-Id: Ib241e89b48c3ff338ecd30178a33a7477802ff0b
Seunghun Lee [Thu, 25 Aug 2022 09:08:32 +0000 (18:08 +0900)]
allocator/shm: Cast int to size_t to avoid warning
Change-Id: I1b5f9fefb99222d7f150743acd5c03b8a1e9e12c
Seunghun Lee [Thu, 25 Aug 2022 08:57:30 +0000 (17:57 +0900)]
clients/simple-shm-shell: Don't use vulnerable functions
Change-Id: I800e57d29f660844fee806b7916ab6c4edffa74b
Seunghun Lee [Thu, 25 Aug 2022 07:23:32 +0000 (16:23 +0900)]
surface: Fix emitting commit event twice
This patch removes one of the commit events being emitted and therefore
the commit event is emitted in surface_commit_state() once.
And this moves surface->role->commit() accordingly.
Change-Id: I427d3170b53acc08527892c2c2dc2f559870231e
Seunghun Lee [Tue, 23 Aug 2022 07:52:32 +0000 (16:52 +0900)]
Update .gitignore
This adds vim swapfiles.
Change-Id: Ic5adc7b758e70dfbac2022ee2cce37ca6cc32e7a
SooChan Lim [Fri, 19 Aug 2022 11:10:01 +0000 (20:10 +0900)]
subsurface: add ds_subsurface_from_resource
This make get the ds_subsurface from wl_subusrface resource.
Change-Id: I8290a812980773fbe82197eb2062470b2ed1c303
Seunghun Lee [Thu, 18 Aug 2022 08:49:13 +0000 (17:49 +0900)]
data_device: Fix null-dereferencing
Change-Id: I8f9ad9e1be245812d29d479dc8d4878126d7baba
Seunghun Lee [Thu, 18 Aug 2022 04:33:19 +0000 (13:33 +0900)]
data_device: Fix crash with workaround
data_offer_destroy() could be called twice on the destry signal of
data_source and it eventually led to crash.
Change-Id: If4530872cce7cbbaee7455a3dba71fd69abebee6
Seunghun Lee [Thu, 18 Aug 2022 02:21:07 +0000 (11:21 +0900)]
data_device: Add support for touch drag
Change-Id: Ifed6d3b8718ddb4a465ad6c1836d24b61e148b27
Seunghun Lee [Thu, 18 Aug 2022 01:46:12 +0000 (10:46 +0900)]
data_device: Fix crash when destroying data_offer
The listener of destroy of data_source has to be removed when destroying
data_offer no matter whether offer->source is null or not.
That's because there is the case where calls data_offer_destroy after
nullifying offer->source.
Change-Id: I3c2fd97de39b52b4cae4de4c1390e773fb7c1047
Seunghun Lee [Wed, 17 Aug 2022 06:00:24 +0000 (15:00 +0900)]
data_device: Nullify {drag,offer}->source
This is to prevent the data_source from being destroyed repeatedly.
Change-Id: I5ce1efed2b81dabc8d7c8d9b5f8dea3b20b67fa7
Seunghun Lee [Wed, 17 Aug 2022 05:59:50 +0000 (14:59 +0900)]
data_device: Send dnd finish when destroying data_offer
Change-Id: I92ce0690b8dae6178c96cefd702b178e6fc7e610
Seunghun Lee [Wed, 17 Aug 2022 04:48:22 +0000 (13:48 +0900)]
data_device: Fix formatting
Change-Id: Ib33ed7c3420c4302c77d338f9c6588576ede3594
Seunghun Lee [Wed, 17 Aug 2022 04:40:50 +0000 (13:40 +0900)]
data_device, tinyds: Handle focus at data_device when a drag starts
This reverts commit "
a0b0f5148126278f3a3a9f1770cc746222f97a3,
"tinyds: Call ds_seat_pointer_notify_enter() before notify_motion()".
Plus, ds_seat_pointer_notify_enter() is called by drag implementation.
Change-Id: Ib648df2f45c8274956bbc3ab557ba506002a3a91
Seunghun Lee [Wed, 17 Aug 2022 04:35:07 +0000 (13:35 +0900)]
seat: Add ds_seat_pointer_get_focused_surface()
This function will be used by data_device to give a focus when a drag
starts.
Change-Id: I13dc4ea73ac8b5d5c4bab6c3e62c1e4976e91a86
Seunghun Lee [Wed, 17 Aug 2022 01:15:01 +0000 (10:15 +0900)]
data_device: Refactor code of drag and drop
Change-Id: Ie3c7230e28a892929309ca394a116dce9a10b986
duna.oh [Fri, 19 Aug 2022 01:37:33 +0000 (10:37 +0900)]
seat: export functions for getting seat/seat_client
This patch allows the compositor to be able to get
ds_seat/ds_seat_client from wl_resource.
Change-Id: I696a288fd5e99940cb2c918bb6c88d13a077adf3
Junkyeong Kim [Thu, 18 Aug 2022 08:30:49 +0000 (17:30 +0900)]
output: add omitted APIs to header
Change-Id: Ie0d7d505e0aaa1f6d82265d69054db91997bee5a
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
Junkyeong Kim [Fri, 12 Aug 2022 08:09:21 +0000 (17:09 +0900)]
buffer: Add ds_buffer_get_resource API
Change-Id: I31908a439eb438dfd99221618742174f1872e44f
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
Seunghun Lee [Tue, 16 Aug 2022 10:23:41 +0000 (19:23 +0900)]
tinyds: Handle request_start_drag event
Change-Id: I83f87b5a8220aa5aa9dd3720bf02b57ab3e99bbd
Seunghun Lee [Tue, 16 Aug 2022 10:20:34 +0000 (19:20 +0900)]
tinyds: Call ds_seat_pointer_notify_enter() before notify_motion()
This is to give a chance to the pointer grabber of drag to handle enter.
Change-Id: I931ef7094f974b7150dd1add4d31a4c57f9afa33
Seunghun Lee [Tue, 16 Aug 2022 10:16:04 +0000 (19:16 +0900)]
tinyds: Fix server_view_at()
Change-Id: I522fde7fb5c82c29df22d74a524c75e6813cf839
Seunghun Lee [Tue, 16 Aug 2022 10:14:03 +0000 (19:14 +0900)]
tinyds: Place toplevel surfaces on random position
This is to make drag and drop test easier.
Change-Id: I11d8da198a42398e11c21b9901db3952f3daef59
Seunghun Lee [Tue, 16 Aug 2022 10:11:42 +0000 (19:11 +0900)]
data_device: Add start drag operation
Change-Id: I70007fd98a9e64653bb06a14e16ec5dc21b05b7c
Seunghun Lee [Tue, 16 Aug 2022 10:10:54 +0000 (19:10 +0900)]
seat: Add APIs needed by data_device
Change-Id: I879fccd534aec397fcca2e41a9cc9ac4169d0eba
Seunghun Lee [Fri, 12 Aug 2022 02:17:40 +0000 (11:17 +0900)]
data_device: Create ds_data_device per seat_client
Change-Id: Ib2c74c3f26ca7bead4d707e7b642a8e8d605be7c
Seunghun Lee [Thu, 11 Aug 2022 08:44:59 +0000 (17:44 +0900)]
data_device: Add dnd implementation to ds_data_source_client
Change-Id: I2c08a3a803419e079bf0607dbfd2bae699732fc7
Seunghun Lee [Thu, 11 Aug 2022 07:05:16 +0000 (16:05 +0900)]
data_device: Add dnd implementation to ds_data_offer
Change-Id: I5c38f00421dda52dcaa08bf90cca18b2bc73f939
Seunghun Lee [Thu, 11 Aug 2022 02:08:52 +0000 (11:08 +0900)]
data_deivce: Add dnd implementation to ds_data_source
This adds dnd interface to ds_data_source.
Change-Id: I35f75977396f82774cf350df42d20f44c5903e80
Seunghun [Tue, 9 Aug 2022 10:49:54 +0000 (19:49 +0900)]
data_device: Start implementing drag and drop
This patch introduces ds_drag and ds_drag_icon to handle drag and drop
operation.
Change-Id: Icfeedc47fba42f77fa632e186379373b925d9f44
Seunghun Lee [Thu, 11 Aug 2022 00:45:03 +0000 (09:45 +0900)]
seat: Rename ds_seat_keyboard_destroy_grab properly
This renames ds_seat_keyboard_destroy_grab to
ds_seat_keyboard_grab_destroy
The function takes ds_seat_keyboard_grab as a first argument, and we
use, by convention, name of object at the beginning of function name.
Change-Id: Ifaf19e319025644dfcee4a8f88bcfb3d0816aba0
Seunghun Lee [Thu, 11 Aug 2022 00:34:34 +0000 (09:34 +0900)]
seat: Fix formatting
This removes braces from if having one statement.
Change-Id: Iaa06dc69ce3a32bf112adfb9bbd5f28feca1bb2b
duna.oh [Fri, 12 Aug 2022 10:36:10 +0000 (19:36 +0900)]
seat: add extern 'C' in seat.h
Without this extern "C", C++ program (ex. test cases) does not recognize
the symbols in this header file.
Change-Id: I8d86fbfe59aa7f8f051ba34e7240ac5bbfcc9969
Seunghun Lee [Wed, 3 Aug 2022 04:15:06 +0000 (13:15 +0900)]
xdg_shell: Add toplevel_set_activated()
Change-Id: Ic6b9a12ce5a158e6e737593c05e6b765ee5c0673
Seunghun Lee [Wed, 10 Aug 2022 05:07:53 +0000 (14:07 +0900)]
packaging: Fix packaging break
Remove wl-backend binary from packaging. This change should have been
applied to a follow commit.
Author: Seunghun Lee <shiin.lee@samsung.com>
Date: Thu Jul 14 09:30:42 2022 +0900
exmaples: Remove an example 'wl-backend'
The 'wl-backend' is no longer necessary.
Change-Id: Ia5d5a8038c8ee16dedf8a65f253cf761a5606ebc
Seunghun Lee [Thu, 14 Jul 2022 00:30:42 +0000 (09:30 +0900)]
exmaples: Remove an example 'wl-backend'
The 'wl-backend' is no longer necessary.
Change-Id: I98421fc0ae02f65693468ea013a24320092a4bda
Seunghun [Mon, 8 Aug 2022 07:29:14 +0000 (16:29 +0900)]
tinyds: Integrate idle_redraw into idle_task
Change-Id: Id653519e35f5a9787451abe481012ea9fa5996eb
Seunghun [Mon, 8 Aug 2022 07:15:58 +0000 (16:15 +0900)]
tinyds: Update seat capabilities properly
Change-Id: I1c3cee34e5c70bdfc4374f67e56e9d7236b5fda6
Seunghun [Fri, 5 Aug 2022 07:12:00 +0000 (16:12 +0900)]
tinyds: Fix not sendig all seat capabilities
The capabilities passing ds_seat_seat_capabilities should be set
bitwise.
Change-Id: Idb292124c14731560ad8fb16491ae2a9e1bbe0e5
Seunghun [Fri, 5 Aug 2022 06:24:21 +0000 (15:24 +0900)]
tinyds: Default to INFO log level
Set the default logging level to INFO, and for some logs that is
so frequently printed out, set to DEBUG.
Change-Id: Idd81e5a12d174abd93aeefe746c0c9be93aa8f77
Seunghun Lee [Thu, 4 Aug 2022 08:47:59 +0000 (17:47 +0900)]
tinyds: Refactor out
Change-Id: Ia4d51ce58790812d34ca64e013808455c66f5a45