Re: [Iup-users] Request

2019-12-02 Thread Ranier Vilela
ows Unicode compliant functions without any >additional and >unnecessary overhead. I agreed. The simpler the better. Best regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

[Iup-users] Make Tool: Premake

2019-11-19 Thread Ranier Vilela
Hi, Only for reference. Premake is based in Lua and looks very promising. https://premake.github.io/ Best regards. Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

[Iup-users] Small improvements to iup_controls

2020-02-17 Thread Ranier Vilela
Hi, More small improvements to iup_controls. regards, Ranier Vilela iup_matrixex.patch Description: iup_matrixex.patch iupmat_aux.patch Description: iupmat_aux.patch iupmat_draw.patch Description: iupmat_draw.patch iupmat_mark.patch Description: iupmat_mark.patch iupmat_mem.patch

[Iup-users] Small improvements to iup_win.

2020-02-17 Thread Ranier Vilela
Hi, Small improvements to iup_win. regards, Ranier Vilela iupwin_button.patch Description: iupwin_button.patch iupwin_canvas.patch Description: iupwin_canvas.patch iupwin_str.patch Description: iupwin_str.patch ___ Iup-users mailing list Iup-users

[Iup-users] IUP core small improvements.

2020-02-14 Thread Ranier Vilela
Hi, I have made a small improvements in some files of iup_core. Most is reduce scope for a declaration vars. But iup_names.c have a better improvement. regards, Ranier Vilela iup_image.patch Description: iup_image.patch iup_layoutdlg.patch Description: iup_layoutdlg.patch iup_list.patch

[Iup-users] IUP TRUNK msvc 2010, link errors

2020-01-15 Thread Ranier Vilela
: 9 unresolved externals ../tecmakewin.mak:1605: recipe for target '../lib/dll10/iup.dll' failed win-make[1]: *** [../lib/dll10/iup.dll] Error 1120 makefile:12: recipe for target 'iup' failed win-make: *** [iup] Error 2 regards, Ranier Vilela ___ Iup-users

Re: [Iup-users] IUP TRUNK msvc 2010, link errors

2020-01-15 Thread Ranier Vilela
../tecmakewin.mak:1605: recipe for target '../lib/dll10/iup.dll' failed win-make[2]: *** [../lib/dll10/iup.dll] Error 1120 makefile:12: recipe for target 'iup' failed win-make[1]: *** [iup] Error 2 makefile:9: recipe for target 'iup' failed win-make: *** [iup] Error 2 regards, Ranier Vilela

[Iup-users] IUP-TRUNK dereference null return (src\iup_layoutdlg.c)

2020-01-15 Thread Ranier Vilela
Hi, IupGetCallback function can return NULL, therefore it is necessary to check the return. best regards, Ranier Vilela iup_layoutdlg.patch Description: iup_layoutdlg.patch ___ Iup-users mailing list Iup-users@lists.sourceforge.net https

[Iup-users] IUP-TRUNK dereference after null check (src\iup_export.c)

2020-01-15 Thread Ranier Vilela
Hi, The var file is not properly protected, when call fprintf, and can be NULL. "passing null pointer file to fprintf" message from static tool analyser. best regards, Ranier Vilela iup_export.patch Description: iup_export.patch ___ Iup-use

[Iup-users] IUP-TRUNK Use After Free (win\iupwin_image.c 887 line)

2020-01-15 Thread Ranier Vilela
Hi, win\iupwin_image.c (line 887) handle is freed at line 872, and is passed to function cb if has IMAGEDESTROY_CB. function cb they have no way of knowing that the pointer is invalid! Wouldn't it be better to call cb first, and then release the pointer? regards, Ranier Vilela

Re: [Iup-users] IUP-TRUNK dereference null return (src\iup_layoutdlg.c)

2020-01-15 Thread Ranier Vilela
Hi Scuri, I did not understand your answer, for me still with error. Do you mean that IupGetCallback (tree, "SELECTION_CB"); always return different than NULL in that context? regards, Ranier Vilela De: Antonio Scuri Enviado: quarta-feira, 15

[Iup-users] IUP-TRUNK src\iup_dialog.c (745 line) dead code

2020-01-17 Thread Ranier Vilela
st regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] IUP-r5619 warnings update

2020-01-21 Thread Ranier Vilela
errors are related to third-party libraries, and in the case of IUP, some are out of date, it would be better to correct them first. regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists

[Iup-users] IUP-3.28 src\iup_tree.c (Assigned a value that is never used)

2020-01-04 Thread Ranier Vilela
unt; // <== assigned a value that is never used. regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

[Iup-users] IUP 3.28 (iup_controls) useless assignment

2020-01-04 Thread Ranier Vilela
Hi, Fix useless assigment in iup_cells.c regards, Ranier Vilela iup_controls.patch Description: iup_controls.patch ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

[Iup-users] IUP 3.28 some minor fixes in iup_core.

2020-01-04 Thread Ranier Vilela
Hi, Attached patch to fix some minor fixes in iup_core. regards, Ranier Vilela iup_core.patch Description: iup_core.patch ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] Small improvements to iup_controls

2020-03-05 Thread Ranier Vilela
Thank you Scuri. regards, Ranier Vilela De: Antonio Scuri Enviado: quinta-feira, 5 de março de 2020 16:49 Para: IUP discussion list. Assunto: Re: [Iup-users] Small improvements to iup_controls Applied, but had to fix a problem in one of the patches

Re: [Iup-users] Patch to simplify IM's (r757) src/process/im_analyze.cpp

2020-04-26 Thread Ranier Vilela
e could be rewritten as: free(cm20); free(cm02); free(cm11); +1 I've tried without success, say what on that list. Which is a waste to test against NULL before calling free. regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.s

Re: [Iup-users] CMake with msvc 2019 (32 bits)

2020-05-01 Thread Ranier Vilela
dditional drivers, I > think they were tested in MacOS and Android only. You are welcom.e > This should be released after the next version. We still have a long work > ahead. Thanks. Will need, a version with Release|Win32, please. regards, Ranier Vilela _

[Iup-users] CMake with msvc 2019 (32 bits)

2020-05-01 Thread Ranier Vilela
ation of Debug|Win32. [C:\dll\iup\iup\CMakeFiles\3.16.19112601-MSVC_2\VCTargetsPath.vcxproj] 0 Warning(s) 1 Error(s) Time Elapsed 00:00:00.14 Exit code: 1 -- Configuring incomplete, errors occurred! regards, Ranier Vilela Se

Re: [Iup-users] Repeat of IM's "process/im_analyze.cpp allow free(NULL); " patch...

2020-05-17 Thread Ranier Vilela
As already mentioned, most of the report refers to the third-party library, where they do not have access. Could you forward this report to the maintainers of these libraries? regards, Ranier Vilela ___ Iup-users mailing list Iup-users

Re: [Iup-users] Repeat of IM's "process/im_analyze.cpp allow free(NULL); " patch...

2020-05-17 Thread Ranier Vilela
akes no difference, calling free with NULL, as long as the pointer has not been released before. ptr = NULL; free(ptr); The big question is how to catch the double free that may exist. Because this not to protect agaist double free. if (ptr) { free(ptr); } regards, Ranier Vilela ___

Re: [Iup-users] Repeat of IM's "process/im_analyze.cpp allow free(NULL); " patch...

2020-05-17 Thread Ranier Vilela
ifference, calling free with NULL, as long as the pointer has not been released before. ptr = NULL; free(ptr); The big question is how to catch the double free that may exist. Because this not to protect agaist double free. if (ptr) { free(ptr); } regards, Ranier Vilela ___

Re: [Iup-users] Repeat of IM's "process/im_analyze.cpp allow free(NULL); " patch...

