├── .gitignore ├── .pylintrc ├── COPYING ├── Makefile ├── NEWS.md ├── README.md ├── data ├── gui │ ├── checkbox │ │ ├── checked.tga │ │ ├── checked_disabled.tga │ │ ├── unchecked.tga │ │ └── unchecked_disabled.tga │ ├── fonts │ │ ├── font_black.tga │ │ └── font_gray.tga │ ├── menu │ │ ├── arrow.png │ │ ├── checked.png │ │ └── unchecked.png │ └── radiobutton │ │ ├── checked.tga │ │ ├── checked_disabled.tga │ │ ├── unchecked.tga │ │ └── unchecked_disabled.tga ├── images │ ├── brush │ │ ├── brush.png │ │ ├── brush2.png │ │ ├── brush3.png │ │ ├── brush4.png │ │ ├── brush5.png │ │ ├── brush6.png │ │ ├── brush7.png │ │ └── brush8.png │ ├── files │ │ ├── directory.png │ │ └── file.png │ ├── fonts │ │ ├── verdana11_black.png │ │ └── verdana11_yellow.png │ ├── icons16 │ │ ├── addon_package-16.png │ │ ├── resize1.png │ │ ├── resize2.png │ │ ├── resize_horz.png │ │ ├── resize_vert.png │ │ ├── stock_about-16.png │ │ ├── stock_attach-16.png │ │ ├── stock_book-16.png │ │ ├── stock_bottom-16.png │ │ ├── stock_broken_image-16.png │ │ ├── stock_cdrom-16.png │ │ ├── stock_convert-16.png │ │ ├── stock_copy-16.png │ │ ├── stock_cut-16.png │ │ ├── stock_delete-16.png │ │ ├── stock_down-16.png │ │ ├── stock_edit-16.png │ │ ├── stock_exec-16.png │ │ ├── stock_exit-16.png │ │ ├── stock_export-16.png │ │ ├── stock_first-16.png │ │ ├── stock_font-16.png │ │ ├── stock_help-16.png │ │ ├── stock_home-16.png │ │ ├── stock_import-16.png │ │ ├── stock_insert-image-16.png │ │ ├── stock_insert-object-16.png │ │ ├── stock_insert-table-16.png │ │ ├── stock_jump-to-16.png │ │ ├── stock_last-16.png │ │ ├── stock_left-16.png │ │ ├── stock_line_in-16.png │ │ ├── stock_mike-16.png │ │ ├── stock_new-16.png │ │ ├── stock_open-16.png │ │ ├── stock_paste-16.png │ │ ├── stock_preferences-16.png │ │ ├── stock_print-16.png │ │ ├── stock_print-preview-16.png │ │ ├── stock_properties-16.png │ │ ├── stock_redo-16.png │ │ ├── stock_refresh-16.png │ │ ├── stock_revert-16.png │ │ ├── stock_right-16.png │ │ ├── stock_save-16.png │ │ ├── stock_save_as-16.png │ │ ├── stock_search-16.png │ │ ├── stock_search_and_replace-16.png │ │ ├── stock_spellcheck-16.png │ │ ├── stock_stop-16.png │ │ ├── stock_text_align_center-16.png │ │ ├── stock_text_align_justify-16.png │ │ ├── stock_text_align_left-16.png │ │ ├── stock_text_align_right-16.png │ │ ├── stock_text_bold-16.png │ │ ├── stock_text_italic-16.png │ │ ├── stock_text_strikethrough-16.png │ │ ├── stock_text_underlined-16.png │ │ ├── stock_top-16.png │ │ ├── stock_undelete-16.png │ │ ├── stock_undo-16.png │ │ ├── stock_up-16.png │ │ └── stock_volume-16.png │ ├── icons24 │ │ ├── anim_fastbackward.png │ │ ├── anim_fastforward.png │ │ ├── anim_next.png │ │ ├── anim_play.png │ │ ├── anim_playbackward.png │ │ ├── anim_previous.png │ │ ├── anim_skipbackward.png │ │ ├── anim_skipforward.png │ │ ├── anim_slowmotion.png │ │ ├── anim_slowmotionbackward.png │ │ ├── background.png │ │ ├── downarrow.png │ │ ├── eye.png │ │ ├── foreground.png │ │ ├── grid.png │ │ ├── index.html │ │ ├── interactive.png │ │ ├── minimap.png │ │ ├── object_flip_horizontal.png │ │ ├── object_flip_vertical.png │ │ ├── object_hflip.png │ │ ├── object_lower.png │ │ ├── object_lower_to_bottom.png │ │ ├── object_raise.png │ │ ├── object_raise_to_top.png │ │ ├── object_rotate270.png │ │ ├── object_rotate90.png │ │ ├── object_tobottom.png │ │ ├── object_totop.png │ │ ├── object_vflip.png │ │ ├── run.png │ │ ├── secretarea.png │ │ ├── sector.png │ │ ├── stock_about.png │ │ ├── stock_attach.png │ │ ├── stock_book-open.png │ │ ├── stock_book.png │ │ ├── stock_bottom.png │ │ ├── stock_broken_image.png │ │ ├── stock_cancel.png │ │ ├── stock_cdrom.png │ │ ├── stock_convert.png │ │ ├── stock_copy.png │ │ ├── stock_cut.png │ │ ├── stock_delete.png │ │ ├── stock_down.png │ │ ├── stock_edit.png │ │ ├── stock_exec.png │ │ ├── stock_exit.png │ │ ├── stock_export.png │ │ ├── stock_first.png │ │ ├── stock_font.png │ │ ├── stock_help.png │ │ ├── stock_home.png │ │ ├── stock_import.png │ │ ├── stock_insert-image.png │ │ ├── stock_insert-object.png │ │ ├── stock_insert-table.png │ │ ├── stock_jump-to.png │ │ ├── stock_last.png │ │ ├── stock_left.png │ │ ├── stock_line_in.png │ │ ├── stock_media-fwd.png │ │ ├── stock_media-next.png │ │ ├── stock_media-pause.png │ │ ├── stock_media-play.png │ │ ├── stock_media-prev.png │ │ ├── stock_media-rec.png │ │ ├── stock_media-rew.png │ │ ├── stock_media-stop.png │ │ ├── stock_mike.png │ │ ├── stock_new.png │ │ ├── stock_ok.png │ │ ├── stock_open.png │ │ ├── stock_palette.png │ │ ├── stock_paste.png │ │ ├── stock_preferences.png │ │ ├── stock_print-preview.png │ │ ├── stock_print.png │ │ ├── stock_properties.png │ │ ├── stock_redo.png │ │ ├── stock_refresh.png │ │ ├── stock_revert.png │ │ ├── stock_right.png │ │ ├── stock_save.png │ │ ├── stock_save_as.png │ │ ├── stock_search.png │ │ ├── stock_search_and_replace.png │ │ ├── stock_spellcheck.png │ │ ├── stock_stop.png │ │ ├── stock_text_align_center.png │ │ ├── stock_text_align_justify.png │ │ ├── stock_text_align_left.png │ │ ├── stock_text_align_right.png │ │ ├── stock_text_bold.png │ │ ├── stock_text_italic.png │ │ ├── stock_text_strikethrough.png │ │ ├── stock_text_underline.png │ │ ├── stock_top.png │ │ ├── stock_undelete.png │ │ ├── stock_undo.png │ │ ├── stock_up.png │ │ ├── stock_volume.png │ │ ├── stock_zoom_1.png │ │ ├── stock_zoom_fit.png │ │ ├── stock_zoom_in.png │ │ └── stock_zoom_out.png │ ├── supertux │ │ ├── minus.png │ │ ├── plus.png │ │ ├── stock-eye-12.png │ │ ├── stock-eye-half-12.png │ │ └── supertux-editor.png │ ├── tools │ │ ├── select.png │ │ ├── stock-tool-clone-22.png │ │ ├── stock-tool-color-picker-22.png │ │ ├── stock-tool-crop-22.png │ │ ├── stock-tool-eraser-16.png │ │ ├── stock-tool-eraser-22.png │ │ ├── stock-tool-fill-24.png │ │ ├── stock-tool-move-22.png │ │ ├── stock-tool-pencil-22.png │ │ ├── stock-tool-rect-select-22.png │ │ ├── stock-tool-replace-24.png │ │ ├── stock-tool-tiles-24.png │ │ └── stock-tool-zoom-22.png │ └── window │ │ ├── close.png │ │ ├── maximize.png │ │ ├── minimize.png │ │ └── rollup.png └── supertux │ ├── demos │ └── karkus476_plays_level_1 │ ├── smarttiles.csv │ └── smarttiles_mapping.csv ├── flake.lock ├── flake.nix ├── flexlay ├── __init__.py ├── blend_func.py ├── blitter.py ├── color.py ├── commands │ ├── __init__.py │ ├── command.py │ ├── command_group.py │ ├── layer_delete_command.py │ ├── object_add_command.py │ ├── object_delete_command.py │ ├── object_move_command.py │ ├── object_transform_command.py │ └── paint_command.py ├── drawer_properties.py ├── editor_map.py ├── field.py ├── flexlay.py ├── graphic_context.py ├── graphic_context_state.py ├── gui │ ├── __init__.py │ ├── button_panel.py │ ├── colorpicker.py │ ├── editor_map_component.py │ ├── editor_map_widget.py │ ├── file_dialog.py │ ├── generic_dialog.py │ ├── generic_wizard.py │ ├── icon.py │ ├── layer_selector.py │ ├── menubar.py │ ├── minimap.py │ ├── minimap_widget.py │ ├── object_selector.py │ ├── object_selector_widget.py │ ├── project_widget.py │ ├── properties_widget.py │ ├── smart_tile_selector_widget.py │ ├── statusbar.py │ ├── tile_brush_selector.py │ ├── tile_selection.py │ ├── tile_selector.py │ └── tile_selector_widget.py ├── gui_manager.py ├── input_event.py ├── layer.py ├── math │ ├── __init__.py │ ├── origin.py │ ├── point.py │ ├── rect.py │ └── size.py ├── object_brush.py ├── object_layer.py ├── objmap_control_point.py ├── objmap_object.py ├── objmap_path_node.py ├── objmap_rect_object.py ├── objmap_sprite_object.py ├── objmap_tilemap_object.py ├── pixel_buffer.py ├── property.py ├── sprite.py ├── sprite_brush.py ├── tile.py ├── tile_brush.py ├── tilemap_layer.py ├── tileset.py ├── tool_context.py ├── tools │ ├── __init__.py │ ├── layer_move_tool.py │ ├── objmap_select_tool.py │ ├── tile_brush_create_tool.py │ ├── tile_fill_tool.py │ ├── tile_paint_tool.py │ ├── tile_replace_tool.py │ ├── tilemap_select_tool.py │ ├── tool.py │ ├── workspace_move_tool.py │ ├── zoom2_tool.py │ ├── zoom_out_tool.py │ └── zoom_tool.py ├── util │ ├── __init__.py │ ├── config.py │ ├── sexpr.py │ ├── sexpr_reader.py │ ├── sexpr_writer.py │ ├── signal.py │ └── version.py ├── wip │ ├── __init__.py │ ├── bitmap_layer.py │ ├── brush.py │ ├── brushmask.py │ ├── canvas.py │ ├── display.py │ ├── onion_skin_layer.py │ ├── sketch_layer.py │ ├── sketch_stroke_tool.py │ ├── sprite_stroke_drawer.py │ ├── stroke.py │ ├── stroke_drawer.py │ ├── surface.py │ └── tile_provider.py └── workspace.py ├── logo.png ├── logo.svg ├── pyproject.toml ├── setup.cfg ├── setup.py ├── simpleed.py ├── supertux-editor ├── supertux-level ├── supertux ├── TODO ├── __init__.py ├── __main__.py ├── addon.py ├── addon_dialog.py ├── badguys.py ├── button_panel.py ├── config.py ├── constraint.py ├── data.py ├── gameobj.py ├── gameobj_factor.py ├── gameobj_props_change_command.py ├── gameobjs.py ├── gui.py ├── level.py ├── level_file_dialog.py ├── menubar.py ├── new_addon.py ├── new_level.py ├── property.py ├── sector.py ├── sprite.py ├── supertux.py ├── supertux_arguments.py ├── text_editor │ ├── __init__.py │ ├── cmd_supertux_textedit.py │ ├── example.stl │ ├── highlighters │ │ ├── __init__.py │ │ ├── highlighter.py │ │ ├── lisp_highlighter.py │ │ ├── patterns.json │ │ ├── patterns2.json │ │ └── squirrel_highlighter.py │ └── supertux_text_edit.py ├── tilemap.py ├── tileset.py ├── toolbox.py ├── util.py └── worldmap_object.py └── tests ├── test.stl ├── test_flexlay.py ├── test_generic_dialog.py ├── test_generic_wizard.py ├── test_math.py ├── test_sexpr.py ├── test_signal.py ├── test_supertux.py └── test_supertux_properties.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/.pylintrc -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/README.md -------------------------------------------------------------------------------- /data/gui/checkbox/checked.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/checkbox/checked.tga -------------------------------------------------------------------------------- /data/gui/checkbox/checked_disabled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/checkbox/checked_disabled.tga -------------------------------------------------------------------------------- /data/gui/checkbox/unchecked.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/checkbox/unchecked.tga -------------------------------------------------------------------------------- /data/gui/checkbox/unchecked_disabled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/checkbox/unchecked_disabled.tga -------------------------------------------------------------------------------- /data/gui/fonts/font_black.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/fonts/font_black.tga -------------------------------------------------------------------------------- /data/gui/fonts/font_gray.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/fonts/font_gray.tga -------------------------------------------------------------------------------- /data/gui/menu/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/menu/arrow.png -------------------------------------------------------------------------------- /data/gui/menu/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/menu/checked.png -------------------------------------------------------------------------------- /data/gui/menu/unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/menu/unchecked.png -------------------------------------------------------------------------------- /data/gui/radiobutton/checked.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/radiobutton/checked.tga -------------------------------------------------------------------------------- /data/gui/radiobutton/checked_disabled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/radiobutton/checked_disabled.tga -------------------------------------------------------------------------------- /data/gui/radiobutton/unchecked.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/radiobutton/unchecked.tga -------------------------------------------------------------------------------- /data/gui/radiobutton/unchecked_disabled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/gui/radiobutton/unchecked_disabled.tga -------------------------------------------------------------------------------- /data/images/brush/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/brush/brush.png -------------------------------------------------------------------------------- /data/images/brush/brush2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/brush/brush2.png -------------------------------------------------------------------------------- /data/images/brush/brush3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/brush/brush3.png -------------------------------------------------------------------------------- /data/images/brush/brush4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/brush/brush4.png -------------------------------------------------------------------------------- /data/images/brush/brush5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/brush/brush5.png -------------------------------------------------------------------------------- /data/images/brush/brush6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/brush/brush6.png -------------------------------------------------------------------------------- /data/images/brush/brush7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/brush/brush7.png -------------------------------------------------------------------------------- /data/images/brush/brush8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/brush/brush8.png -------------------------------------------------------------------------------- /data/images/files/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/files/directory.png -------------------------------------------------------------------------------- /data/images/files/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/files/file.png -------------------------------------------------------------------------------- /data/images/fonts/verdana11_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/fonts/verdana11_black.png -------------------------------------------------------------------------------- /data/images/fonts/verdana11_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/fonts/verdana11_yellow.png -------------------------------------------------------------------------------- /data/images/icons16/addon_package-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/addon_package-16.png -------------------------------------------------------------------------------- /data/images/icons16/resize1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/resize1.png -------------------------------------------------------------------------------- /data/images/icons16/resize2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/resize2.png -------------------------------------------------------------------------------- /data/images/icons16/resize_horz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/resize_horz.png -------------------------------------------------------------------------------- /data/images/icons16/resize_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/resize_vert.png -------------------------------------------------------------------------------- /data/images/icons16/stock_about-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_about-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_attach-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_attach-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_book-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_book-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_bottom-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_bottom-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_broken_image-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_broken_image-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_cdrom-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_cdrom-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_convert-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_convert-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_copy-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_copy-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_cut-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_cut-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_delete-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_delete-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_down-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_down-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_edit-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_edit-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_exec-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_exec-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_exit-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_exit-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_export-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_export-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_first-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_first-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_font-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_font-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_help-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_help-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_home-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_home-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_import-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_import-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_insert-image-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_insert-image-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_insert-object-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_insert-object-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_insert-table-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_insert-table-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_jump-to-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_jump-to-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_last-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_last-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_left-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_left-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_line_in-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_line_in-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_mike-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_mike-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_new-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_new-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_open-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_open-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_paste-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_paste-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_preferences-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_preferences-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_print-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_print-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_print-preview-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_print-preview-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_properties-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_properties-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_redo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_redo-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_refresh-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_refresh-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_revert-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_revert-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_right-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_right-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_save-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_save-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_save_as-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_save_as-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_search-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_search-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_search_and_replace-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_search_and_replace-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_spellcheck-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_spellcheck-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_stop-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_stop-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_text_align_center-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_text_align_center-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_text_align_justify-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_text_align_justify-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_text_align_left-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_text_align_left-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_text_align_right-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_text_align_right-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_text_bold-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_text_bold-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_text_italic-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_text_italic-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_text_strikethrough-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_text_strikethrough-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_text_underlined-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_text_underlined-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_top-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_top-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_undelete-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_undelete-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_undo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_undo-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_up-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_up-16.png -------------------------------------------------------------------------------- /data/images/icons16/stock_volume-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons16/stock_volume-16.png -------------------------------------------------------------------------------- /data/images/icons24/anim_fastbackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/anim_fastbackward.png -------------------------------------------------------------------------------- /data/images/icons24/anim_fastforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/anim_fastforward.png -------------------------------------------------------------------------------- /data/images/icons24/anim_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/anim_next.png -------------------------------------------------------------------------------- /data/images/icons24/anim_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/anim_play.png -------------------------------------------------------------------------------- /data/images/icons24/anim_playbackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/anim_playbackward.png -------------------------------------------------------------------------------- /data/images/icons24/anim_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/anim_previous.png -------------------------------------------------------------------------------- /data/images/icons24/anim_skipbackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/anim_skipbackward.png -------------------------------------------------------------------------------- /data/images/icons24/anim_skipforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/anim_skipforward.png -------------------------------------------------------------------------------- /data/images/icons24/anim_slowmotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/anim_slowmotion.png -------------------------------------------------------------------------------- /data/images/icons24/anim_slowmotionbackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/anim_slowmotionbackward.png -------------------------------------------------------------------------------- /data/images/icons24/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/background.png -------------------------------------------------------------------------------- /data/images/icons24/downarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/downarrow.png -------------------------------------------------------------------------------- /data/images/icons24/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/eye.png -------------------------------------------------------------------------------- /data/images/icons24/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/foreground.png -------------------------------------------------------------------------------- /data/images/icons24/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/grid.png -------------------------------------------------------------------------------- /data/images/icons24/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/index.html -------------------------------------------------------------------------------- /data/images/icons24/interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/interactive.png -------------------------------------------------------------------------------- /data/images/icons24/minimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/minimap.png -------------------------------------------------------------------------------- /data/images/icons24/object_flip_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/object_flip_horizontal.png -------------------------------------------------------------------------------- /data/images/icons24/object_flip_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/object_flip_vertical.png -------------------------------------------------------------------------------- /data/images/icons24/object_hflip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/object_hflip.png -------------------------------------------------------------------------------- /data/images/icons24/object_lower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/object_lower.png -------------------------------------------------------------------------------- /data/images/icons24/object_lower_to_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/object_lower_to_bottom.png -------------------------------------------------------------------------------- /data/images/icons24/object_raise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/object_raise.png -------------------------------------------------------------------------------- /data/images/icons24/object_raise_to_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/object_raise_to_top.png -------------------------------------------------------------------------------- /data/images/icons24/object_rotate270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/object_rotate270.png -------------------------------------------------------------------------------- /data/images/icons24/object_rotate90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/object_rotate90.png -------------------------------------------------------------------------------- /data/images/icons24/object_tobottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/object_tobottom.png -------------------------------------------------------------------------------- /data/images/icons24/object_totop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/object_totop.png -------------------------------------------------------------------------------- /data/images/icons24/object_vflip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/object_vflip.png -------------------------------------------------------------------------------- /data/images/icons24/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/run.png -------------------------------------------------------------------------------- /data/images/icons24/secretarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/secretarea.png -------------------------------------------------------------------------------- /data/images/icons24/sector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/sector.png -------------------------------------------------------------------------------- /data/images/icons24/stock_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_about.png -------------------------------------------------------------------------------- /data/images/icons24/stock_attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_attach.png -------------------------------------------------------------------------------- /data/images/icons24/stock_book-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_book-open.png -------------------------------------------------------------------------------- /data/images/icons24/stock_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_book.png -------------------------------------------------------------------------------- /data/images/icons24/stock_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_bottom.png -------------------------------------------------------------------------------- /data/images/icons24/stock_broken_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_broken_image.png -------------------------------------------------------------------------------- /data/images/icons24/stock_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_cancel.png -------------------------------------------------------------------------------- /data/images/icons24/stock_cdrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_cdrom.png -------------------------------------------------------------------------------- /data/images/icons24/stock_convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_convert.png -------------------------------------------------------------------------------- /data/images/icons24/stock_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_copy.png -------------------------------------------------------------------------------- /data/images/icons24/stock_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_cut.png -------------------------------------------------------------------------------- /data/images/icons24/stock_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_delete.png -------------------------------------------------------------------------------- /data/images/icons24/stock_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_down.png -------------------------------------------------------------------------------- /data/images/icons24/stock_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_edit.png -------------------------------------------------------------------------------- /data/images/icons24/stock_exec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_exec.png -------------------------------------------------------------------------------- /data/images/icons24/stock_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_exit.png -------------------------------------------------------------------------------- /data/images/icons24/stock_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_export.png -------------------------------------------------------------------------------- /data/images/icons24/stock_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_first.png -------------------------------------------------------------------------------- /data/images/icons24/stock_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_font.png -------------------------------------------------------------------------------- /data/images/icons24/stock_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_help.png -------------------------------------------------------------------------------- /data/images/icons24/stock_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_home.png -------------------------------------------------------------------------------- /data/images/icons24/stock_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_import.png -------------------------------------------------------------------------------- /data/images/icons24/stock_insert-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_insert-image.png -------------------------------------------------------------------------------- /data/images/icons24/stock_insert-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_insert-object.png -------------------------------------------------------------------------------- /data/images/icons24/stock_insert-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_insert-table.png -------------------------------------------------------------------------------- /data/images/icons24/stock_jump-to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_jump-to.png -------------------------------------------------------------------------------- /data/images/icons24/stock_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_last.png -------------------------------------------------------------------------------- /data/images/icons24/stock_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_left.png -------------------------------------------------------------------------------- /data/images/icons24/stock_line_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_line_in.png -------------------------------------------------------------------------------- /data/images/icons24/stock_media-fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_media-fwd.png -------------------------------------------------------------------------------- /data/images/icons24/stock_media-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_media-next.png -------------------------------------------------------------------------------- /data/images/icons24/stock_media-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_media-pause.png -------------------------------------------------------------------------------- /data/images/icons24/stock_media-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_media-play.png -------------------------------------------------------------------------------- /data/images/icons24/stock_media-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_media-prev.png -------------------------------------------------------------------------------- /data/images/icons24/stock_media-rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_media-rec.png -------------------------------------------------------------------------------- /data/images/icons24/stock_media-rew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_media-rew.png -------------------------------------------------------------------------------- /data/images/icons24/stock_media-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_media-stop.png -------------------------------------------------------------------------------- /data/images/icons24/stock_mike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_mike.png -------------------------------------------------------------------------------- /data/images/icons24/stock_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_new.png -------------------------------------------------------------------------------- /data/images/icons24/stock_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_ok.png -------------------------------------------------------------------------------- /data/images/icons24/stock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_open.png -------------------------------------------------------------------------------- /data/images/icons24/stock_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_palette.png -------------------------------------------------------------------------------- /data/images/icons24/stock_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_paste.png -------------------------------------------------------------------------------- /data/images/icons24/stock_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_preferences.png -------------------------------------------------------------------------------- /data/images/icons24/stock_print-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_print-preview.png -------------------------------------------------------------------------------- /data/images/icons24/stock_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_print.png -------------------------------------------------------------------------------- /data/images/icons24/stock_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_properties.png -------------------------------------------------------------------------------- /data/images/icons24/stock_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_redo.png -------------------------------------------------------------------------------- /data/images/icons24/stock_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_refresh.png -------------------------------------------------------------------------------- /data/images/icons24/stock_revert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_revert.png -------------------------------------------------------------------------------- /data/images/icons24/stock_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_right.png -------------------------------------------------------------------------------- /data/images/icons24/stock_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_save.png -------------------------------------------------------------------------------- /data/images/icons24/stock_save_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_save_as.png -------------------------------------------------------------------------------- /data/images/icons24/stock_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_search.png -------------------------------------------------------------------------------- /data/images/icons24/stock_search_and_replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_search_and_replace.png -------------------------------------------------------------------------------- /data/images/icons24/stock_spellcheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_spellcheck.png -------------------------------------------------------------------------------- /data/images/icons24/stock_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_stop.png -------------------------------------------------------------------------------- /data/images/icons24/stock_text_align_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_text_align_center.png -------------------------------------------------------------------------------- /data/images/icons24/stock_text_align_justify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_text_align_justify.png -------------------------------------------------------------------------------- /data/images/icons24/stock_text_align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_text_align_left.png -------------------------------------------------------------------------------- /data/images/icons24/stock_text_align_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_text_align_right.png -------------------------------------------------------------------------------- /data/images/icons24/stock_text_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_text_bold.png -------------------------------------------------------------------------------- /data/images/icons24/stock_text_italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_text_italic.png -------------------------------------------------------------------------------- /data/images/icons24/stock_text_strikethrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_text_strikethrough.png -------------------------------------------------------------------------------- /data/images/icons24/stock_text_underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_text_underline.png -------------------------------------------------------------------------------- /data/images/icons24/stock_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_top.png -------------------------------------------------------------------------------- /data/images/icons24/stock_undelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_undelete.png -------------------------------------------------------------------------------- /data/images/icons24/stock_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_undo.png -------------------------------------------------------------------------------- /data/images/icons24/stock_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_up.png -------------------------------------------------------------------------------- /data/images/icons24/stock_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_volume.png -------------------------------------------------------------------------------- /data/images/icons24/stock_zoom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_zoom_1.png -------------------------------------------------------------------------------- /data/images/icons24/stock_zoom_fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_zoom_fit.png -------------------------------------------------------------------------------- /data/images/icons24/stock_zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_zoom_in.png -------------------------------------------------------------------------------- /data/images/icons24/stock_zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/icons24/stock_zoom_out.png -------------------------------------------------------------------------------- /data/images/supertux/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/supertux/minus.png -------------------------------------------------------------------------------- /data/images/supertux/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/supertux/plus.png -------------------------------------------------------------------------------- /data/images/supertux/stock-eye-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/supertux/stock-eye-12.png -------------------------------------------------------------------------------- /data/images/supertux/stock-eye-half-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/supertux/stock-eye-half-12.png -------------------------------------------------------------------------------- /data/images/supertux/supertux-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/supertux/supertux-editor.png -------------------------------------------------------------------------------- /data/images/tools/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/select.png -------------------------------------------------------------------------------- /data/images/tools/stock-tool-clone-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/stock-tool-clone-22.png -------------------------------------------------------------------------------- /data/images/tools/stock-tool-color-picker-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/stock-tool-color-picker-22.png -------------------------------------------------------------------------------- /data/images/tools/stock-tool-crop-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/stock-tool-crop-22.png -------------------------------------------------------------------------------- /data/images/tools/stock-tool-eraser-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/stock-tool-eraser-16.png -------------------------------------------------------------------------------- /data/images/tools/stock-tool-eraser-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/stock-tool-eraser-22.png -------------------------------------------------------------------------------- /data/images/tools/stock-tool-fill-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/stock-tool-fill-24.png -------------------------------------------------------------------------------- /data/images/tools/stock-tool-move-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/stock-tool-move-22.png -------------------------------------------------------------------------------- /data/images/tools/stock-tool-pencil-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/stock-tool-pencil-22.png -------------------------------------------------------------------------------- /data/images/tools/stock-tool-rect-select-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/stock-tool-rect-select-22.png -------------------------------------------------------------------------------- /data/images/tools/stock-tool-replace-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/stock-tool-replace-24.png -------------------------------------------------------------------------------- /data/images/tools/stock-tool-tiles-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/stock-tool-tiles-24.png -------------------------------------------------------------------------------- /data/images/tools/stock-tool-zoom-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/tools/stock-tool-zoom-22.png -------------------------------------------------------------------------------- /data/images/window/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/window/close.png -------------------------------------------------------------------------------- /data/images/window/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/window/maximize.png -------------------------------------------------------------------------------- /data/images/window/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/window/minimize.png -------------------------------------------------------------------------------- /data/images/window/rollup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/images/window/rollup.png -------------------------------------------------------------------------------- /data/supertux/demos/karkus476_plays_level_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/supertux/demos/karkus476_plays_level_1 -------------------------------------------------------------------------------- /data/supertux/smarttiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/supertux/smarttiles.csv -------------------------------------------------------------------------------- /data/supertux/smarttiles_mapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/data/supertux/smarttiles_mapping.csv -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flake.nix -------------------------------------------------------------------------------- /flexlay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexlay/blend_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/blend_func.py -------------------------------------------------------------------------------- /flexlay/blitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/blitter.py -------------------------------------------------------------------------------- /flexlay/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/color.py -------------------------------------------------------------------------------- /flexlay/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexlay/commands/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/commands/command.py -------------------------------------------------------------------------------- /flexlay/commands/command_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/commands/command_group.py -------------------------------------------------------------------------------- /flexlay/commands/layer_delete_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/commands/layer_delete_command.py -------------------------------------------------------------------------------- /flexlay/commands/object_add_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/commands/object_add_command.py -------------------------------------------------------------------------------- /flexlay/commands/object_delete_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/commands/object_delete_command.py -------------------------------------------------------------------------------- /flexlay/commands/object_move_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/commands/object_move_command.py -------------------------------------------------------------------------------- /flexlay/commands/object_transform_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/commands/object_transform_command.py -------------------------------------------------------------------------------- /flexlay/commands/paint_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/commands/paint_command.py -------------------------------------------------------------------------------- /flexlay/drawer_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/drawer_properties.py -------------------------------------------------------------------------------- /flexlay/editor_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/editor_map.py -------------------------------------------------------------------------------- /flexlay/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/field.py -------------------------------------------------------------------------------- /flexlay/flexlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/flexlay.py -------------------------------------------------------------------------------- /flexlay/graphic_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/graphic_context.py -------------------------------------------------------------------------------- /flexlay/graphic_context_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/graphic_context_state.py -------------------------------------------------------------------------------- /flexlay/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexlay/gui/button_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/button_panel.py -------------------------------------------------------------------------------- /flexlay/gui/colorpicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/colorpicker.py -------------------------------------------------------------------------------- /flexlay/gui/editor_map_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/editor_map_component.py -------------------------------------------------------------------------------- /flexlay/gui/editor_map_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/editor_map_widget.py -------------------------------------------------------------------------------- /flexlay/gui/file_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/file_dialog.py -------------------------------------------------------------------------------- /flexlay/gui/generic_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/generic_dialog.py -------------------------------------------------------------------------------- /flexlay/gui/generic_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/generic_wizard.py -------------------------------------------------------------------------------- /flexlay/gui/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/icon.py -------------------------------------------------------------------------------- /flexlay/gui/layer_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/layer_selector.py -------------------------------------------------------------------------------- /flexlay/gui/menubar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/menubar.py -------------------------------------------------------------------------------- /flexlay/gui/minimap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/minimap.py -------------------------------------------------------------------------------- /flexlay/gui/minimap_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/minimap_widget.py -------------------------------------------------------------------------------- /flexlay/gui/object_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/object_selector.py -------------------------------------------------------------------------------- /flexlay/gui/object_selector_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/object_selector_widget.py -------------------------------------------------------------------------------- /flexlay/gui/project_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/project_widget.py -------------------------------------------------------------------------------- /flexlay/gui/properties_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/properties_widget.py -------------------------------------------------------------------------------- /flexlay/gui/smart_tile_selector_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/smart_tile_selector_widget.py -------------------------------------------------------------------------------- /flexlay/gui/statusbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/statusbar.py -------------------------------------------------------------------------------- /flexlay/gui/tile_brush_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/tile_brush_selector.py -------------------------------------------------------------------------------- /flexlay/gui/tile_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/tile_selection.py -------------------------------------------------------------------------------- /flexlay/gui/tile_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/tile_selector.py -------------------------------------------------------------------------------- /flexlay/gui/tile_selector_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui/tile_selector_widget.py -------------------------------------------------------------------------------- /flexlay/gui_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/gui_manager.py -------------------------------------------------------------------------------- /flexlay/input_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/input_event.py -------------------------------------------------------------------------------- /flexlay/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/layer.py -------------------------------------------------------------------------------- /flexlay/math/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/math/__init__.py -------------------------------------------------------------------------------- /flexlay/math/origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/math/origin.py -------------------------------------------------------------------------------- /flexlay/math/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/math/point.py -------------------------------------------------------------------------------- /flexlay/math/rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/math/rect.py -------------------------------------------------------------------------------- /flexlay/math/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/math/size.py -------------------------------------------------------------------------------- /flexlay/object_brush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/object_brush.py -------------------------------------------------------------------------------- /flexlay/object_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/object_layer.py -------------------------------------------------------------------------------- /flexlay/objmap_control_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/objmap_control_point.py -------------------------------------------------------------------------------- /flexlay/objmap_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/objmap_object.py -------------------------------------------------------------------------------- /flexlay/objmap_path_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/objmap_path_node.py -------------------------------------------------------------------------------- /flexlay/objmap_rect_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/objmap_rect_object.py -------------------------------------------------------------------------------- /flexlay/objmap_sprite_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/objmap_sprite_object.py -------------------------------------------------------------------------------- /flexlay/objmap_tilemap_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/objmap_tilemap_object.py -------------------------------------------------------------------------------- /flexlay/pixel_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/pixel_buffer.py -------------------------------------------------------------------------------- /flexlay/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/property.py -------------------------------------------------------------------------------- /flexlay/sprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/sprite.py -------------------------------------------------------------------------------- /flexlay/sprite_brush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/sprite_brush.py -------------------------------------------------------------------------------- /flexlay/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tile.py -------------------------------------------------------------------------------- /flexlay/tile_brush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tile_brush.py -------------------------------------------------------------------------------- /flexlay/tilemap_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tilemap_layer.py -------------------------------------------------------------------------------- /flexlay/tileset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tileset.py -------------------------------------------------------------------------------- /flexlay/tool_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tool_context.py -------------------------------------------------------------------------------- /flexlay/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexlay/tools/layer_move_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tools/layer_move_tool.py -------------------------------------------------------------------------------- /flexlay/tools/objmap_select_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tools/objmap_select_tool.py -------------------------------------------------------------------------------- /flexlay/tools/tile_brush_create_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tools/tile_brush_create_tool.py -------------------------------------------------------------------------------- /flexlay/tools/tile_fill_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tools/tile_fill_tool.py -------------------------------------------------------------------------------- /flexlay/tools/tile_paint_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tools/tile_paint_tool.py -------------------------------------------------------------------------------- /flexlay/tools/tile_replace_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tools/tile_replace_tool.py -------------------------------------------------------------------------------- /flexlay/tools/tilemap_select_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tools/tilemap_select_tool.py -------------------------------------------------------------------------------- /flexlay/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tools/tool.py -------------------------------------------------------------------------------- /flexlay/tools/workspace_move_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tools/workspace_move_tool.py -------------------------------------------------------------------------------- /flexlay/tools/zoom2_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tools/zoom2_tool.py -------------------------------------------------------------------------------- /flexlay/tools/zoom_out_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tools/zoom_out_tool.py -------------------------------------------------------------------------------- /flexlay/tools/zoom_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/tools/zoom_tool.py -------------------------------------------------------------------------------- /flexlay/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexlay/util/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/util/config.py -------------------------------------------------------------------------------- /flexlay/util/sexpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/util/sexpr.py -------------------------------------------------------------------------------- /flexlay/util/sexpr_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/util/sexpr_reader.py -------------------------------------------------------------------------------- /flexlay/util/sexpr_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/util/sexpr_writer.py -------------------------------------------------------------------------------- /flexlay/util/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/util/signal.py -------------------------------------------------------------------------------- /flexlay/util/version.py: -------------------------------------------------------------------------------- 1 | # EOF # 2 | -------------------------------------------------------------------------------- /flexlay/wip/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexlay/wip/bitmap_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/bitmap_layer.py -------------------------------------------------------------------------------- /flexlay/wip/brush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/brush.py -------------------------------------------------------------------------------- /flexlay/wip/brushmask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/brushmask.py -------------------------------------------------------------------------------- /flexlay/wip/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/canvas.py -------------------------------------------------------------------------------- /flexlay/wip/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/display.py -------------------------------------------------------------------------------- /flexlay/wip/onion_skin_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/onion_skin_layer.py -------------------------------------------------------------------------------- /flexlay/wip/sketch_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/sketch_layer.py -------------------------------------------------------------------------------- /flexlay/wip/sketch_stroke_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/sketch_stroke_tool.py -------------------------------------------------------------------------------- /flexlay/wip/sprite_stroke_drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/sprite_stroke_drawer.py -------------------------------------------------------------------------------- /flexlay/wip/stroke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/stroke.py -------------------------------------------------------------------------------- /flexlay/wip/stroke_drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/stroke_drawer.py -------------------------------------------------------------------------------- /flexlay/wip/surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/surface.py -------------------------------------------------------------------------------- /flexlay/wip/tile_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/wip/tile_provider.py -------------------------------------------------------------------------------- /flexlay/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/flexlay/workspace.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/logo.svg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/setup.py -------------------------------------------------------------------------------- /simpleed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/simpleed.py -------------------------------------------------------------------------------- /supertux-editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux-editor -------------------------------------------------------------------------------- /supertux-level: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux-level -------------------------------------------------------------------------------- /supertux/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/TODO -------------------------------------------------------------------------------- /supertux/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertux/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/__main__.py -------------------------------------------------------------------------------- /supertux/addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/addon.py -------------------------------------------------------------------------------- /supertux/addon_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/addon_dialog.py -------------------------------------------------------------------------------- /supertux/badguys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/badguys.py -------------------------------------------------------------------------------- /supertux/button_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/button_panel.py -------------------------------------------------------------------------------- /supertux/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/config.py -------------------------------------------------------------------------------- /supertux/constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/constraint.py -------------------------------------------------------------------------------- /supertux/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/data.py -------------------------------------------------------------------------------- /supertux/gameobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/gameobj.py -------------------------------------------------------------------------------- /supertux/gameobj_factor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/gameobj_factor.py -------------------------------------------------------------------------------- /supertux/gameobj_props_change_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/gameobj_props_change_command.py -------------------------------------------------------------------------------- /supertux/gameobjs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/gameobjs.py -------------------------------------------------------------------------------- /supertux/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/gui.py -------------------------------------------------------------------------------- /supertux/level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/level.py -------------------------------------------------------------------------------- /supertux/level_file_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/level_file_dialog.py -------------------------------------------------------------------------------- /supertux/menubar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/menubar.py -------------------------------------------------------------------------------- /supertux/new_addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/new_addon.py -------------------------------------------------------------------------------- /supertux/new_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/new_level.py -------------------------------------------------------------------------------- /supertux/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/property.py -------------------------------------------------------------------------------- /supertux/sector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/sector.py -------------------------------------------------------------------------------- /supertux/sprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/sprite.py -------------------------------------------------------------------------------- /supertux/supertux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/supertux.py -------------------------------------------------------------------------------- /supertux/supertux_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/supertux_arguments.py -------------------------------------------------------------------------------- /supertux/text_editor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertux/text_editor/cmd_supertux_textedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/text_editor/cmd_supertux_textedit.py -------------------------------------------------------------------------------- /supertux/text_editor/example.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/text_editor/example.stl -------------------------------------------------------------------------------- /supertux/text_editor/highlighters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supertux/text_editor/highlighters/highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/text_editor/highlighters/highlighter.py -------------------------------------------------------------------------------- /supertux/text_editor/highlighters/lisp_highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/text_editor/highlighters/lisp_highlighter.py -------------------------------------------------------------------------------- /supertux/text_editor/highlighters/patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/text_editor/highlighters/patterns.json -------------------------------------------------------------------------------- /supertux/text_editor/highlighters/patterns2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/text_editor/highlighters/patterns2.json -------------------------------------------------------------------------------- /supertux/text_editor/highlighters/squirrel_highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/text_editor/highlighters/squirrel_highlighter.py -------------------------------------------------------------------------------- /supertux/text_editor/supertux_text_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/text_editor/supertux_text_edit.py -------------------------------------------------------------------------------- /supertux/tilemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/tilemap.py -------------------------------------------------------------------------------- /supertux/tileset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/tileset.py -------------------------------------------------------------------------------- /supertux/toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/toolbox.py -------------------------------------------------------------------------------- /supertux/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/util.py -------------------------------------------------------------------------------- /supertux/worldmap_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/supertux/worldmap_object.py -------------------------------------------------------------------------------- /tests/test.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/tests/test.stl -------------------------------------------------------------------------------- /tests/test_flexlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/tests/test_flexlay.py -------------------------------------------------------------------------------- /tests/test_generic_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/tests/test_generic_dialog.py -------------------------------------------------------------------------------- /tests/test_generic_wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/tests/test_generic_wizard.py -------------------------------------------------------------------------------- /tests/test_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/tests/test_math.py -------------------------------------------------------------------------------- /tests/test_sexpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/tests/test_sexpr.py -------------------------------------------------------------------------------- /tests/test_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/tests/test_signal.py -------------------------------------------------------------------------------- /tests/test_supertux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/tests/test_supertux.py -------------------------------------------------------------------------------- /tests/test_supertux_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperTux/flexlay/HEAD/tests/test_supertux_properties.py --------------------------------------------------------------------------------