| 755:9f62ec2c0cf0 | 756:72ccba551b4d |
|---|---|
| 422 memset(args, 0, sizeof(UiContainerArgs)); | 422 memset(args, 0, sizeof(UiContainerArgs)); |
| 423 return args; | 423 return args; |
| 424 } | 424 } |
| 425 | 425 |
| 426 void ui_container_args_set_fill(UiContainerArgs *args, UiBool fill) { | 426 void ui_container_args_set_fill(UiContainerArgs *args, UiBool fill) { |
| 427 args->fill = fill ? UI_ON : UI_OFF; | 427 args->fill = fill; |
| 428 } | 428 } |
| 429 | 429 |
| 430 void ui_container_args_set_hexpand(UiContainerArgs *args, UiBool value) { | 430 void ui_container_args_set_hexpand(UiContainerArgs *args, UiBool value) { |
| 431 args->hexpand = value; | 431 args->hexpand = value; |
| 432 } | 432 } |
| 527 return args; | 527 return args; |
| 528 } | 528 } |
| 529 | 529 |
| 530 | 530 |
| 531 void ui_frame_args_set_fill(UiFrameArgs *args, UiBool fill) { | 531 void ui_frame_args_set_fill(UiFrameArgs *args, UiBool fill) { |
| 532 args->fill = fill ? UI_ON : UI_OFF; | 532 args->fill = fill; |
| 533 } | 533 } |
| 534 | 534 |
| 535 | 535 |
| 536 void ui_frame_args_set_hexpand(UiFrameArgs *args, UiBool value) { | 536 void ui_frame_args_set_hexpand(UiFrameArgs *args, UiBool value) { |
| 537 args->hexpand = value; | 537 args->hexpand = value; |
| 660 return args; | 660 return args; |
| 661 } | 661 } |
| 662 | 662 |
| 663 | 663 |
| 664 void ui_splitpane_args_set_fill(UiSplitPaneArgs *args, UiBool fill) { | 664 void ui_splitpane_args_set_fill(UiSplitPaneArgs *args, UiBool fill) { |
| 665 args->fill = fill ? UI_ON : UI_OFF; | 665 args->fill = fill; |
| 666 } | 666 } |
| 667 | 667 |
| 668 | 668 |
| 669 void ui_splitpane_args_set_hexpand(UiSplitPaneArgs *args, UiBool value) { | 669 void ui_splitpane_args_set_hexpand(UiSplitPaneArgs *args, UiBool value) { |
| 670 args->hexpand = value; | 670 args->hexpand = value; |
| 765 memset(args, 0, sizeof(UiTabViewArgs)); | 765 memset(args, 0, sizeof(UiTabViewArgs)); |
| 766 return args; | 766 return args; |
| 767 } | 767 } |
| 768 | 768 |
| 769 void ui_tabview_args_set_fill(UiTabViewArgs *args, UiBool fill) { | 769 void ui_tabview_args_set_fill(UiTabViewArgs *args, UiBool fill) { |
| 770 args->fill = fill ? UI_ON : UI_OFF; | 770 args->fill = fill; |
| 771 } | 771 } |
| 772 | 772 |
| 773 void ui_tabview_args_set_hexpand(UiTabViewArgs *args, UiBool value) { | 773 void ui_tabview_args_set_hexpand(UiTabViewArgs *args, UiBool value) { |
| 774 args->hexpand = value; | 774 args->hexpand = value; |
| 775 } | 775 } |
| 874 return args; | 874 return args; |
| 875 } | 875 } |
| 876 | 876 |
| 877 | 877 |
| 878 void ui_widget_args_set_fill(UiWidgetArgs *args, UiBool fill) { | 878 void ui_widget_args_set_fill(UiWidgetArgs *args, UiBool fill) { |
| 879 args->fill = fill ? UI_ON : UI_OFF; | 879 args->fill = fill; |
| 880 } | 880 } |
| 881 | 881 |
| 882 | 882 |
| 883 void ui_widget_args_set_hexpand(UiWidgetArgs *args, UiBool value) { | 883 void ui_widget_args_set_hexpand(UiWidgetArgs *args, UiBool value) { |
| 884 args->hexpand = value; | 884 args->hexpand = value; |
| 940 return args; | 940 return args; |
| 941 } | 941 } |
| 942 | 942 |
| 943 | 943 |
| 944 void ui_label_args_set_fill(UiLabelArgs *args, UiBool fill) { | 944 void ui_label_args_set_fill(UiLabelArgs *args, UiBool fill) { |
| 945 args->fill = fill ? UI_ON : UI_OFF; | 945 args->fill = fill; |
| 946 } | 946 } |
| 947 | 947 |
| 948 | 948 |
| 949 void ui_label_args_set_hexpand(UiLabelArgs *args, UiBool value) { | 949 void ui_label_args_set_hexpand(UiLabelArgs *args, UiBool value) { |
| 950 args->hexpand = value; | 950 args->hexpand = value; |
| 1029 return args; | 1029 return args; |
| 1030 } | 1030 } |
| 1031 | 1031 |
| 1032 | 1032 |
| 1033 void ui_progressbar_args_set_fill(UiProgressbarArgs *args, UiBool fill) { | 1033 void ui_progressbar_args_set_fill(UiProgressbarArgs *args, UiBool fill) { |
| 1034 args->fill = fill ? UI_ON : UI_OFF; | 1034 args->fill = fill; |
| 1035 } | 1035 } |
| 1036 | 1036 |
| 1037 | 1037 |
| 1038 void ui_progressbar_args_set_hexpand(UiProgressbarArgs *args, UiBool value) { | 1038 void ui_progressbar_args_set_hexpand(UiProgressbarArgs *args, UiBool value) { |
| 1039 args->hexpand = value; | 1039 args->hexpand = value; |
| 1110 memset(args, 0, sizeof(UiProgressbarSpinnerArgs)); | 1110 memset(args, 0, sizeof(UiProgressbarSpinnerArgs)); |
| 1111 return args; | 1111 return args; |
| 1112 } | 1112 } |
| 1113 | 1113 |
| 1114 void ui_progress_spinner_args_set_fill(UiProgressbarSpinnerArgs *args, UiBool fill) { | 1114 void ui_progress_spinner_args_set_fill(UiProgressbarSpinnerArgs *args, UiBool fill) { |
| 1115 args->fill = fill ? UI_ON : UI_OFF; | 1115 args->fill = fill; |
| 1116 } | 1116 } |
| 1117 | 1117 |
| 1118 void ui_progress_spinner_args_set_hexpand(UiProgressbarSpinnerArgs *args, UiBool value) { | 1118 void ui_progress_spinner_args_set_hexpand(UiProgressbarSpinnerArgs *args, UiBool value) { |
| 1119 args->hexpand = value; | 1119 args->hexpand = value; |
| 1120 } | 1120 } |
| 1175 return args; | 1175 return args; |
| 1176 } | 1176 } |
| 1177 | 1177 |
| 1178 | 1178 |
| 1179 void ui_button_args_set_fill(UiButtonArgs *args, UiBool fill) { | 1179 void ui_button_args_set_fill(UiButtonArgs *args, UiBool fill) { |
| 1180 args->fill = fill ? UI_ON : UI_OFF; | 1180 args->fill = fill; |
| 1181 } | 1181 } |
| 1182 | 1182 |
| 1183 | 1183 |
| 1184 void ui_button_args_set_hexpand(UiButtonArgs *args, UiBool value) { | 1184 void ui_button_args_set_hexpand(UiButtonArgs *args, UiBool value) { |
| 1185 args->hexpand = value; | 1185 args->hexpand = value; |
| 1277 return args; | 1277 return args; |
| 1278 } | 1278 } |
| 1279 | 1279 |
| 1280 | 1280 |
| 1281 void ui_toggle_args_set_fill(UiToggleArgs *args, UiBool fill) { | 1281 void ui_toggle_args_set_fill(UiToggleArgs *args, UiBool fill) { |
| 1282 args->fill = fill ? UI_ON : UI_OFF; | 1282 args->fill = fill; |
| 1283 } | 1283 } |
| 1284 | 1284 |
| 1285 | 1285 |
| 1286 void ui_toggle_args_set_hexpand(UiToggleArgs *args, UiBool value) { | 1286 void ui_toggle_args_set_hexpand(UiToggleArgs *args, UiBool value) { |
| 1287 args->hexpand = value; | 1287 args->hexpand = value; |
| 1391 return args; | 1391 return args; |
| 1392 } | 1392 } |
| 1393 | 1393 |
| 1394 | 1394 |
| 1395 void ui_linkbutton_args_set_fill(UiLinkButtonArgs *args, UiBool fill) { | 1395 void ui_linkbutton_args_set_fill(UiLinkButtonArgs *args, UiBool fill) { |
| 1396 args->fill = fill ? UI_ON : UI_OFF; | 1396 args->fill = fill; |
| 1397 } | 1397 } |
| 1398 | 1398 |
| 1399 | 1399 |
| 1400 void ui_linkbutton_args_set_hexpand(UiLinkButtonArgs *args, UiBool value) { | 1400 void ui_linkbutton_args_set_hexpand(UiLinkButtonArgs *args, UiBool value) { |
| 1401 args->hexpand = value; | 1401 args->hexpand = value; |
| 1495 memset(args, 0, sizeof(UiListArgs)); | 1495 memset(args, 0, sizeof(UiListArgs)); |
| 1496 return args; | 1496 return args; |
| 1497 } | 1497 } |
| 1498 | 1498 |
| 1499 void ui_list_args_set_fill(UiListArgs *args, UiBool fill) { | 1499 void ui_list_args_set_fill(UiListArgs *args, UiBool fill) { |
| 1500 args->fill = fill ? UI_ON : UI_OFF; | 1500 args->fill = fill; |
| 1501 } | 1501 } |
| 1502 | 1502 |
| 1503 void ui_list_args_set_hexpand(UiListArgs *args, UiBool value) { | 1503 void ui_list_args_set_hexpand(UiListArgs *args, UiBool value) { |
| 1504 args->hexpand = value; | 1504 args->hexpand = value; |
| 1505 } | 1505 } |
| 1652 return args; | 1652 return args; |
| 1653 } | 1653 } |
| 1654 | 1654 |
| 1655 | 1655 |
| 1656 void ui_sourcelist_args_set_fill(UiSourceListArgs *args, UiBool fill) { | 1656 void ui_sourcelist_args_set_fill(UiSourceListArgs *args, UiBool fill) { |
| 1657 args->fill = fill ? UI_ON : UI_OFF; | 1657 args->fill = fill; |
| 1658 } | 1658 } |
| 1659 | 1659 |
| 1660 | 1660 |
| 1661 void ui_sourcelist_args_set_hexpand(UiSourceListArgs *args, UiBool value) { | 1661 void ui_sourcelist_args_set_hexpand(UiSourceListArgs *args, UiBool value) { |
| 1662 args->hexpand = value; | 1662 args->hexpand = value; |
| 1767 return args; | 1767 return args; |
| 1768 } | 1768 } |
| 1769 | 1769 |
| 1770 | 1770 |
| 1771 void ui_textarea_args_set_fill(UiTextAreaArgs *args, UiBool fill) { | 1771 void ui_textarea_args_set_fill(UiTextAreaArgs *args, UiBool fill) { |
| 1772 args->fill = fill ? UI_ON : UI_OFF; | 1772 args->fill = fill; |
| 1773 } | 1773 } |
| 1774 | 1774 |
| 1775 | 1775 |
| 1776 void ui_textarea_args_set_hexpand(UiTextAreaArgs *args, UiBool value) { | 1776 void ui_textarea_args_set_hexpand(UiTextAreaArgs *args, UiBool value) { |
| 1777 args->hexpand = value; | 1777 args->hexpand = value; |
| 1856 return args; | 1856 return args; |
| 1857 } | 1857 } |
| 1858 | 1858 |
| 1859 | 1859 |
| 1860 void ui_textfield_args_set_fill(UiTextFieldArgs *args, UiBool fill) { | 1860 void ui_textfield_args_set_fill(UiTextFieldArgs *args, UiBool fill) { |
| 1861 args->fill = fill ? UI_ON : UI_OFF; | 1861 args->fill = fill; |
| 1862 } | 1862 } |
| 1863 | 1863 |
| 1864 | 1864 |
| 1865 void ui_textfield_args_set_hexpand(UiTextFieldArgs *args, UiBool value) { | 1865 void ui_textfield_args_set_hexpand(UiTextFieldArgs *args, UiBool value) { |
| 1866 args->hexpand = value; | 1866 args->hexpand = value; |
| 2037 return args; | 2037 return args; |
| 2038 } | 2038 } |
| 2039 | 2039 |
| 2040 | 2040 |
| 2041 void ui_webview_args_set_fill(UiWebviewArgs *args, UiBool fill) { | 2041 void ui_webview_args_set_fill(UiWebviewArgs *args, UiBool fill) { |
| 2042 args->fill = fill ? UI_ON : UI_OFF; | 2042 args->fill = fill; |
| 2043 } | 2043 } |
| 2044 | 2044 |
| 2045 | 2045 |
| 2046 void ui_webview_args_set_hexpand(UiWebviewArgs *args, UiBool value) { | 2046 void ui_webview_args_set_hexpand(UiWebviewArgs *args, UiBool value) { |
| 2047 args->hexpand = value; | 2047 args->hexpand = value; |