Review rguilayout!

This commit is contained in:
Ray
2018-05-10 19:25:18 +02:00
parent dd3c843a5d
commit a8e9d47c7d
7 changed files with 37 additions and 12 deletions

View File

@ -1,13 +1,36 @@
/******************************************************************************************* /*******************************************************************************************
* *
* rGuiLayout - raygui layout editor * rGuiLayout v1.0 - raygui layout editor
* *
* This example has been created using raylib 1.9.7 (www.raylib.com) * Compile this program using:
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * gcc -o rguilayout.exe rguilayout.c external/tinyfiledialogs.c -I..\.. \
* -lraylib -lopengl32 -lgdi32 -lcomdlg32 -lole32 -std=c99 -Wall
* *
* Copyright (c) 2014-2018 Ramon Santamaria (@raysan5), Jordi Jorba & Adria Arranz * CONTRIBUTORS:
* Ramon Santamaria: Supervision, review, design, update and maintenance...
* Adria Arranz: Design and implementation v1.0 (2018)
* Jordi Jorba: Design and implementation v1.0 (2018)
* *
********************************************************************************************/ * LICENSE: zlib/libpng
*
* Copyright (c) 2014-2018 raylib technologies (@raysan5)
*
* This software is provided "as-is", without any express or implied warranty. In no event
* will the authors be held liable for any damages arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose, including commercial
* applications, and to alter it and redistribute it freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must not claim that you
* wrote the original software. If you use this software in a product, an acknowledgment
* in the product documentation would be appreciated but is not required.
*
* 2. Altered source versions must be plainly marked as such, and must not be misrepresented
* as being the original software.
*
* 3. This notice may not be removed or altered from any source distribution.
*
**********************************************************************************************/
#include "raylib.h" #include "raylib.h"
@ -1542,7 +1565,9 @@ int main()
if (fileName != NULL) if (fileName != NULL)
{ {
if (GetExtension(fileName) == NULL) strcat(fileName, ".c\0"); // No extension provided char outFileName[64] = { 0 };
strcpy(outFileName, fileName);
if (GetExtension(fileName) == NULL) strcat(outFileName, ".c\0"); // No extension provided
GenerateCode(fileName, config); GenerateCode(fileName, config);
generateWindowActive = false; generateWindowActive = false;
} }

View File

@ -1,8 +1,8 @@
GLFW_ICON ICON "rguilayout.ico" GLFW_ICON ICON "rguilayout.ico"
1 VERSIONINFO 1 VERSIONINFO
FILEVERSION 1,6,0,0 FILEVERSION 1,0,0,0
PRODUCTVERSION 1,6,0,0 PRODUCTVERSION 1,0,0,0
BEGIN BEGIN
BLOCK "StringFileInfo" BLOCK "StringFileInfo"
BEGIN BEGIN
@ -13,7 +13,7 @@ BEGIN
VALUE "FileDescription", "rGuiLayout - raygui layout editor" VALUE "FileDescription", "rGuiLayout - raygui layout editor"
VALUE "FileVersion", "1.0" VALUE "FileVersion", "1.0"
VALUE "InternalName", "rguilayout" VALUE "InternalName", "rguilayout"
VALUE "LegalCopyright", "(c) 2017 Ramon Santamaria - @raysan5" VALUE "LegalCopyright", "(c) 2017 raylib technologies (@raysan5)"
//VALUE "OriginalFilename", "raylib_app.exe" //VALUE "OriginalFilename", "raylib_app.exe"
VALUE "ProductName", "rGuiLayout" VALUE "ProductName", "rGuiLayout"
VALUE "ProductVersion", "1.0" VALUE "ProductVersion", "1.0"

Binary file not shown.

View File

@ -3,8 +3,8 @@
* rGuiStyler v2.0 - raygui Style Editor * rGuiStyler v2.0 - raygui Style Editor
* *
* Compile this program using: * Compile this program using:
* gcc -o $(NAME_PART).exe $(FILE_NAME) external/tinyfiledialogs.c -I..\.. \ * gcc -o rguistyler.exe rguistyler.c external/tinyfiledialogs.c -I..\.. \
* -lraylib -lglfw3 -lopengl32 -lgdi32 -lcomdlg32 -lole32 -std=c99 -Wall * -lraylib -lopengl32 -lgdi32 -lcomdlg32 -lole32 -std=c99 -Wall
* *
* CONTRIBUTORS: * CONTRIBUTORS:
* Ramon Santamaria: Supervision, review, redesign, update and maintenance... * Ramon Santamaria: Supervision, review, redesign, update and maintenance...

View File

@ -13,7 +13,7 @@ BEGIN
VALUE "FileDescription", "rGuiStyler - raygui styles editor" VALUE "FileDescription", "rGuiStyler - raygui styles editor"
VALUE "FileVersion", "2.0" VALUE "FileVersion", "2.0"
VALUE "InternalName", "rguistyler" VALUE "InternalName", "rguistyler"
VALUE "LegalCopyright", "(c) 2018 raylib technologies" VALUE "LegalCopyright", "(c) 2018 raylib technologies (@raysan5)"
//VALUE "OriginalFilename", "raylib_app.exe" //VALUE "OriginalFilename", "raylib_app.exe"
VALUE "ProductName", "rGuiStyler" VALUE "ProductName", "rGuiStyler"
VALUE "ProductVersion", "2.0" VALUE "ProductVersion", "2.0"