mplisp

miniPicoLisp with FFI and modules for Buddy BDD library, OpenGL, Gtk and GMP
git clone https://logand.com/git/mplisp.git/
Log | Files | Refs

gtk.ffi.h (14635B)


      1 any cfun_gtk_window_new(any ex);
      2 any cfun_gtk_window_set_title(any ex);
      3 any cfun_gtk_window_get_title(any ex);
      4 any cfun_gtk_window_set_default_size(any ex);
      5 any cfun_gtk_window_set_position(any ex);
      6 any cfun_gtk_window_set_resizable(any ex);
      7 any cfun_gtk_window_set_transient_for(any ex);
      8 any cfun_gtk_window_maximize(any ex);
      9 any cfun_gtk_message_dialog_new(any ex);
     10 any cfun_gtk_window_set_icon_from_file(any ex);
     11 any cfun_gtk_window_set_keep_above(any ex);
     12 any cfun_gtk_window_set_keep_below(any ex);
     13 any cfun_gtk_about_dialog_set_version(any ex);
     14 any cfun_gtk_table_new(any ex);
     15 any cfun_gtk_table_attach_defaults(any ex);
     16 any cfun_gtk_container_add(any ex);
     17 any cfun_gtk_container_remove(any ex);
     18 any cfun_gtk_container_set_border_width(any ex);
     19 any cfun_gtk_hbox_new(any ex);
     20 any cfun_gtk_vbox_new(any ex);
     21 any cfun_gtk_box_pack_start(any ex);
     22 any cfun_gtk_box_pack_end(any ex);
     23 any cfun_gtk_box_pack_start_defaults(any ex);
     24 any cfun_gtk_box_pack_end_defaults(any ex);
     25 any cfun_gtk_button_new(any ex);
     26 any cfun_gtk_button_new_with_label(any ex);
     27 any cfun_gtk_button_new_from_stock(any ex);
     28 any cfun_gtk_button_new_with_mnemonic(any ex);
     29 any cfun_gtk_button_set_use_stock(any ex);
     30 any cfun_gtk_button_set_label(any ex);
     31 any cfun_gtk_button_set_relief(any ex);
     32 any cfun_gtk_toggle_button_new(any ex);
     33 any cfun_gtk_toggle_button_new_with_label(any ex);
     34 any cfun_gtk_toggle_button_get_active(any ex);
     35 any cfun_gtk_toggle_button_set_active(any ex);
     36 any cfun_gtk_check_button_new_with_label(any ex);
     37 any cfun_gtk_entry_new(any ex);
     38 any cfun_gtk_entry_get_text(any ex);
     39 any cfun_gtk_entry_set_text(any ex);
     40 any cfun_gtk_entry_set_visibility(any ex);
     41 any cfun_gtk_editable_delete_text(any ex);
     42 any cfun_gtk_editable_get_chars(any ex);
     43 any cfun_gtk_editable_set_editable(any ex);
     44 any cfun_gtk_editable_select_region(any ex);
     45 any cfun_gtk_text_buffer_new(any ex);
     46 any cfun_gtk_text_buffer_set_text(any ex);
     47 any cfun_gtk_text_buffer_insert_at_cursor(any ex);
     48 any cfun_gtk_text_buffer_get_insert(any ex);
     49 any cfun_gtk_text_buffer_get_start_iter(any ex);
     50 any cfun_gtk_text_buffer_get_end_iter(any ex);
     51 any cfun_gtk_text_buffer_get_bounds(any ex);
     52 any cfun_gtk_text_buffer_get_selection_bounds(any ex);
     53 any cfun_gtk_text_buffer_get_iter_at_offset(any ex);
     54 any cfun_gtk_text_buffer_get_text(any ex);
     55 any cfun_gtk_text_buffer_insert(any ex);
     56 any cfun_gtk_text_buffer_create_tag(any ex);
     57 any cfun_gtk_text_buffer_insert_with_tags_by_name(any ex);
     58 any cfun_gtk_text_buffer_apply_tag_by_name(any ex);
     59 any cfun_gtk_text_buffer_remove_tag_by_name(any ex);
     60 any cfun_gtk_text_buffer_remove_all_tags(any ex);
     61 any cfun_gtk_text_buffer_get_tag_table(any ex);
     62 any cfun_gtk_text_buffer_select_range(any ex);
     63 any cfun_gtk_text_buffer_get_selection_bound(any ex);
     64 any cfun_gtk_text_buffer_get_line_count(any ex);
     65 any cfun_gtk_text_buffer_create_mark(any ex);
     66 any cfun_gtk_text_buffer_get_iter_at_mark(any ex);
     67 any cfun_gtk_text_buffer_get_iter_at_line(any ex);
     68 any cfun_gtk_text_buffer_delete(any ex);
     69 any cfun_gtk_text_buffer_delete_mark(any ex);
     70 any cfun_gtk_text_buffer_delete_mark_by_name(any ex);
     71 any cfun_gtk_text_buffer_place_cursor(any ex);
     72 any cfun_gtk_text_buffer_copy_clipboard(any ex);
     73 any cfun_gtk_text_buffer_cut_clipboard(any ex);
     74 any cfun_gtk_text_buffer_paste_clipboard(any ex);
     75 any cfun_gtk_scrolled_window_new(any ex);
     76 any cfun_gtk_scrolled_window_set_policy(any ex);
     77 any cfun_gtk_scrolled_window_set_shadow_type(any ex);
     78 any cfun_gtk_scrolled_window_add_with_viewport(any ex);
     79 any cfun_gtk_text_view_new_with_buffer(any ex);
     80 any cfun_gtk_text_view_set_wrap_mode(any ex);
     81 any cfun_gtk_text_view_set_editable(any ex);
     82 any cfun_gtk_text_view_set_border_window_size(any ex);
     83 any cfun_gtk_text_view_move_mark_onscreen(any ex);
     84 any cfun_gtk_text_view_scroll_to_mark(any ex);
     85 any cfun_gtk_text_view_scroll_mark_onscreen(any ex);
     86 any cfun_gtk_text_view_set_pixels_inside_wrap(any ex);
     87 any cfun_gtk_text_view_get_pixels_inside_wrap(any ex);
     88 any cfun_gtk_text_view_set_pixels_above_lines(any ex);
     89 any cfun_gtk_text_view_get_pixels_above_lines(any ex);
     90 any cfun_gtk_text_view_set_cursor_visible(any ex);
     91 any cfun_gtk_text_view_window_to_buffer_coords(any ex);
     92 any cfun_gtk_text_iter_forward_search(any ex);
     93 any cfun_gtk_text_iter_forward_visible_cursor_position(any ex);
     94 any cfun_gtk_text_iter_forward_to_line_end(any ex);
     95 any cfun_gtk_text_iter_set_line(any ex);
     96 any cfun_gtk_text_iter_set_line_offset(any ex);
     97 any cfun_gtk_text_iter_set_line_index(any ex);
     98 any cfun_gtk_text_iter_get_text(any ex);
     99 any cfun_gtk_text_iter_get_line(any ex);
    100 any cfun_gtk_text_view_new(any ex);
    101 any cfun_gtk_text_view_get_buffer(any ex);
    102 any cfun_gtk_text_tag_table_remove(any ex);
    103 any cfun_gdk_font_load(any ex);
    104 any cfun_gdk_pixmap_new(any ex);
    105 any cfun_gdk_pixmap_unref(any ex);
    106 any cfun_gdk_pixmap_create_from_xpm(any ex);
    107 any cfun_gdk_pixmap_colormap_create_from_xpm(any ex);
    108 any cfun_gdk_draw_rectangle(any ex);
    109 any cfun_gdk_draw_arc(any ex);
    110 any cfun_gdk_draw_line(any ex);
    111 any cfun_gdk_draw_point(any ex);
    112 any cfun_gdk_draw_layout(any ex);
    113 any cfun_gdk_draw_drawable(any ex);
    114 any cfun_gdk_gc_new(any ex);
    115 any cfun_gdk_gc_set_rgb_fg_color(any ex);
    116 any cfun_gdk_gc_set_rgb_bg_color(any ex);
    117 any cfun_gdk_gc_set_foreground(any ex);
    118 any cfun_gdk_gc_set_background(any ex);
    119 any cfun_gdk_gc_set_colormap(any ex);
    120 any cfun_gdk_color_alloc(any ex);
    121 any cfun_gdk_color_parse(any ex);
    122 any cfun_gdk_colormap_get_system(any ex);
    123 any cfun_gdk_colormap_alloc_color(any ex);
    124 any cfun_gdk_get_default_root_window(any ex);
    125 any cfun_gdk_rgb_find_color(any ex);
    126 any cfun_gdk_drawable_set_colormap(any ex);
    127 any cfun_gdk_drawable_get_size(any ex);
    128 any cfun_gdk_keymap_translate_keyboard_state(any ex);
    129 any cfun_gdk_window_process_all_updates(any ex);
    130 any cfun_gdk_window_get_geometry(any ex);
    131 any cfun_gdk_screen_get_default(any ex);
    132 any cfun_gdk_screen_get_width(any ex);
    133 any cfun_gdk_screen_get_height(any ex);
    134 any cfun_gdk_screen_width(any ex);
    135 any cfun_gdk_screen_height(any ex);
    136 any cfun_gdk_flush(any ex);
    137 any cfun_gdk_init(any ex);
    138 any cfun_gdk_display_get_default(any ex);
    139 any cfun_gdk_display_get_pointer(any ex);
    140 any cfun_gtk_image_new(any ex);
    141 any cfun_gtk_image_new_from_pixmap(any ex);
    142 any cfun_gtk_image_set_from_pixbuf(any ex);
    143 any cfun_gtk_image_set_from_pixmap(any ex);
    144 any cfun_gtk_image_set(any ex);
    145 any cfun_gtk_image_set_from_file(any ex);
    146 any cfun_gtk_image_new_from_file(any ex);
    147 any cfun_gtk_pixmap_new(any ex);
    148 any cfun_gtk_drawing_area_new(any ex);
    149 any cfun_gtk_widget_queue_draw(any ex);
    150 any cfun_gtk_widget_get_colormap(any ex);
    151 any cfun_gtk_widget_get_parent_window(any ex);
    152 any cfun_gtk_widget_create_pango_layout(any ex);
    153 any cfun_gtk_vscrollbar_new(any ex);
    154 any cfun_gtk_label_new(any ex);
    155 any cfun_gtk_label_set_text(any ex);
    156 any cfun_gtk_label_get_text(any ex);
    157 any cfun_gtk_label_set_line_wrap(any ex);
    158 any cfun_gtk_label_set_selectable(any ex);
    159 any cfun_gtk_label_set_use_markup(any ex);
    160 any cfun_gtk_label_set_justify(any ex);
    161 any cfun_gtk_label_get_width_chars(any ex);
    162 any cfun_gtk_label_get_max_width_chars(any ex);
    163 any cfun_gtk_label_set_markup_with_mnemonic(any ex);
    164 any cfun_gtk_frame_new(any ex);
    165 any cfun_gtk_frame_set_label_align(any ex);
    166 any cfun_gtk_frame_set_label(any ex);
    167 any cfun_gtk_frame_get_label(any ex);
    168 any cfun_gtk_aspect_frame_new(any ex);
    169 any cfun_gtk_aspect_frame_set(any ex);
    170 any cfun_gtk_radio_button_new(any ex);
    171 any cfun_gtk_radio_button_new_with_label(any ex);
    172 any cfun_gtk_radio_button_new_from_widget(any ex);
    173 any cfun_gtk_radio_button_new_with_label_from_widget(any ex);
    174 any cfun_gtk_notebook_new(any ex);
    175 any cfun_gtk_notebook_set_tab_pos(any ex);
    176 any cfun_gtk_notebook_popup_enable(any ex);
    177 any cfun_gtk_notebook_insert_page(any ex);
    178 any cfun_gtk_notebook_remove_page(any ex);
    179 any cfun_gtk_notebook_get_current_page(any ex);
    180 any cfun_gtk_notebook_set_page(any ex);
    181 any cfun_gtk_notebook_set_tab_label_text(any ex);
    182 any cfun_gtk_adjustment_new(any ex);
    183 any cfun_gtk_adjustment_get_value(any ex);
    184 any cfun_gtk_range_get_adjustment(any ex);
    185 any cfun_gtk_range_get_value(any ex);
    186 any cfun_gtk_range_set_value(any ex);
    187 any cfun_gtk_scale_set_draw_value(any ex);
    188 any cfun_gtk_scale_set_value_pos(any ex);
    189 any cfun_gtk_hscale_new(any ex);
    190 any cfun_gtk_hscale_new_with_range(any ex);
    191 any cfun_gtk_vscale_new_with_range(any ex);
    192 any cfun_gtk_spin_button_new(any ex);
    193 any cfun_gtk_spin_button_get_value_as_int(any ex);
    194 any cfun_gtk_spin_button_get_value(any ex);
    195 any cfun_gtk_spin_button_set_wrap(any ex);
    196 any cfun_gtk_spin_button_set_value(any ex);
    197 any cfun_gtk_arrow_new(any ex);
    198 any cfun_gtk_file_chooser_dialog_new(any ex);
    199 any cfun_gtk_file_chooser_widget_new(any ex);
    200 any cfun_gtk_dialog_run(any ex);
    201 any cfun_gtk_file_chooser_get_filename(any ex);
    202 any cfun_gtk_file_chooser_set_filename(any ex);
    203 any cfun_gtk_file_filter_new(any ex);
    204 any cfun_gtk_file_filter_add_pattern(any ex);
    205 any cfun_gtk_file_filter_set_name(any ex);
    206 any cfun_gtk_file_chooser_add_filter(any ex);
    207 any cfun_gtk_font_selection_dialog_new(any ex);
    208 any cfun_gtk_font_selection_dialog_get_font_name(any ex);
    209 any cfun_gtk_font_selection_new(any ex);
    210 any cfun_gtk_font_selection_get_font_name(any ex);
    211 any cfun_gtk_font_selection_set_font_name(any ex);
    212 any cfun_gtk_color_selection_new(any ex);
    213 any cfun_gtk_color_selection_set_has_opacity_control(any ex);
    214 any cfun_gtk_color_selection_set_current_color(any ex);
    215 any cfun_gtk_color_selection_get_current_color(any ex);
    216 any cfun_gtk_color_selection_set_color(any ex);
    217 any cfun_gtk_menu_bar_new(any ex);
    218 any cfun_gtk_menu_shell_append(any ex);
    219 any cfun_gtk_menu_item_new(any ex);
    220 any cfun_gtk_menu_item_new_with_label(any ex);
    221 any cfun_gtk_menu_item_new_with_mnemonic(any ex);
    222 any cfun_gtk_menu_new(any ex);
    223 any cfun_gtk_menu_item_set_right_justified(any ex);
    224 any cfun_gtk_menu_item_set_submenu(any ex);
    225 any cfun_gtk_check_menu_item_new_with_label(any ex);
    226 any cfun_gtk_check_menu_item_new_with_mnemonic(any ex);
    227 any cfun_gtk_check_menu_item_get_active(any ex);
    228 any cfun_gtk_check_menu_item_set_active(any ex);
    229 any cfun_gtk_menu_popup(any ex);
    230 any cfun_gtk_progress_bar_new(any ex);
    231 any cfun_gtk_progress_bar_set_text(any ex);
    232 any cfun_gtk_progress_bar_set_fraction(any ex);
    233 any cfun_gtk_progress_bar_pulse(any ex);
    234 any cfun_gtk_progress_bar_set_pulse_step(any ex);
    235 any cfun_gtk_statusbar_new(any ex);
    236 any cfun_gtk_statusbar_get_context_id(any ex);
    237 any cfun_gtk_statusbar_push(any ex);
    238 any cfun_gtk_statusbar_pop(any ex);
    239 any cfun_gtk_statusbar_remove(any ex);
    240 any cfun_gtk_statusbar_set_has_resize_grip(any ex);
    241 any cfun_gtk_event_box_new(any ex);
    242 any cfun_gtk_combo_box_new_text(any ex);
    243 any cfun_gtk_combo_box_append_text(any ex);
    244 any cfun_gtk_combo_box_insert_text(any ex);
    245 any cfun_gtk_combo_box_prepend_text(any ex);
    246 any cfun_gtk_combo_box_remove_text(any ex);
    247 any cfun_gtk_combo_box_get_active(any ex);
    248 any cfun_gtk_combo_box_set_active(any ex);
    249 any cfun_gtk_combo_box_get_active_text(any ex);
    250 any cfun_gtk_vseparator_new(any ex);
    251 any cfun_gtk_hseparator_new(any ex);
    252 any cfun_gtk_editable_copy_clipboard(any ex);
    253 any cfun_gtk_editable_cut_clipboard(any ex);
    254 any cfun_gtk_editable_paste_clipboard(any ex);
    255 any cfun_gdk_atom_intern(any ex);
    256 any cfun_gtk_clipboard_get(any ex);
    257 any cfun_gtk_clipboard_set_text(any ex);
    258 any cfun_gtk_clipboard_wait_for_text(any ex);
    259 any cfun_gtk_clist_new(any ex);
    260 any cfun_gtk_clist_set_column_title(any ex);
    261 any cfun_gtk_clist_column_titles_show(any ex);
    262 any cfun_gtk_clist_append(any ex);
    263 any cfun_gtk_clist_set_text(any ex);
    264 any cfun_gtk_fixed_new(any ex);
    265 any cfun_gtk_fixed_put(any ex);
    266 any cfun_gtk_fixed_move(any ex);
    267 any cfun_gtk_list_store_new(any ex);
    268 any cfun_gtk_list_store_append(any ex);
    269 any cfun_gtk_list_store_set(any ex);
    270 any cfun_gtk_list_store_set_value(any ex);
    271 any cfun_gtk_list_store_clear(any ex);
    272 any cfun_gtk_list_store_remove(any ex);
    273 any cfun_gtk_cell_renderer_text_new(any ex);
    274 any cfun_gtk_tree_view_new_with_model(any ex);
    275 any cfun_gtk_tree_view_column_new(any ex);
    276 any cfun_gtk_tree_view_column_new_with_attributes(any ex);
    277 any cfun_gtk_tree_view_column_pack_start(any ex);
    278 any cfun_gtk_tree_view_append_column(any ex);
    279 any cfun_gtk_tree_view_set_headers_visible(any ex);
    280 any cfun_gtk_tree_view_set_headers_clickable(any ex);
    281 any cfun_gtk_tree_view_get_selection(any ex);
    282 any cfun_gtk_tree_view_column_set_resizable(any ex);
    283 any cfun_gtk_tree_view_column_set_clickable(any ex);
    284 any cfun_gtk_tree_selection_get_selected(any ex);
    285 any cfun_gtk_tree_selection_select_iter(any ex);
    286 any cfun_gtk_tree_selection_select_path(any ex);
    287 any cfun_gtk_tree_model_get(any ex);
    288 any cfun_gtk_tree_model_get_string_from_iter(any ex);
    289 any cfun_gtk_tree_path_new_from_string(any ex);
    290 any cfun_gtk_tree_path_free(any ex);
    291 any cfun_gtk_tree_sortable_set_sort_column_id(any ex);
    292 any cfun_gtk_init(any ex);
    293 any cfun_gtk_widget_show(any ex);
    294 any cfun_gtk_widget_show_all(any ex);
    295 any cfun_gtk_widget_realize(any ex);
    296 any cfun_gtk_widget_unrealize(any ex);
    297 any cfun_gtk_widget_hide(any ex);
    298 any cfun_gtk_widget_destroy(any ex);
    299 any cfun_gtk_widget_grab_focus(any ex);
    300 any cfun_gtk_widget_set_size_request(any ex);
    301 any cfun_gtk_widget_size_request(any ex);
    302 any cfun_gtk_widget_set_usize(any ex);
    303 any cfun_gtk_widget_modify_base(any ex);
    304 any cfun_gtk_widget_modify_bg(any ex);
    305 any cfun_gtk_widget_set_sensitive(any ex);
    306 any cfun_gtk_settings_get_default(any ex);
    307 any cfun_gtk_widget_get_parent(any ex);
    308 any cfun_gtk_misc_set_alignment(any ex);
    309 any cfun_gtk_main(any ex);
    310 any cfun_gtk_main_iteration(any ex);
    311 any cfun_gtk_main_iteration_do(any ex);
    312 any cfun_gtk_events_pending(any ex);
    313 any cfun_gtk_exit(any ex);
    314 any cfun_gtk_main_quit(any ex);
    315 any cfun_gtk_rc_parse(any ex);
    316 any cfun_gtk_rc_parse_string(any ex);
    317 any cfun_gtk_rc_reparse_all(any ex);
    318 any cfun_gtk_rc_reset_styles(any ex);
    319 any cfun_gtk_rc_add_default_file(any ex);
    320 any cfun_gtk_widget_set_name(any ex);
    321 any cfun_gtk_check_version(any ex);
    322 any cfun_gtk_drag_source_set(any ex);
    323 any cfun_gtk_drag_dest_set(any ex);
    324 any cfun_gtk_drag_finish(any ex);
    325 any cfun_gtk_get_current_event_time(any ex);
    326 any cfun_gtk_widget_get_size_request(any ex);
    327 any cfun_gtk_signal_emit_by_name(any ex);
    328 any cfun_gtk_invisible_new(any ex);
    329 any cfun_gdk_pixbuf_new_from_file(any ex);
    330 any cfun_gdk_pixbuf_new_from_file_at_size(any ex);
    331 any cfun_gdk_pixbuf_rotate_simple(any ex);
    332 any cfun_g_object_unref(any ex);
    333 any cfun_g_locale_to_utf8(any ex);
    334 any cfun_g_locale_from_utf8(any ex);
    335 any cfun_g_free(any ex);
    336 any cfun_glade_init(any ex);
    337 any cfun_glade_xml_new(any ex);
    338 any cfun_glade_xml_get_widget(any ex);
    339 any cfun_glade_xml_signal_autoconnect_full(any ex);
    340 any cfun_glade_get_widget_name(any ex);
    341 any cfun_glade_get_widget_tree(any ex);
    342 any cfun_gtk_signal_connect_full(any ex);
    343 any cfun_g_signal_connect(any ex);