wlmaker
|
Classes | |
struct | wlmaker_tile_t |
Functions | |
static wlmaker_tile_t * | tile_from_interactive (wlmaker_interactive_t *interactive_ptr) |
static void | _tile_enter (wlmaker_interactive_t *interactive_ptr) |
static void | _tile_leave (wlmaker_interactive_t *interactive_ptr) |
static void | _tile_motion (wlmaker_interactive_t *interactive_ptr, double x, double y) |
static void | _tile_focus (wlmaker_interactive_t *interactive_ptr) |
static void | _tile_button (wlmaker_interactive_t *interactive_ptr, double x, double y, struct wlr_pointer_button_event *wlr_pointer_button_event_ptr) |
static void | _tile_destroy (wlmaker_interactive_t *interactive_ptr) |
wlmaker_interactive_t * | wlmaker_tile_create (struct wlr_scene_buffer *wlr_scene_buffer_ptr, wlmaker_cursor_t *cursor_ptr, wlmaker_interactive_callback_t tile_callback, void *tile_callback_arg, struct wlr_buffer *tile_released_ptr) |
void | wlmaker_tile_set_texture (wlmaker_interactive_t *interactive_ptr, struct wlr_buffer *tile_buffer_ptr) |
Variables | |
static const wlmaker_interactive_impl_t | wlmaker_interactive_tile_impl |
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
static |
Interactive callback: Button press.
interactive_ptr | |
x | |
y | |
wlr_pointer_button_event_ptr |
|
static |
Destroys the tile interactive.
interactive_ptr |
|
static |
Interactive callback: Cursor enters the tile area.
interactive_ptr |
|
static |
Interactive callback: Focus state change.
interactive_ptr |
|
static |
Interactive callback: Cursor leaves the tile area.
interactive_ptr |
|
static |
Interactive callback: Cursor motion.
interactive_ptr | |
x | |
y |
|
static |
Cast (with assertion) |interactive_ptr| to the |wlmaker_tile_t|.
interactive_ptr |
wlmaker_interactive_t * wlmaker_tile_create | ( | struct wlr_scene_buffer * | wlr_scene_buffer_ptr, |
wlmaker_cursor_t * | cursor_ptr, | ||
wlmaker_interactive_callback_t | tile_callback, | ||
void * | tile_callback_arg, | ||
struct wlr_buffer * | tile_released_ptr ) |
Creates a tile interactive.
wlr_scene_buffer_ptr | Buffer scene node to contain the tile. |
cursor_ptr | |
tile_callback | Will be called back when the tile is clicked. |
tile_callback_arg | Argument to provide to |tile_callback| |
tile_released_ptr | WLR buffer, texture in nominal state. |
void wlmaker_tile_set_texture | ( | wlmaker_interactive_t * | interactive_ptr, |
struct wlr_buffer * | tile_buffer_ptr ) |
Updates the texture for the tile. This will replace and release any earlier texture.
interactive_ptr | |
tile_buffer_ptr | WLR buffer, new texture to use. |
|
static |
Implementation: callbacks for the interactive.