Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deprecated GTK functions #53

Open
secretmango opened this issue Mar 2, 2025 · 0 comments
Open

deprecated GTK functions #53

secretmango opened this issue Mar 2, 2025 · 0 comments

Comments

@secretmango
Copy link

secretmango commented Mar 2, 2025

[6/23] Compiling C object iwgtk.p/src_device.c.o
../src/device.c: In function ‘device_set’:
../src/device.c:45:9: warning: ‘gtk_combo_box_set_active_id’ is deprecated: Use 'GtkDropDown' instead [-Wdeprecated-declarations]
   45 |         gtk_combo_box_set_active_id(GTK_COMBO_BOX(device->mode_box), mode);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-4.0/gtk/gtk.h:94,
                 from ../src/iwgtk.h:23,
                 from ../src/device.c:20:
/usr/include/gtk-4.0/gtk/deprecated/gtkcombobox.h:147:15: note: declared here
  147 | gboolean      gtk_combo_box_set_active_id        (GtkComboBox *combo_box,
      |               ^~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/device.c: In function ‘mode_box_changed’:
../src/device.c:53:5: warning: ‘gtk_combo_box_get_active_id’ is deprecated: Use 'GtkDropDown' instead [-Wdeprecated-declarations]
   53 |     mode = gtk_combo_box_get_active_id(box);
      |     ^~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkcombobox.h:145:14: note: declared here
  145 | const char * gtk_combo_box_get_active_id        (GtkComboBox *combo_box);
      |              ^~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/device.c: In function ‘mode_box_new’:
../src/device.c:67:5: warning: ‘gtk_list_store_new’ is deprecated: Use 'GListStore' instead [-Wdeprecated-declarations]
   67 |     list_store = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_STRING);
      |     ^~~~~~~~~~
In file included from /usr/include/gtk-4.0/gtk/deprecated/gtkentrycompletion.h:26,
                 from /usr/include/gtk-4.0/gtk/gtkentry.h:39,
                 from /usr/include/gtk-4.0/gtk/deprecated/gtktreeview.h:27,
                 from /usr/include/gtk-4.0/gtk/deprecated/gtkcombobox.h:26:
/usr/include/gtk-4.0/gtk/deprecated/gtkliststore.h:63:15: note: declared here
   63 | GtkListStore *gtk_list_store_new              (int           n_columns,
      |               ^~~~~~~~~~~~~~~~~~
../src/device.c:87:9: warning: ‘gtk_list_store_append’ is deprecated: Use 'GListStore' instead [-Wdeprecated-declarations]
   87 |         gtk_list_store_append(list_store, &list_store_iter);
      |         ^~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkliststore.h:125:15: note: declared here
  125 | void          gtk_list_store_append           (GtkListStore *list_store,
      |               ^~~~~~~~~~~~~~~~~~~~~
../src/device.c:88:9: warning: ‘gtk_list_store_set’ is deprecated: Use 'GListStore' instead [-Wdeprecated-declarations]
   88 |         gtk_list_store_set(list_store, &list_store_iter, 0, supported_mode, 1, supported_mode_display, -1);
      |         ^~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkliststore.h:81:15: note: declared here
   81 | void          gtk_list_store_set              (GtkListStore *list_store,
      |               ^~~~~~~~~~~~~~~~~~
../src/device.c:93:5: warning: ‘gtk_combo_box_new_with_model’ is deprecated: Use 'GtkDropDown' instead [-Wdeprecated-declarations]
   93 |     box = gtk_combo_box_new_with_model(GTK_TREE_MODEL(list_store));
      |     ^~~
/usr/include/gtk-4.0/gtk/deprecated/gtkcombobox.h:78:15: note: declared here
   78 | GtkWidget    *gtk_combo_box_new_with_model           (GtkTreeModel *model);
      |               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/device.c:96:5: warning: ‘gtk_cell_renderer_text_new’ is deprecated [-Wdeprecated-declarations]
   96 |     cell_renderer = gtk_cell_renderer_text_new();
      |     ^~~~~~~~~~~~~
In file included from /usr/include/gtk-4.0/gtk/deprecated/gtkcellrendereraccel.h:24,
                 from /usr/include/gtk-4.0/gtk/gtk.h:70:
/usr/include/gtk-4.0/gtk/deprecated/gtkcellrenderertext.h:62:18: note: declared here
   62 | GtkCellRenderer *gtk_cell_renderer_text_new      (void);
      |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~
../src/device.c:97:5: warning: ‘gtk_cell_layout_pack_start’ is deprecated [-Wdeprecated-declarations]
   97 |     gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(box), cell_renderer, TRUE);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-4.0/gtk/gtk.h:68:
/usr/include/gtk-4.0/gtk/deprecated/gtkcelllayout.h:113:7: note: declared here
  113 | void  gtk_cell_layout_pack_start         (GtkCellLayout         *cell_layout,
      |       ^~~~~~~~~~~~~~~~~~~~~~~~~~
../src/device.c:98:5: warning: ‘gtk_cell_layout_add_attribute’ is deprecated [-Wdeprecated-declarations]
   98 |     gtk_cell_layout_add_attribute(GTK_CELL_LAYOUT(box), cell_renderer, "text", 1);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkcelllayout.h:129:7: note: declared here
  129 | void  gtk_cell_layout_add_attribute      (GtkCellLayout         *cell_layout,
      |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/device.c:100:5: warning: ‘gtk_combo_box_set_id_column’ is deprecated: Use 'GtkDropDown' instead [-Wdeprecated-declarations]
  100 |     gtk_combo_box_set_id_column(GTK_COMBO_BOX(box), 0);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/gtk-4.0/gtk/deprecated/gtkcombobox.h:142:15: note: declared here
  142 | void          gtk_combo_box_set_id_column        (GtkComboBox *combo_box,
      |               ^~~~~~~~~~~~~~~~~~~~~~~~~~~
[8/23] Compiling C object iwgtk.p/src_dpp.c.o
../src/dpp.c: In function ‘qrcode_widget_new’:
../src/dpp.c:100:13: warning: ‘gtk_widget_get_style_context’ is deprecated [-Wdeprecated-declarations]
  100 |             context = gtk_widget_get_style_context(area);
      |             ^~~~~~~
In file included from /usr/include/gtk-4.0/gtk/gtkapplication.h:26,
                 from /usr/include/gtk-4.0/gtk/gtkwindow.h:32,
                 from /usr/include/gtk-4.0/gtk/gtkaboutdialog.h:29,
                 from /usr/include/gtk-4.0/gtk/gtk.h:33,
                 from ../src/iwgtk.h:23,
                 from ../src/dpp.c:20:
/usr/include/gtk-4.0/gtk/gtkwidget.h:710:19: note: declared here
  710 | GtkStyleContext * gtk_widget_get_style_context (GtkWidget *widget);
      |                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../src/dpp.c:104:13: warning: ‘gtk_style_context_add_provider’ is deprecated [-Wdeprecated-declarations]
  104 |             gtk_style_context_add_provider(context, GTK_STYLE_PROVIDER(provider), GTK_STYLE_PROVIDER_PRIORITY_USER + 1);
      |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/gtk-4.0/gtk/gtk.h:267:
/usr/include/gtk-4.0/gtk/deprecated/gtkstylecontext.h:64:6: note: declared here
   64 | void gtk_style_context_add_provider    (GtkStyleContext  *context,
      |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

using main, 9542ea7

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant