Re: [Iup-users] Iup LuaJIT change windows style

2018-11-25 Thread Ranier VF
Hi, Maybe this can help you. https://docs.microsoft.com/en-us/windows/desktop/controls/cookbook-overview Best regards. Ranier De: Johann Philippe via Iup-users Enviado: domingo, 25 de novembro de 2018 17:59 Para: Antonio Scuri Cc: Johann Philippe; IUP

Re: [Iup-users] Iup LuaJIT change windows style

2018-11-25 Thread Johann Philippe via Iup-users
I'll check that. Thanks for all ! Johann Le dimanche 25 novembre 2018 à 17:21:50 UTC+1, Antonio Scuri a écrit :   Yes, it is something in the Windows configuration.   I older Windows you could use a classic theme so all application will have the classic look without the visual

Re: [Iup-users] Iup LuaJIT change windows style

2018-11-25 Thread Antonio Scuri
Yes, it is something in the Windows configuration. I older Windows you could use a classic theme so all application will have the classic look without the visual styles. In Windows 10, the classic look option is not there, but maybe other parameter on the Control Panel does that. I have no

Re: [Iup-users] Iup LuaJIT change windows style

2018-11-25 Thread Johann Philippe via Iup-users
It seems to be the same in the Iup test app. May it be the Windows 10 config ? Le dimanche 25 novembre 2018 à 16:59:28 UTC+1, Antonio Scuri a écrit :   That's weird because the application should work with or without the Manifest only the appearance of the common controls . What's not

Re: [Iup-users] Iup LuaJIT change windows style

2018-11-25 Thread Antonio Scuri
That's weird because the application should work with or without the Manifest only the appearance of the common controls . What's not working? Regarding the default file, probably TEC_64 is not defined and has the same effect as commenting the manifest include, because the 32 bit manifest

Re: [Iup-users] Iup LuaJIT change windows style

2018-11-25 Thread Johann Philippe via Iup-users
It also doesn't work with the basic .rc like this : #ifndef IUP_DLL #ifdef TEC_64 1 24 "iup64.manifest" #else 1 24 "iup.manifest" #endif #endif I need to remove so that remain only 1 24 "iup64.manifest" Le dimanche 25 novembre 2018 à 16:15:03 UTC+1, Antonio Scuri a écrit :   Hi,  

Re: [Iup-users] Iup LuaJIT change windows style

2018-11-25 Thread Johann Philippe via Iup-users
In fact, the manifest is useful. I use the iup64.manifest. i removed some of the last lines in the .rc file so that remain only  :1 24 iup64.manifestAnd if i comment this, the application doesn't work. If i keep this line, the application still works, but still using classic visual style.

Re: [Iup-users] Iup LuaJIT change windows style

2018-11-25 Thread Antonio Scuri
Hi, Check if you are using the correct manifest file for 32 or 64 bits. You can take a look at LuaBinaries distribution source files. There manifests for both. The IUP source package also contains sample manifests. Best, Scuri Em dom, 25 de nov de 2018 às 12:44, Johann Philippe

Re: [Iup-users] Iup LuaJIT change windows style

2018-11-25 Thread Johann Philippe via Iup-users
Some precisions : i'm compiling some Lua code with the lua C api, using iup precompiled. Le dimanche 25 novembre 2018 à 15:41:33 UTC+1, Johann Philippe a écrit : I'm compiling the application with gcc. So i did pre-compile the iup.rc to an object file .o, and compiled my project