SourceForge logo
SourceForge logo
Menu

wxlua-users — wxLua list for users and developers

You can subscribe to this list here.

2005 Jan
Feb
Mar
Apr
May
Jun
(60)
Jul
(35)
Aug
(32)
Sep
(5)
Oct
(5)
Nov
(58)
Dec
(34)
2006 Jan
(114)
Feb
(184)
Mar
(153)
Apr
(90)
May
(153)
Jun
(59)
Jul
(24)
Aug
(43)
Sep
(17)
Oct
(34)
Nov
(11)
Dec
(204)
2007 Jan
(84)
Feb
(119)
Mar
(38)
Apr
(28)
May
(52)
Jun
(105)
Jul
(64)
Aug
(67)
Sep
(14)
Oct
(3)
Nov
(28)
Dec
(55)
2008 Jan
(228)
Feb
(55)
Mar
(30)
Apr
(30)
May
(15)
Jun
(20)
Jul
(12)
Aug
(3)
Sep
(13)
Oct
(54)
Nov
(35)
Dec
(35)
2009 Jan
(19)
Feb
(20)
Mar
(34)
Apr
(4)
May
(60)
Jun
(25)
Jul
(16)
Aug
(51)
Sep
(19)
Oct
(62)
Nov
(21)
Dec
(12)
2010 Jan
(1)
Feb
Mar
(4)
Apr
(12)
May
(23)
Jun
(13)
Jul
(1)
Aug
(40)
Sep
(18)
Oct
(21)
Nov
(26)
Dec
(34)
2011 Jan
(17)
Feb
(23)
Mar
(1)
Apr
(10)
May
(1)
Jun
(5)
Jul
(1)
Aug
Sep
Oct
(2)
Nov
Dec
(43)
2012 Jan
(5)
Feb
(19)
Mar
(6)
Apr
(24)
May
(39)
Jun
(83)
Jul
(29)
Aug
(36)
Sep
(64)
Oct
(55)
Nov
(12)
Dec
(7)
2013 Jan
(17)
Feb
(10)
Mar
(37)
Apr
(27)
May
(13)
Jun
(9)
Jul
(7)
Aug
(61)
Sep
(23)
Oct
(23)
Nov
(30)
Dec
(16)
2014 Jan
(23)
Feb
(13)
Mar
(9)
Apr
(17)
May
(2)
Jun
(11)
Jul
(2)
Aug
Sep
(9)
Oct
(24)
Nov
(2)
Dec
(14)
2015 Jan
(6)
Feb
(4)
Mar
(17)
Apr
May
(7)
Jun
(3)
Jul
Aug
Sep
(2)
Oct
(21)
Nov
(6)
Dec
(2)
2016 Jan
(4)
Feb
(2)
Mar
(7)
Apr
(3)
May
(11)
Jun
(6)
Jul
Aug
(1)
Sep
Oct
Nov
Dec
2017 Jan
Feb
Mar
Apr
(1)
May
(1)
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2018 Jan
(2)
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2019 Jan
Feb
Mar
(6)
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2020 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
(1)
Oct
Nov
Dec
2022 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(2)
Nov
(4)
Dec
2023 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(8)
Nov
Dec
2024 Jan
Feb
Mar
Apr
May
Jun
Jul
(2)
Aug
Sep
Oct
Nov
Dec
S M T W T F S


1
(1)
2
(2)
3
4
5
6
7
8
(1)
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30



Showing 4 results of 4

