From de496ad246f6fea1ecc0a821f2e967a539c0a978 Mon Sep 17 00:00:00 2001 From: sergiotarxz Date: Thu, 28 Oct 2021 22:29:51 +0200 Subject: [PATCH] Cleaning up. --- main.c | 47 +++++------------------------------------------ 1 file changed, 5 insertions(+), 42 deletions(-) diff --git a/main.c b/main.c index 7bf3aec..49e72ee 100644 --- a/main.c +++ b/main.c @@ -15,7 +15,7 @@ GtkBox * create_manga_container (); GtkListBox * create_list_box (GtkBox *box); -void +void g_object_set_property_int(GObject *object, char *property_key, int value); static void setup_list_view_mangas(GtkSignalListItemFactory *factory, @@ -34,12 +34,12 @@ activate (AdwApplication *app, create_headerbar (box); GListStore *mangas; - + MgBackendReadmng *readmng = mg_backend_readmng_new (); mangas = mg_backend_readmng_get_featured_manga (readmng); GtkSingleSelection *selection = gtk_single_selection_new (G_LIST_MODEL (mangas)); GtkListItemFactory *factory = gtk_signal_list_item_factory_new (); - g_signal_connect (G_OBJECT (factory), "bind", + g_signal_connect (G_OBJECT (factory), "bind", G_CALLBACK (setup_list_view_mangas), NULL); GtkWidget *list_view = gtk_list_view_new (GTK_SELECTION_MODEL (selection), @@ -75,7 +75,7 @@ setup_list_view_mangas(GtkSignalListItemFactory *factory, return; } error = NULL; - g_output_stream_write (g_io_stream_get_output_stream (G_IO_STREAM (iostream)), + g_output_stream_write (g_io_stream_get_output_stream (G_IO_STREAM (iostream)), downloaded_image, size_downloaded_image, NULL, &error); if (error) { fprintf (stderr, "Unable to write file: %s\n", error->message); @@ -89,43 +89,6 @@ setup_list_view_mangas(GtkSignalListItemFactory *factory, } void -fill_list_of_mangas (GtkListBox *list) { -// for (int i = 0; imessage); -// return; -// } -// error = NULL; -// g_output_stream_write (g_io_stream_get_output_stream (G_IO_STREAM (iostream)), -// downloaded_image, size_downloaded_image, NULL, &error); -// if (error) { -// fprintf (stderr, "Unable to write file: %s\n", error->message); -// return; -// } -// picture = gtk_picture_new_for_file (tmp_image); -// g_object_set_property_int (G_OBJECT(picture), "height-request", 200); -// row = gtk_list_box_row_new (); -// gtk_list_box_row_set_child (GTK_LIST_BOX_ROW (row), picture); -// gtk_list_box_append (list, row); -// } -} - -void g_object_set_property_int(GObject *object, char *property_key, int value) { GValue property = G_VALUE_INIT; g_value_init (&property, G_TYPE_INT); @@ -148,7 +111,7 @@ create_main_box (AdwApplicationWindow *window) { GTK_ORIENTATION_VERTICAL, 10); adw_application_window_set_content( - window, + window, box); return GTK_BOX (box); }