2020-05-18 Thread Ranier Vilela
De: Pete Lomax via Iup-users Enviado: segunda-feira, 18 de maio de 2020 02:34 Para: IUP discussion list. Cc: Pete Lomax Assunto: Re: [Iup-users] Repeat of IM's "process/im_analyze.cpp allow free(NULL); " patch... On Sunday, 17 May 2020, 23:05:05 BST, Ranier Vilela wrote: The bi

Re: [Iup-users] IupConfig

2020-05-07 Thread Ranier Vilela
/windows/win32/intl/locale-names It seems to me that the problem is related to correctly naming the locale.. regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] IUP 3.29

2020-05-19 Thread Ranier Vilela
De: Antonio Scuri Enviado: terça-feira, 19 de maio de 2020 02:43 Para: IUP discussion list. Assunto: [Iup-users] IUP 3.29 Hi All, We just released IUP version 3.29 Thank you Scuri, great new. regards, Ranier VIlela ___ Iup-users mailing list

Re: [Iup-users] IupText APPEND Question

2020-03-24 Thread Ranier Vilela
Hi, Some functions in IUP only work after mapping. IupSetAttribute(logText, "APPEND","YES\n"); IupSetAttribute(logText, "APPEND","NO\n"); "APPEND", I believe that is the case. IupShowXY, IupS

Re: [Iup-users] Inline editing items in IupList

2020-09-14 Thread Ranier Vilela
line like on this screenshot: >https://doc-snapshots.qt.io/4.8/images/stringlistmodel.png. >Is it possible to do it in IUP? It isn't a top priority, as I can always use a >pop up, but an inline editor would look >better >in my opinion. You tried? IupList with DROPDOWN=NO EDITBOX=YES

[Iup-users] IUP iupDlgListDestroyAll refactored

2020-05-28 Thread Ranier Vilela
st->ih); /* this will also destroy the list */ list->ih = NULL; } } } regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

[Iup-users] [PATCH] Fix assorted readability names

2020-05-28 Thread Ranier Vilela
Hi, Checking the IUP base code, there are several differences between the declarations and the implementation of the code. Most harmless, however, for reasons of readability, would it be better to correct? regards, Ranier Vilela assorted_readability_names.path Description

[Iup-users] IUP assorted issues

2020-05-29 Thread Ranier Vilela
shaded variable, reformulated to avoid. 14. \ src \ mot \ iupmot_text.c (684) The function deserves a careful review, because the value parameter is being shaded by another local variable, renamed to avoid it, but I don't know if it's the expected behavior. regards, Ranier Vilela assorted_issues

Re: [Iup-users] using IUP via dynamic linking

2020-07-21 Thread Ranier Vilela
libim.dll Are you sure, about libiupim.so name? regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

[Iup-users] IUP Toolbar native support

2020-07-21 Thread Ranier Vilela
Hi Scuri, I'm thinking of adding toolbar support to the applications. While looking at the example on iupvled, I would like to ask. There is native support on Windows, GTK and Motif for native toolbar, is there any special reason for not implementing an IupToolbar? regards, Ranier Vilela

Re: [Iup-users] IUP Toolbar native support

2020-07-22 Thread Ranier Vilela
> Because a toolbar is simply a combination of current IUP elements. With a > simple IupHbox and IupButtons you can >quickly implement a toolbar. IupVled > toolbar and IupLuaScripter toolbar are examples. Ok, thank you. regards, Ranier Vilela ___

[Iup-users] IUP weird issues (DirectX)

2020-08-03 Thread Ranier Vilela
is exported? To implement PopUp menu context, need this: IupSetCallback(mat, "__OLD_BUTTON_CB", (Icallback) IupGetCallback(mat, "BUTTON_CB")); IupSetCallback(mat, "BUTTON_CB", (Icallback) iup_popupmenu_button_cb); To call original action

Re: [Iup-users] IUP 3.30

2020-08-03 Thread Ranier Vilela
om source to run on Windows XP/Vista. > * Several bug fixes > You can find the complete list of changes and files for download at: Thanks Scuri, regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] IUP weird issues (DirectX)

2020-08-03 Thread Ranier Vilela
> But IupMatrix also exports its own callbacks. For instance, you can use the > CLICK_CB or RELEASE_CB callbacks to >implement a popup menu. Ok, many thanks. regards, Ranier Vilela Em seg., 3 de ago. de 2020 às 13:47, Ranier Vilela mailto:ranier_...@hotmail.com>> esc

[Iup-users] IUP assorted issues (part II)

2020-07-07 Thread Ranier Vilela
src/iup_image.c Nonsense code? Or is another logic? 5. src/win/iupwin_filedlg.c Optimized test is buffer (char *) is empty. 6. src/win/iupwin_touch.c Bug? ti->dwID? regards, Ranier Vilela iup_assorted_issues_part_ii.patch Description: iup_assorted_issues_part_i

Re: [Iup-users] IUP assorted issues (part II)

2020-07-07 Thread Ranier Vilela
roll, index is equal p->num_noscroll. regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] IUP 3.29 possible regression (IupMessage hide app completely

2020-07-04 Thread Ranier Vilela
De: Antonio Scuri Enviado: sábado, 4 de julho de 2020 16:28 Para: IUP discussion list. Assunto: Re: [Iup-users] IUP 3.29 possible regression (IupMessage hide app completely > Fixed and committed to the SVN. Thanks for reporting. Thank you. regards, Ranier Vil

[Iup-users] IUP-3.29 WIndows compilation (msvc 2019 32bits), tecmakewin troubles

2020-07-10 Thread Ranier Vilela
:41: recipe for target 'iuplua5' failed win-make: *** [iuplua5] Error 2 The dep directory already exist, whay is complain? What is correct directory structure for dep? set NO_DEPEND=Yes is set. regards, Ranier Vilela ___ Iup-users mailing list Iup-users

[Iup-users] IUP 3.29 Possible leak at iupwin_font.c

2020-07-10 Thread Ranier Vilela
, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] IUP 3.29 Possible leak at iupwin_font.c

2020-07-10 Thread Ranier Vilela
De: Ranier Vilela Enviado: sexta-feira, 10 de julho de 2020 16:12 Para: IUP discussion list. Assunto: [Iup-users] IUP 3.29 Possible leak at iupwin_font.c Attached patch try to fix. regards, Ranier Vilela fix_possible_leak_iupwin_font.patch Description: fix_possible_leak_iupwin_font.patch

[Iup-users] IUP-.32.9 Windows compilation (msvc 2019 32bits)

2020-07-10 Thread Ranier Vilela
[1]: *** [do_all] Error 2 makefile:51: recipe for target 'iupvled' failed win-make: *** [iupvled] Error 2 regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

[Iup-users] IUP assorted issues (part III)

2020-07-10 Thread Ranier Vilela
/iupwin_image.c) If IMAGEDESTROY_CB is defined at line 889, a function call will be done by passing variable handle freed. cb function callback cannot use handle. regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https

Re: [Iup-users] IUP iupDlgListDestroyAll refactored

2020-07-10 Thread Ranier Vilela
;ih; ++count; } } for (i = 0; i < count; ++i) { IupDestroy(ih_array[i]); /* this will also destroy the list */ } free(ih_array); } Advantagens: 1. Avoid assign variable count with i value; 2. Avoid call iupObjectCheck for every ih_array[i], since they have all been verified. r

[Iup-users] IUP 3.29 Possible erros with iup_mglplot.cpp

2020-07-10 Thread Ranier Vilela
declaration constexpr explicit( ^ 3. line 96: error #772: "explicit" is not allowed constexpr explicit( ^ 4. line 98: error #65: expected a ";" pair() noexcept( ^ 5. line 178: error #40: expected an identifier explicit piecewise_construct_t() =

Re: [Iup-users] IUP 3.29 Possible erros with iup_mglplot.cpp

2020-07-10 Thread Ranier Vilela
Please, disregard that message. Wrong diagnostics. regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

[Iup-users] IUP assorted issues (part IV)

2020-07-12 Thread Ranier Vilela
with only size 3. iupGLDrawPolygon call msvc Polygon function 3. Possible division by zero at srcglcontrols/iup_gldraw.c variable sb_range can be zero regards, Ranier Vilela assorted_issues_part_iv.patch Description: assorted_issues_part_iv.patch ___ Iup

Re: [Iup-users] IUP assorted issues

2020-07-01 Thread Ranier Vilela
De: Antonio Scuri Enviado: quarta-feira, 1 de julho de 2020 22:22 Para: IUP discussion list. Assunto: Re: [Iup-users] IUP assorted issues > Just commited to the SVN. Thanks for the report and fixes. You are welcome. regards, Ranier Vilela ___

Re: [Iup-users] IUP assorted issues (part II)

2020-07-07 Thread Ranier Vilela
De: Antonio Scuri Enviado: terça-feira, 7 de julho de 2020 18:05 Para: IUP discussion list. Assunto: Re: [Iup-users] IUP assorted issues (part II) > All changes committed to the SVN. Thank you. regards, Ranier Vilela ___ Iup-users mailing list

Re: [Iup-users] IUP 3.29 possible regression (IupMessage hide app completely

2020-06-18 Thread Ranier Vilela
De: Ranier Vilela Enviado: quinta-feira, 18 de junho de 2020 18:26 Para: IUP discussion list. Assunto: [Iup-users] IUP 3.29 possible regression (IupMessage hide app completely >Maybe has a possible regression with IUP 3.29, regarding IUP 3.25 (last used). >IupMessage, hide app completely,

[Iup-users] IUP 3.29 possible regression (IupMessage hide app completely

2020-06-18 Thread Ranier Vilela
Hi Scuri, Maybe has a possible regression with IUP 3.29, regarding IUP 3.25 (last used). IupMessage, hide app completely, after click ok button. IUP 3.29 Win32_DLL15_lib Windows 10 64 bits (2004) app msvc 2019 (64 bits) regards, Ranier Vilela

Re: [Iup-users] IUP 3.29 possible regression (IupMessage hide app completely

2020-06-18 Thread Ranier Vilela
De: Ranier Vilela Enviado: quinta-feira, 18 de junho de 2020 18:44 Para: IUP discussion list. Assunto: Re: [Iup-users] IUP 3.29 possible regression (IupMessage hide app completely >IUP 3.29 >Win32_DLL15_lib >Windows 10 64 bits (2004) >app msvc 2019 (64 bits) Correcting: Window

Re: [Iup-users] IUP 3.29 possible regression (IupMessage hide app completely

2020-06-23 Thread Ranier Vilela
De: Ranier Vilela Enviado: sexta-feira, 19 de junho de 2020 02:00 Para: IUP discussion list. Assunto: Re: [Iup-users] IUP 3.29 possible regression (IupMessage hide app completely >Can you please, test, this debug version? >https://1drv.ms/u/s!AjvmIxxSzAeCgiEDb_H5mhmik8VA?e=66K4VJ Back

Re: [Iup-users] IUP 3.29 Possible leak at iupwin_open.c

2020-06-25 Thread Ranier Vilela
debugging purposes only. > The example in FormatMessage doc is quite clear: >https://docs.microsoft.com/en-us/previous-versions/aa908810(v=msdn.10) Interestingly, I don't call this function directly, anywhere. I am using the IUP-3.27 release libraries. regards

[Iup-users] IUP 3.29 Possible leak at iupwin_open.c

2020-06-25 Thread Ranier Vilela
.85) Can you test, replace LocalFree for FreeHeap? I still, can not compile IUP here. regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] IUP 3.29 possible regression (IupMessage hide app completely

2020-06-18 Thread Ranier Vilela
Visual Studio >when I click OK the main dialog goes > behind the visual studio window. Running outside VS this does not occur. I'm > >using VS 2017. Can you please, test, this debug version? https://1drv.ms/u/s!AjvmIxxSzAeCgiEDb_H5mhmik8VA?e=66K4VJ rega

Re: [Iup-users] IUP 3.29 Possible leak at iupwin_open.c

2020-06-26 Thread Ranier Vilela
De: Ranier Vilela Enviado: quinta-feira, 25 de junho de 2020 21:01 Para: IUP discussion list. Assunto: Re: [Iup-users] IUP 3.29 Possible leak at iupwin_open.c >Interestingly, I don't call this function directly, anywhere. >I am using the IUP-3.27 release libraries. The call origin i

Re: [Iup-users] Fw: IUP License Questions

2020-06-05 Thread Ranier Vilela
ns that may occur, with or without warnings, by whoever uses the libraries, because in the end, it is not Tecgraf that is violating the GPL, after all the products distributed by it are free-code (GPL accordance). Better yet, walk the path of removing all GPL libraries, step by step, in the end, indirect

Re: [Iup-users] Fw: IUP License Questions

2020-06-06 Thread Ranier Vilela
De: Richard Stallman Enviado: sábado, 6 de junho de 2020 03:56 Para: Ranier Vilela Cc: arobinso...@cox.net; iup-users@lists.sourceforge.net Assunto: Re: [Iup-users] Fw: IUP License Questions [[[ To any NSA and FBI agents reading my email: please consider]]] [[[ whether defending the US

Re: [Iup-users] Source code license comments; IUP/CD/IM notes

2020-06-07 Thread Ranier Vilela
e just >descending into name calling? Sorry for that. Unfortunately, collaborating is not for everyone. best regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/

Re: [Iup-users] Fw: IUP License Questions

2020-06-03 Thread Ranier Vilela
>Let me know if I should escalate this issue to someone else if this is not >something you want to deal with because I don't want to waste your time or >mine. Do the list a favor, stop wasting our time and get out of it. +1 for remove from the list. Ranier Vilela ___

Re: [Iup-users] Fw: IUP License Questions

2020-06-04 Thread Ranier Vilela
eady have a CD_CAIRO_PDF driver implemented. But it depends on > Cairo. Cairo is LGPL and can be used with commercial products (non-free-code). https://www.cairographics.org/ regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourcefor

Re: [Iup-users] Fw: IUP License Questions

2020-06-04 Thread Ranier Vilela
a viable alternative to the CD library, it is free and in my opinion better than PDFLite. >But I'll take a look on LibHaru. Maybe, has lua package... regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] Fw: IUP License Questions

2020-06-03 Thread Ranier Vilela
all the licensing requirements >of anything that is not actually a part >of the IUP licensing, as every other >company does. Don't make this more difficult than it has to be. I not agreed. First, No one is forced to do or fail to do something for you, is that CLEAR for you! Second, Everyt

Re: [Iup-users] IUP assorted issues

2020-06-03 Thread Ranier Vilela
De: Antonio Scuri Enviado: segunda-feira, 1 de junho de 2020 16:50 Para: IUP discussion list. Assunto: Re: [Iup-users] IUP assorted issues > Ok. I'll take a look. Thanks. Scuri, can we move to for whatever matters that really matter to IUP, Did you get a look at the patch? regards, Ran

Re: [Iup-users] Fw: IUP License Questions

2020-06-04 Thread Ranier Vilela
esting, for the future of course, one more step. Replace FFTW by FFTSS (https://www.ssisc.org/fftss/index.html.en) Excerpt taken: "Key Features Compatibility with FFTW3. Replace the header file name "fftw3.h" with "fftw3compat.h&q

Re: [Iup-users] Fw: IUP License Questions

2020-06-05 Thread Ranier Vilela
De: Richard Stallman Enviado: sexta-feira, 5 de junho de 2020 03:17 Para: Ranier Vilela Cc: arobinso...@cox.net; iup-users@lists.sourceforge.net Assunto: Re: [Iup-users] Fw: IUP License Questions [[[ To any NSA and FBI agents reading my email: please consider]]] [[[ whether defending the US

Re: [Iup-users] IUP License Questions

2020-06-02 Thread Ranier Vilela
ies, in dynamic DLL and who do not use any 3rd libraries depending on GPL, are legal. regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] IUP assorted issues

2020-06-03 Thread Ranier Vilela
De: Andrew Robinson Enviado: quarta-feira, 3 de junho de 2020 23:23 Para: IUP discussion list. Assunto: Re: [Iup-users] IUP assorted issues >so I'm ignoring you from now on. Please, do me this favor. ___ Iup-users mailing list

Re: [Iup-users] Fw: IUP License Questions

2020-06-04 Thread Ranier Vilela
mercial product (non-free code). Alternatively, it could help to develop a version for use with libharu whose license is BSD. https://github.com/libharu/libharu/wiki/FAQ regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https

Re: [Iup-users] IUP License Questions

2020-06-02 Thread Ranier Vilela
. Math Graphics Library (MIT), legal use with DLL or STATIC http://glm.g-truc.net/copying.txt 6. WinDrawLib (BSD), legal use with DLL or STATIC https://github.com/mity/windrawlib Conclusion, who use IUP library, it is perfectly legal and can be used with commercial software. T

Re: [Iup-users] IupProgressBar

2020-07-15 Thread Ranier Vilela
e code. if (!iupwin_comctl32ver6 && !iupAttribGetBoolean(ih, "DASHED")) dwStyle |= PBS_SMOOTH; Windows DASHED gauge, works with visual styles? regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https

[Iup-users] IupList Behavior (Windows)

2020-07-15 Thread Ranier Vilela
: https://docs.microsoft.com/en-us/windows/win32/inputdev/wm-mousemove "If an application processes this message, it should return zero." At src/win/iupwin_list.c (1557) WM_MOUSEMOVE: is processed, but IUP lacks to return zero, why? regards, Ran

Re: [Iup-users] IupProgressBar

2020-07-16 Thread Ranier Vilela
to the team, in the documentation, which is the correct way to use the resource. In this particular case, we need to find out if the use of the gauge is in accordance with the documentation. regards, Ranier Vilela ___ Iup-users mailing li

Re: [Iup-users] IUP assorted issues (part IV)

2020-07-16 Thread Ranier Vilela
gt;> iupGLDrawPolygon call msvc Polygon function > Same >> 3. Possible division by zero at srcglcontrols/iup_gldraw.c >> variable sb_range can be zero >If range is zero the scrollbar is not displayed, so that function is never

Re: [Iup-users] IupList Behavior (Windows)

2020-07-16 Thread Ranier Vilela
is processed, but IUP lacks to return zero, why? > In the general case, yes it must return 0. But in this case we are sharing > the processing of WM_MOUSEMOVE with >the internal COMBOBOX implementation, > so notice that we will leave that pro

Re: [Iup-users] IUP assorted issues (part IV)

2020-07-16 Thread Ranier Vilela
that can corrupt memory. regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

[Iup-users] IupList extended behavior (find string)

2020-07-30 Thread Ranier Vilela
normal behavior: Item 1: Red Item 2: White Item 3: Gray Item 4: Green If user type G, Windows ComboBox select the item 3 (only first G) Extended behavior: If user type Gre, Windows ComboBox select the item 4 What do you think? regards, Ranier Vilela

Re: [Iup-users] IUP assorted issues (part IV)

2020-07-16 Thread Ranier Vilela
5] = 70; cast_to_point(ipoints, 3); } output: cpoints[0]->x=214748364980 cpoints[0]->y=85899346100 cpoints[1]->x=300647710950 cpoints[1]->y=0 cpoints[2]->x=0 cpoints[2]->y=135050311015237 I think is better declare a struct point for the IUP use. typedef struct IUP_POINT {

Re: [Iup-users] IUP assorted issues (part IV)

2020-07-16 Thread Ranier Vilela
points[1]->y=20 cpoints[2]->x=230 cpoints[2]->y=70 Maybe, can changed to long? Is secure to GTK and Motif? regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] IupGetAllAttributes C question

2020-07-30 Thread Ranier Vilela
for (int i = 0; i < names_count; i++) { printf("attribute: %s\n", names[i]); } IupClose(); } regards Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] IupList extended behavior (find string)

2020-07-30 Thread Ranier Vilela
> Yes, that could be very interesting. I'm closing a new version now. We could > plan it for the next version. Great, how can I help? regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourcefor

[Iup-users] IUP Drag support

2021-04-29 Thread Ranier Vilela
Hi Scuri, Do you know if IUP supports drag & drop between different applications? Drag application (Windows Paint) Drop application (IupCanvas) It's possible? regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net h

Re: [Iup-users] Ubuntu ARM 64 - vertical RASTERSIZE not working

2021-04-21 Thread Ranier Vilela
IUP either. >This is becoming VERY disappointing! I am sure that IUP will be very happy to receive patches. regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

[Iup-users] First use of IupImgLib.dll

2021-04-28 Thread Ranier Vilela
Hi Scuri, First use of IupImgLib.dll Error message: "Não foi possível localizar o ponto de entrada do procedimento IupLsOpened na biblioteca de vinculo dinamico iupimaglib.dll" iup-3.30_Win32_dll16_lib.zip Any idea what's wrong? regards, Ran

Re: [Iup-users] First use of IupImgLib.dll

2021-04-29 Thread Ranier Vilela
De: Ranier Vilela Enviado: quarta-feira, 28 de abril de 2021 22:51 Para: IUP discussion list. Assunto: [Iup-users] First use of IupImgLib.dll >Hi Scuri, >First use of IupImgLib.dll >Error message: >"Não foi possível localizar o ponto de entrada do procedimento >IupLsOpe

Re: [Iup-users] Issue with iup.list and showdragdrop

2021-04-15 Thread Ranier Vilela
De: Scott Morgan via Iup-users Enviado: quinta-feira, 15 de abril de 2021 13:35 Para: iup-users@lists.sourceforge.net Cc: Scott Morgan Assunto: Re: [Iup-users] Issue with iup.list and showdragdrop On 14/04/2021 22:54, Ranier Vilela wrote: > De: Scott Morgan via Iup-users >> &

Re: [Iup-users] Ubuntu ARM 64 - vertical RASTERSIZE not working

2021-04-21 Thread Ranier Vilela
of GTK is used? regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] Ubuntu ARM 64 - vertical RASTERSIZE not working

2021-04-21 Thread Ranier Vilela
obably wrong guess. In ARM64 (Ubuntu 20.04), the window size is very small, to properly draw widgets? regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

Re: [Iup-users] Issue with iup.list and showdragdrop

2021-04-14 Thread Ranier Vilela
is >situation) and immediately used on the next line (itemdata->hBitmap) Correct, winListGetItemData can return NULL. It's needed protect itemdata against NULL. regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/iup-users

[Iup-users] IUP 3.30 misses functions prototypes

2021-08-10 Thread Ranier Vilela
, unsigned char *b, unsigned char *a); Which causes the following error message: "Could not find entry point for IupGetRGBA procedure in dynamic link library" regards, Ranier Vilela ___ Iup-users mailing list Iup-users@lists.sourceforge