Пакет libImGuiColorTextEdit: Информация

    Исходный пакет: libImGuiColorTextEdit
    Версия: 1.0.0-alt1
    Последняя версия по данным Repology
    Собран:  3 декабря 2024 г. 13:42 в задании #363180
    Категория: Науки/Математика
    Сообщить об ошибке в пакете
    Домашняя страница: https://github.com/BalazsJako/ImGuiColorTextEdit

    Лицензия: MIT
    О пакете: Colorizing text editor for ImGui
    Описание: 
    Syntax highlighting text editor for ImGui.
    
    This started as my attempt to write a relatively simple widget which provides
    text editing functionality with syntax highlighting. Now there are other
    contributors who provide valuable additions.
    
    While it relies on Omar Cornut's https://github.com/ocornut/imgui, it does not
    follow the "pure" one widget - one function approach. Since the editor has to
    maintain a relatively complex and large internal state, it did not seem to be
    practical to try and enforce fully immediate mode. It stores its internal state
    in an object instance which is reused across frames.
    
    Main features:
    * approximates typical code editor look and feel (essential mouse/keyboard
      commands work - I mean, the commands I normally use :))
    * undo/redo
    * UTF-8 support
    * works with both fixed and variable-width fonts
    * extensible syntax highlighting for multiple languages
    * identifier declarations: a small piece of description can be associated with
      an identifier. The editor displays it in a tooltip when the mouse cursor is
      hovered over the identifier
    * error markers: the user can specify a list of error messages together the line
      of occurence, the editor will highligh the lines with red backround and
      display error message in a tooltip when the mouse cursor is hovered over the
      line
    * large files: there is no explicit limit set on file size or number of lines
      (below 2GB, performance is not affected when large files are loaded (except
      syntax coloring, see below)
    * color palette support: you can switch between different color palettes, or
      even define your own
    * whitespace indicators (TAB, space)

    Список бинарных RPM-пакетов, собираемых из данного SRPM:
    libImGuiColorTextEdit (x86_64, ppc64le, i586, aarch64)
    libImGuiColorTextEdit-debuginfo (x86_64, ppc64le, i586, aarch64)
    libImGuiColorTextEdit-devel (x86_64, ppc64le, i586, aarch64)

    Сопровождающий: Pavel Skrylev

    Список участников:
    Pavel Skrylev

    Права:
    Pavel Skrylev

      1. cmake
      2. rpm-macros-cmake
      3. gcc-c++
      4. libimgui-devel

    Последнее изменение


    28 ноября 2024 г. Pavel Skrylev 1.0.0-alt1
    - initial build for Sisyphus