From 9d2fb573783c2f0470b40031eb4e13f63308663f Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 11 May 2018 13:26:03 +0200 Subject: [PATCH] Reorganized folders Added README --- tools/rGuiLayout/README.md | 16 ++++---- tools/rGuiStyler/README.md | 38 ++++++++++++++++++ .../{ => src}/external/tinyfiledialogs.c | 0 .../{ => src}/external/tinyfiledialogs.h | 0 tools/rGuiStyler/{ => src}/rguistyler.c | 0 tools/rGuiStyler/{ => src}/rguistyler.ico | Bin tools/rGuiStyler/{ => src}/rguistyler.rc | 0 tools/rGuiStyler/{ => src}/rguistyler_icon | Bin 8 files changed, 46 insertions(+), 8 deletions(-) create mode 100644 tools/rGuiStyler/README.md rename tools/rGuiStyler/{ => src}/external/tinyfiledialogs.c (100%) rename tools/rGuiStyler/{ => src}/external/tinyfiledialogs.h (100%) rename tools/rGuiStyler/{ => src}/rguistyler.c (100%) rename tools/rGuiStyler/{ => src}/rguistyler.ico (100%) rename tools/rGuiStyler/{ => src}/rguistyler.rc (100%) rename tools/rGuiStyler/{ => src}/rguistyler_icon (100%) diff --git a/tools/rGuiLayout/README.md b/tools/rGuiLayout/README.md index e7c9046..c443933 100644 --- a/tools/rGuiLayout/README.md +++ b/tools/rGuiLayout/README.md @@ -1,7 +1,7 @@ # rGuiLayout -A simple and easy-to-use tool to create raygui-based layouts. Useful for fast tools development. The perfect companion for [rGuiStyler]() tool. +A simple and easy-to-use tool to create raygui-based layouts. Useful for fast tools development. The perfect companion for [rGuiStyler](https://github.com/raysan5/raygui/tree/master/tools/rGuiStyler) tool.

@@ -10,19 +10,19 @@ A simple and easy-to-use tool to create raygui-based layouts. Useful for fast to ## Features - - +25 controls available to define your imgui layout + - **+25 controls available to define your imgui layout** - Place controls visually and move/scale them freely - Snap to grid mode for maximum precission - - Save/Load your layout as .rgl (text or binary mode) - - Import .rgs files (rGuiStyler) to customize visual style (drag&drop) - - Export layout directly as plain C code, ready to edit and compile! + - Save/Load your layout as **.rgl (text or binary mode)** + - Import **.rgs** files ([rGuiStyler](https://github.com/raysan5/raygui/tree/master/tools/rGuiStyler)) to customize visual style (drag&drop) + - **Export layout directly as plain C code, ready to edit and compile!** - Multiple code generation options to customize exported code - Supports image loading to be used as tracemap - Autovisible right controls panel for quick selection - Anchors mode support to link your controls - Controls text edition and name edition (for exported variables) - - +10 predefined layout available for reference - - Completely portable (single file) + - **+10 predefined layout available for reference** + - **Completely portable (single file)** - Free and open source ## Usage @@ -38,7 +38,7 @@ To compile the code, you need raygui library (single-file header-only) and rayli ## License -rGuiLayout is free and open source software. rGuiLayout source code is licensed under an unmodified zlib/libpng license. Check [LICENSE](LICENSE) for further details. +rGuiLayout is free and open source software. rGuiLayout source code is licensed under an unmodified zlib/libpng license. Check [LICENSE](LICENSE) for further details. Despite being completely free, consider a small donation for the development efforts or contributing to raylib patreon to help the author keep working on free software for games development. diff --git a/tools/rGuiStyler/README.md b/tools/rGuiStyler/README.md new file mode 100644 index 0000000..1f9bba8 --- /dev/null +++ b/tools/rGuiStyler/README.md @@ -0,0 +1,38 @@ + + +# rGuiStyler +A simple and easy-to-use tool to edit raygui styles. Useful for imgui style customization. The best mate for [rGuiLayout](https://github.com/raysan5/raygui/tree/master/tools/rGuiStyler) tool. + +
+
+
+
+ +## Features + + - **Global style editing or control specific** + - Preview new style in real time and test controls + - Disabled control mode editing included (checkbox) + - Save/Load your style as **.rgs (text or binary mode)** + - Import style from raygui **.png** style file (drag&drop) + - Color palette menu for quick save/selection + - **Completely portable (single file)** + - Free and open source + +## Usage + +The tool is pretty intuitive and easy-to-use, just choose the control to edit, the property to edit and select a color. Changes can be tested in real time in the same tool. Actually, updated style is directly applied to the same tool. + +Once a style has been created, just save it as a **.rgs** file, it can be saved as text or binary mode. + +## Screenshots + +![rGuiStyler](screenshots/screenshot000.png) + +## License + +rGuiStyler is free and open source software. rGuiStyler source code is licensed under an unmodified zlib/libpng license. Check [LICENSE](LICENSE) for further details. + +Despite being completely free, consider a small donation for the development efforts or contributing to [raylib patreon](https://www.patreon.com/raysan5) to help the author keep working on free software for games development. + +*Copyright (c) 2017-2018 raylib technologies ([@raysan5](https://twitter.com/raysan5))* diff --git a/tools/rGuiStyler/external/tinyfiledialogs.c b/tools/rGuiStyler/src/external/tinyfiledialogs.c similarity index 100% rename from tools/rGuiStyler/external/tinyfiledialogs.c rename to tools/rGuiStyler/src/external/tinyfiledialogs.c diff --git a/tools/rGuiStyler/external/tinyfiledialogs.h b/tools/rGuiStyler/src/external/tinyfiledialogs.h similarity index 100% rename from tools/rGuiStyler/external/tinyfiledialogs.h rename to tools/rGuiStyler/src/external/tinyfiledialogs.h diff --git a/tools/rGuiStyler/rguistyler.c b/tools/rGuiStyler/src/rguistyler.c similarity index 100% rename from tools/rGuiStyler/rguistyler.c rename to tools/rGuiStyler/src/rguistyler.c diff --git a/tools/rGuiStyler/rguistyler.ico b/tools/rGuiStyler/src/rguistyler.ico similarity index 100% rename from tools/rGuiStyler/rguistyler.ico rename to tools/rGuiStyler/src/rguistyler.ico diff --git a/tools/rGuiStyler/rguistyler.rc b/tools/rGuiStyler/src/rguistyler.rc similarity index 100% rename from tools/rGuiStyler/rguistyler.rc rename to tools/rGuiStyler/src/rguistyler.rc diff --git a/tools/rGuiStyler/rguistyler_icon b/tools/rGuiStyler/src/rguistyler_icon similarity index 100% rename from tools/rGuiStyler/rguistyler_icon rename to tools/rGuiStyler/src/rguistyler_icon