From: Paul K <pau...@gm...> - 2022年11月08日 06:34:43
> Yes it work now fine.
Thanks Klaas. I published and tagged a new release (v3.2.0.2) with
these changes.
Paul.
On Wed, Nov 2, 2022 at 8:45 AM klaas.holwerda <ng...@kl...> wrote:
>
> Hi Paul,
>
> Yes it work now fine.
>
> Thanks,
>
> Klaas
>
> On 02/11/2022 08:44, Paul K wrote:
> > Hi Klaas,
> >
> >> #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
> >> #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
> >> Maybe that is all to do to fix it.
>
>
>
>
> _______________________________________________
> wxlua-users mailing list
> wxl...@li...
> https://lists.sourceforge.net/lists/listinfo/wxlua-users
From: klaas.holwerda <ng...@kl...> - 2022年11月02日 15:45:46
Hi Paul,
Yes it work now fine.
Thanks,
Klaas
On 02/11/2022 08:44, Paul K wrote:
> Hi Klaas,
>
>> #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
>> #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
>> Maybe that is all to do to fix it.
From: Paul K <pau...@gm...> - 2022年11月02日 07:52:18
Hi Klaas,
> #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
> #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
> Maybe that is all to do to fix it.
Thank you for the additional information and the suggested patch. Can
you check the current master branch, which includes the proposed
changes, and let me know if that works for you? Thank you.
Paul.
On Tue, Nov 1, 2022 at 10:25 AM klaas.holwerda <ng...@kl...> wrote:
>
> Hi Paul,
>
> That made no difference the problem stayed, that is against the latest release of wxWidgets 3.2.1, so I think it would be good to have it compiled against that version without problems.
>
> Make in the right *.i file this change here, resolves the problem, after regenerating the bindings.
>
> #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
>
> #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
>
> class wxRichTextLineList : public wxList
>
> {
>
> // Use the wxList methods, see also wxNode
>
> };
>
> #endif
>
> #endif
>
>
>
> #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
>
> #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
>
> wxRichTextLineList& GetLines();
>
> #endif
>
> #endif
>
> Maybe that is all to do to fix it.
>
> Regards,
>
> Klaas
>
> On 27/10/2022 03:50, Paul K wrote:
>
> Hi Klaas,
>
> With the latest wxWidgets, I had an issue with wxRichTextLineList.
> Using the defines down here in several places, I did succeed to compile.
> Do not know how to integrate it into *.i files, so hope you can do that.
>
> Thank you for the feedback. I'm actually updating documentation for
> the next release (v3.2.0.0) where I expect this issue to be resolved.
> I have tested this to-be-released version against the current master
> branch of wxwidgets.
>
> Can you get the current version from the repository and let me know if
> any modifications are still needed to get it compiled? You can just
> download the archive here:
> https://github.com/pkulchenko/wxlua/archive/refs/heads/master.zip
>
> Paul
>
> On Wed, Oct 26, 2022 at 12:00 PM klaas.holwerda <ng...@kl...> wrote:
>
> Hi Paul,
>
> I gave it a try.
> What do you use to compile on Windows normally?
> I generated with Cmake the VC project files, and although a bunch of warnings, it still works fine in the end.
> That is to say if I did not combine debug and release in one go.
>
> Maybe I will start to improve them, but how to work with github is unknow to me, used to subversion on sourceforge.
> Is there a patch system, or does it work different??
>
> With the latest wxWidgets, I had an issue with wxRichTextLineList.
> Using the defines down here in several places, I did succeed to compile.
> Do not know how to integrate it into *.i files, so hope you can do that.
>
> Much appreciated your work on wxLua!
>
> Regards,
>
> Klaas
>
> #if wxLUA_USE_wxRichText && wxCHECK_VERSION(3,0,0) && wxUSE_RICHTEXT
>
> // ---------------------------------------------------------------------------
>
> // Bind class wxRichTextLineList
>
> // ---------------------------------------------------------------------------
>
> #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
>
> #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
>
> <<code>>
>
> #endif
>
> #endif
>
> #endif // wxLUA_USE_wxRichText && wxCHECK_VERSION(3,0,0) && wxUSE_RICHTEXT
>
>
> On 13/09/2020 08:30, Paul K wrote:
>
> Hi wxlua users,
>
> I'm glad to announce the release of v3.1.0.0 of wxlua:
> https://github.com/pkulchenko/wxlua. It adds support for Lua 5.4,
> implements several new classes (wxDataViewCtrl, wxTranslations),
> includes a large number of improvements/fixes, and has been tested on
> the most recent version of wxwidgets (3.1.4) and its current master
> branch.
>
> The complete list of the changes in this version (and previous 9
> releases) is available here:
> https://github.com/pkulchenko/wxlua/blob/master/wxLua/docs/changelog.md.
> Note that there was an incompatibility introduced in this version that
> changes the order of parameters for `wxFileName.GetTimes` method.
>
> I don't have any precompiled binaries (and don't plan to provide
> them), but am exploring adding github actions to compile them on
> Windows/macOS/Linux, so if anyone has experience with those and can
> contribute working scripts, open a PR or an issue to collaborate. I
> also don't have Lua 5.3 and Lua 5.4 code included in the wxlua source
> tree, but will consider including it if it's needed to simplify the
> binary generation.
>
> Let me know if you run into any issues with it or have any other
> feedback. Thank you for all the support and contributions to the
> project.
>
> Paul.
>
>
> _______________________________________________
> wxlua-users mailing list
> wxl...@li...
> https://lists.sourceforge.net/lists/listinfo/wxlua-users
>
>
> _______________________________________________
> wxlua-users mailing list
> wxl...@li...
> https://lists.sourceforge.net/lists/listinfo/wxlua-users
>
> _______________________________________________
> wxlua-users mailing list
> wxl...@li...
> https://lists.sourceforge.net/lists/listinfo/wxlua-users
>
>
> _______________________________________________
> wxlua-users mailing list
> wxl...@li...
> https://lists.sourceforge.net/lists/listinfo/wxlua-users
From: klaas.holwerda <ng...@kl...> - 2022年11月01日 17:25:45
Hi Paul,
That made no difference the problem stayed, that is against the latest release of wxWidgets 3.2.1, 
so I think it would be good to have it compiled against that version without problems.
Make in the right *.i file this change here, resolves the problem, after regenerating the bindings.
#if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
#if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
         class wxRichTextLineList : public wxList
         {
                 // Use the wxList methods, see also wxNode
         };
#endif
#endif
#if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
#if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
   wxRichTextLineList& GetLines();
#endif
#endif
Maybe that is all to do to fix it.
Regards,
Klaas
On 27/10/2022 03:50, Paul K wrote:
> Hi Klaas,
>
>> With the latest wxWidgets, I had an issue with wxRichTextLineList.
>> Using the defines down here in several places, I did succeed to compile.
>> Do not know how to integrate it into *.i files, so hope you can do that.
> Thank you for the feedback. I'm actually updating documentation for
> the next release (v3.2.0.0) where I expect this issue to be resolved.
> I have tested this to-be-released version against the current master
> branch of wxwidgets.
>
> Can you get the current version from the repository and let me know if
> any modifications are still needed to get it compiled? You can just
> download the archive here:
> https://github.com/pkulchenko/wxlua/archive/refs/heads/master.zip
>
> Paul
>
> On Wed, Oct 26, 2022 at 12:00 PM klaas.holwerda<ng...@kl...> wrote:
>> Hi Paul,
>>
>> I gave it a try.
>> What do you use to compile on Windows normally?
>> I generated with Cmake the VC project files, and although a bunch of warnings, it still works fine in the end.
>> That is to say if I did not combine debug and release in one go.
>>
>> Maybe I will start to improve them, but how to work with github is unknow to me, used to subversion on sourceforge.
>> Is there a patch system, or does it work different??
>>
>> With the latest wxWidgets, I had an issue with wxRichTextLineList.
>> Using the defines down here in several places, I did succeed to compile.
>> Do not know how to integrate it into *.i files, so hope you can do that.
>>
>> Much appreciated your work on wxLua!
>>
>> Regards,
>>
>> Klaas
>>
>> #if wxLUA_USE_wxRichText && wxCHECK_VERSION(3,0,0) && wxUSE_RICHTEXT
>>
>> // ---------------------------------------------------------------------------
>>
>> // Bind class wxRichTextLineList
>>
>> // ---------------------------------------------------------------------------
>>
>> #if wxRICHTEXT_USE_PARTIAL_TEXT_EXTENTS
>>
>> #if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
>>
>> <<code>>
>>
>> #endif
>>
>> #endif
>>
>> #endif // wxLUA_USE_wxRichText && wxCHECK_VERSION(3,0,0) && wxUSE_RICHTEXT
>>
>>
>> On 13/09/2020 08:30, Paul K wrote:
>>
>> Hi wxlua users,
>>
>> I'm glad to announce the release of v3.1.0.0 of wxlua:
>> https://github.com/pkulchenko/wxlua. It adds support for Lua 5.4,
>> implements several new classes (wxDataViewCtrl, wxTranslations),
>> includes a large number of improvements/fixes, and has been tested on
>> the most recent version of wxwidgets (3.1.4) and its current master
>> branch.
>>
>> The complete list of the changes in this version (and previous 9
>> releases) is available here:
>> https://github.com/pkulchenko/wxlua/blob/master/wxLua/docs/changelog.md.
>> Note that there was an incompatibility introduced in this version that
>> changes the order of parameters for `wxFileName.GetTimes` method.
>>
>> I don't have any precompiled binaries (and don't plan to provide
>> them), but am exploring adding github actions to compile them on
>> Windows/macOS/Linux, so if anyone has experience with those and can
>> contribute working scripts, open a PR or an issue to collaborate. I
>> also don't have Lua 5.3 and Lua 5.4 code included in the wxlua source
>> tree, but will consider including it if it's needed to simplify the
>> binary generation.
>>
>> Let me know if you run into any issues with it or have any other
>> feedback. Thank you for all the support and contributions to the
>> project.
>>
>> Paul.
>>
>>
>> _______________________________________________
>> wxlua-users mailing list
>> wxl...@li...
>> https://lists.sourceforge.net/lists/listinfo/wxlua-users
>>
>>
>> _______________________________________________
>> wxlua-users mailing list
>> wxl...@li...
>> https://lists.sourceforge.net/lists/listinfo/wxlua-users
>
> _______________________________________________
> wxlua-users mailing list
> wxl...@li...
> https://lists.sourceforge.net/lists/listinfo/wxlua-users

Showing 4 results of 4

Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /