diff --git a/README.md b/README.md index b1b73dee..876bd29e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ImGui ===== -ImGui is a bloat-free graphical user interface library for C/C++. It is portable, renderer agnostic and carries minimal amount of dependencies (only 3 files are needed). It is based on an "immediate" graphical user interface paradigm which allows you to build simple user interfaces with ease. +ImGui is a bloat-free graphical user interface library for C++. It is portable, renderer agnostic and carries minimal amount of dependencies (only 3 files are needed). It is based on an "immediate" graphical user interface paradigm which allows you to build simple user interfaces with ease. ImGui is designed to allow programmers to create "content creation" or "debug" tools (as opposed to tools for the average end-user). It favors simplicity and thus lacks certain features normally found in more high-level libraries, such as string localisation. diff --git a/imgui.cpp b/imgui.cpp index 1ef8ad33..1ce8cce1 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -144,6 +144,7 @@ - filters: handle wildcards (with implicit leading/trailing *), regexps - shortcuts: add a shortcut api, e.g. parse "&Save" and/or "Save (CTRL+S)", pass in to widgets or provide simple ways to use (button=activate, input=focus) - keyboard: full keyboard navigation and focus + - clipboard: add a default "local" implementation of clipboard functions (user will only need to override them to connect to OS clipboard) - misc: not thread-safe - optimisation/render: use indexed rendering - optimisation/render: move clip-rect to vertex data? would allow merging all commands diff --git a/web/code_sample_01.png b/web/code_sample_01.png index 6ff370cf..6178f8d8 100644 Binary files a/web/code_sample_01.png and b/web/code_sample_01.png differ