mastodont-c/tests/get_feed_efl.c
nekobit f004d06316 Sum code
FossilOrigin-Name: a3f9c49fe762fcce33b4f03f825c9b65dd6db6f3a3edbc5bfc27190cd530027b
2023-03-06 19:45:46 +00:00

130 lines
3.2 KiB
C

#define _POSIX_C_SOURCE 200112L
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mastodont.h>
#include <signal.h>
#define EFL_BETA_API_SUPPORT 1
#include <Efl_Ui.h>
Eo* textbox_instance;
Eo* fd;
Eo* posts;
mastodont_t mstdnt;
static void
gui_quit_cb(void *data EINA_UNUSED, const Efl_Event *event EINA_UNUSED)
{
mstdnt_cleanup(&data);
mstdnt_global_curl_cleanup();
efl_exit(0);
}
int
tl_callback(mstdnt_request_cb_data* cb_data, void* args)
{
struct mstdnt_statuses* statuses = MSTDNT_CB_DATA(cb_data);
for (int i = 0; i < statuses->len; ++i)
{
struct mstdnt_status* status = statuses->statuses + i;
}
return MSTDNT_REQUEST_DONE;
}
static void
gui_fetch_posts(void* data EINA_UNUSED, const Efl_Event* event EINA_UNUSED)
{
struct mstdnt_args m_args = {
.url = NULL,
.token = NULL,
.flags = 0,
};
mstdnt_timeline_public(&mstdnt, &m_args, tl_callback, NULL, (struct mstdnt_timeline_args){.limit=20});
mstdnt_await(&data, 0, NULL, 0);
}
#if 0
static void
update_mstdnt_fds(void)
{
int nfds;
// Get
fd_set set;
mstdnt_get_fds(&mstdnt, &set, &nfds);
for (int i = 0; i < nfds; ++i)
{
fd = efl_add(EFL_LOOP_FD_CLASS,
efl_main_loop_get(),
efl_loop_fd_set(efl_added, set.fd_array[i]),
efl_event_callback_add(efl_added, EFL_LOOP_FD_EVENT_READ, _eo_read_cb, &set));
}
}
#endif
static void
gui_setup(void)
{
Eo *win, *box;
win = efl_add(EFL_UI_WIN_CLASS,
efl_main_loop_get(),
efl_ui_win_type_set(efl_added, EFL_UI_WIN_TYPE_BASIC),
efl_text_set(efl_added, "Hello World"),
efl_ui_win_autodel_set(efl_added, EINA_TRUE),
efl_event_callback_add(efl_added,
EFL_UI_WIN_EVENT_DELETE_REQUEST,
gui_quit_cb,
NULL));
box = efl_add(EFL_UI_BOX_CLASS,
win,
efl_content_set(win, efl_added),
efl_gfx_hint_size_min_set(efl_added, EINA_SIZE2D(460, 640)));
posts = efl_add(EFL_UI_LIST_CLASS,
box,
//efl_text_interactive_selection_allowed_set(efl_added, EINA_FALSE),
//efl_gfx_hint_weight_set(efl_added, 1.0, 0.9),
//efl_gfx_hint_align_set(efl_added, 0.5, 0.5),
efl_pack(box, efl_added));
textbox_instance = efl_add(EFL_UI_TEXTBOX_CLASS,
box,
efl_gfx_hint_align_set(efl_added, 0.5, 0.5),
efl_pack(box, efl_added));
efl_add(EFL_UI_BUTTON_CLASS,
box,
efl_text_set(efl_added, "Fetch posts asynchronously"),
efl_gfx_hint_weight_set(efl_added, 1.0, 0.5),
efl_pack(box, efl_added),
efl_event_callback_add(efl_added, EFL_INPUT_EVENT_CLICKED,
gui_fetch_posts, efl_added));
}
EAPI_MAIN void
efl_main(void *edata EINA_UNUSED, const Efl_Event *ev EINA_UNUSED)
{
// Initialize Mastodont library
mstdnt_global_curl_init();
if (mstdnt_init(&mstdnt) != 0)
{
fputs("Couldn't initialize Mastodont-c!", stderr);
exit(1);
}
gui_setup();
}
EFL_MAIN()