libxputty 0.1
Loading...
Searching...
No Matches
xslider.h
Go to the documentation of this file.
1/*
2 * 0BSD
3 *
4 * BSD Zero Clause License
5 *
6 * Copyright (c) 2019 Hermann Meyer
7 *
8 * Permission to use, copy, modify, and/or distribute this software for any
9 * purpose with or without fee is hereby granted.
10
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
16 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
18 *
19 */
20
21#pragma once
22
23#ifndef XSLIDER_H_
24#define XSLIDER_H_
25
26#include "xputty.h"
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32typedef struct {
33 int frames;
34} Slider_t;
35
43void set_slider_image_frame_count(Widget_t *w, int count);
44
55Widget_t* add_vslider(Widget_t *parent, const char * label,
56 int x, int y, int width, int height);
57
68Widget_t* add_hslider(Widget_t *parent, const char * label,
69 int x, int y, int width, int height);
70
71
72void slider_mem_free(void *w_, void* user_data);
73
74#ifdef __cplusplus
75}
76#endif
77
78#endif //XSLIDER_H_
int frames
Definition xslider.h:33
Widget_t - struct to hold the basic Widget_t info.
Definition xwidget.h:457
This file contains definitions and structs used on all platforms. Platform specific definitions are l...
Widget_t * add_vslider(Widget_t *parent, const char *label, int x, int y, int width, int height)
add_vslider - add a vertical slider to a Widget_t connect to func.value_changed_callback to implement...
Definition xslider.c:30
void set_slider_image_frame_count(Widget_t *w, int count)
set_slider_image_frame_count - set the number of sprites in the Slider Image
Definition xslider.c:25
Widget_t * add_hslider(Widget_t *parent, const char *label, int x, int y, int width, int height)
add_hslider - add a horizontal slider to a Widget_t connect to func.value_changed_callback to impleme...
Definition xslider.c:51
void slider_mem_free(void *w_, void *user_data)
Definition xslider.c:72