Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - WiWo

#1
I'm trying to use tgui 0.7 with CodeLite on Windows 10. I installed the TDM-GCC compiler (5.1) (32-bit).
I can successfully use CMake(32-bit) to create a CodeLite project. However, when I try to build it using CodeLite I get this error:

<tgui path>\src\TGUI\Loading\Theme.cpp: In member function 'virtual void tgui::Theme::initWidget(tgui::Widget*, std::__cxx11::string, std::__cxx11::string)':
<tgui path>\src\TGUI\Loading\Theme.cpp:364:66: error: '_fullpath' was not declared in this scope
             buffer = _fullpath(nullptr, resourcePath.c_str(), 512);
                                                                                       ^
src\TGUI\CMakeFiles\tgui.dir\build.make:562: recipe for target 'src/TGUI/CMakeFiles/tgui.dir/Loading/Theme.cpp.obj' failed
mingw32-make.exe[1]: *** [src/TGUI/CMakeFiles/tgui.dir/all] Error 2
mingw32-make.exe: *** [all] Error 2

The same issue appeared when I tried the 0.8 version of tgui.

When instead I try to use the precompiled version of tgui 0.7 for tdm I get errors where I use themes (for instance when calling theme->load), and also in the Singnals.hpp file.

What I'm trying to do is simply compile a tgui 0.7 project on windows 10, but since VS 2017 Community has no tutorial and CodeBlocks keeps having problems with c++11, CodeLite was the best solution.

Thanks for any help.
#2
Help requests / Special Character
23 August 2017, 13:04:18
I need to show some text I read from a file over an image on the screen.
So I used a text box with a personalized theme. (I can swap to something else, if necessary)

However, I need to display characters such as à, è, ° .

I read the post about Cyrillic characters, but I am using Arial as font and I'm sure these characters are included.

Is there any way to fix this? Thanks a lot.

p.s.: even sf::Text do not display that characters and I am using the 0.7.4 version of TGUI