<html><body><div style="color:#000; background-color:#fff; font-family:times new roman, new york, times, serif;font-size:12pt"><div><span>I checked it and I actually find it strange that there ever was a constructor of QVariant taking a QColor, see this excerpt from the Qt 4.8.0 docs on QVariant: "</span><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Arial; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: 16px;"><span class="Apple-style-span" style="color: rgb(49, 49, 49); font-family: Arial, Helvetica; font-size: 14px; line-height: 16px; text-align: justify; "><h3 style="font: normal normal 500 14px/1.2 Arial; font-weight: 100; text-decoration: underline; margin-bottom: 30px; margin-top: 30px; ">A Note on GUI Types</h3><div>Because
 QVariant is part of the<span class="Apple-converted-space"> </span><a href="qtcore.html" style="color: rgb(44, 65, 141); text-decoration: none; text-align: left; ">QtCore</a><span class="Apple-converted-space"> </span>library, it cannot provide conversion functions to data types defined in<span class="Apple-converted-space"> </span><a href="qtgui.html" style="color: rgb(44, 65, 141); text-decoration: none; text-align: left; ">QtGui</a>, such as<span class="Apple-converted-space"> </span><a href="qcolor.html" style="color: rgb(44, 65, 141); text-decoration: none; text-align: left; ">QColor</a>,<span class="Apple-converted-space"> </span><a href="qimage.html" style="color: rgb(44, 65, 141); text-decoration: none; text-align: left; ">QImage</a>, and<span class="Apple-converted-space"> </span><a href="qpixmap.html" style="color: rgb(44, 65, 141); text-decoration: none; text-align: left; ">QPixmap</a>. In other words, there is
 no<span class="Apple-converted-space"> </span><tt style="text-align: left; ">toColor()</tt><span class="Apple-converted-space"> </span>function.</div></span></span><span>"<br></span></div><div>What you have is a constructor that takes a Qt.GlobalColor, an enum of built-in colours. If it doesn't work for you you can simply use QVariant.FromValue<T>.</div><div>About event raising methods: come to think of it, they do not seem to depend on the event handler type so I'll try them tomorrow.</div><div><br></div><div>I think it's most clear if the Qyoto RPM bears the version of Qyoto, and the version of Qyoto is most clear to bear the version of the wrapped Qt version so basically I agree with you.<br></div><div><br></div>  <div style="font-family: times new roman, new york, times, serif; font-size: 12pt;"> <div style="font-family: times new roman, new york, times, serif; font-size: 12pt;"> <div dir="ltr"> <font size="2" face="Arial"> <hr
 size="1">  <b><span style="font-weight:bold;">From:</span></b> Steven Boswell II <ulatekh@yahoo.com><br> <b><span style="font-weight: bold;">To:</span></b> KDE bindings for other programming languages <kde-bindings@kde.org> <br> <b><span style="font-weight: bold;">Sent:</span></b> Sunday, May 13, 2012 9:38 PM<br> <b><span style="font-weight: bold;">Subject:</span></b> Re: [Kde-bindings] Building latest qyoto under Windows and Linux<br> </font> </div> <br>
<div id="yiv522434304"><div><div style="color:#000;background-color:#fff;font-family:times new roman, new york, times, serif;font-size:12pt;"><div><span>OK, I'll attempt the .NET 3.5 backport, hopefully today.  (I really need to do some non-Qyoto things this weekend...like cook next week's lunch. :-)</span></div><div><span><br></span></div><div><span>Will you be able to implement QVariant<QColor> and OnDataChanged() relatively soon?  Then I can start testing my project under the newest Qyoto.</span></div><div><span><br></span></div><div>I was working on an RPM spec file for the latest qyoto (i.e. so that it can be installed with Linux's package manager), and noticed that all the assembly versions are set to 2.0.0.  Should we upgrade them to match the version number of the Qt library that we're compiling them against (in my case, 4.8.3)?  Or are they supposed to match the version of .NET that they run with?  I'm not really
 sure what the
 standard is, but it seems like they should be upgraded past 2.0.0.</div><div><br></div><div>Steven Boswell</div><div><br></div>  <div style="font-size:12pt;font-family:times, serif;"> <div style="font-size:12pt;font-family:times, serif;"> <div dir="ltr"> <font size="2" face="Arial"> <hr size="1">  <b><span style="font-weight:bold;">From:</span></b> Dimitar Dobrev <dpldobrev@yahoo.com><br> <b><span style="font-weight:bold;">To:</span></b> Steven Boswell II <ulatekh@yahoo.com>; KDE bindings for other programming languages <kde-bindings@kde.org> <br> <b><span style="font-weight:bold;">Sent:</span></b> Sunday, May 13, 2012 11:28 AM<br> <b><span style="font-weight:bold;">Subject:</span></b> Re: [Kde-bindings] Building latest qyoto under Windows and Linux<br> </font> </div> <br>
<div id="yiv522434304"><div><div style="color:rgb(0, 0, 0);background-color:rgb(255, 255, 255);font-size:12pt;font-family:times, serif;"><div><span>Well, in short, right now nobody cares about Kimono. :)</span></div><div><br><span></span></div><div><span>About .NET 3.5, the following needs to be done:</span></div><div><span>1. Define all Qyoto.Action overloads (for example, in assemblies/qyoto-qtcore/Qyoto.cs);</span></div><div><span>2. Change src/plugins/qyoto/QyotoHooks.cs, method PostMembersHook; you'll see where I use System.Action; as you won't have a reference to Qyoto.Action you'd need to change the Windows case to use only strings for generation, not very hard a task.</span></div><div><br><span></span></div><div><span>And you're done.</span></div><div><br><span></span></div><div><span>About </span><span>Emit.DataChanged: I think now that even though that calling the signal didn't help you it'd be nice to
 have an event raising method (OnDataChanged, as you
 said), it's both good practice and, I'd say, a .NET/Mono library "standard". I'll think about adding such but after the migration (if any) to Qyoto.Action because it'd have to be tested twice otherwise.<br></span></div><div><br></div>  <div style="font-size:12pt;font-family:times, serif;"> <div style="font-size:12pt;font-family:times, serif;"> <div dir="ltr"> <font size="2" face="Arial"> <hr size="1">  <b><span style="font-weight:bold;">From:</span></b> Steven Boswell II <ulatekh@yahoo.com><br> <b><span style="font-weight:bold;">To:</span></b> KDE bindings for other programming languages <kde-bindings@kde.org> <br> <b><span style="font-weight:bold;">Sent:</span></b> Sunday, May 13, 2012 9:03 PM<br> <b><span style="font-weight:bold;">Subject:</span></b> Re: [Kde-bindings] Building latest qyoto under Windows and Linux<br> </font> </div> <br>
<div id="yiv522434304"><div><div style="color:rgb(0, 0, 0);background-color:rgb(255, 255, 255);font-size:12pt;font-family:times, serif;"><div><span>I was converting the patch format while you were sending the second e-mail, so it was just timing. :-)  There's no problem at all submitting future patches in the git format -- I will do that.</span></div><div><span><br></span></div><div><span>Emit.DataChanged is an event now, so I can't call it as a function.  I also didn't see an OnDataChanged() method.  I'm sure there's some way to post an event to an object directly in C#, I just don't know what it is.  I can look it up.  But like I said, for the short term, the problem is moot -- it never did what I wanted anyway.  Some day I'll have to get better with Qt and figure out how to use tree-views better.</span></div><div><span><br></span></div><div><span>Re: the Kimono port, I just didn't
 know if it contained the "latest"
 Kimono the way
 the assemblygen project contains the "latest" Qyoto.  I don't use Kimono personally.  I was just wondering if anyone cared if assemblygen's Kimono wasn't building.</span></div><div><span><br></span></div><div><span>Re: .NET 3.5, if I can figure out how to make the change I'm talking about, I will.  Where I work, they're still using .NET 3.5 under Windows Vista, which is my entire motivation for caring about .NET 3.5.  They're talking about finally upgrading to Windows 7, but it hasn't happened yet.  Presumably we'll upgrade to .NET 4 at the same time.  (And before you say anything...yes, my workplace is a time warp.  It's just one of my crosses to bear. :-)</span></div><div><span><br></span></div><div><span>Steven Boswell</span></div><div><br></div>  <div style="font-size:12pt;font-family:times, serif;"> <div style="font-size:12pt;font-family:times, serif;"> <div dir="ltr"> <font size="2" face="Arial"> <hr size="1"> 
 <b><span style="font-weight:bold;">From:</span></b> Dimitar Dobrev <dpldobrev@yahoo.com><br> <b><span style="font-weight:bold;">To:</span></b> Steven Boswell II <ulatekh@yahoo.com>; KDE bindings for other programming languages <kde-bindings@kde.org> <br> <b><span style="font-weight:bold;">Sent:</span></b> Sunday, May 13, 2012 10:53 AM<br> <b><span style="font-weight:bold;">Subject:</span></b> Re: [Kde-bindings] Building latest qyoto under Windows and Linux<br> </font> </div> <br>
<div id="yiv522434304"><div><div style="color:rgb(0, 0, 0);background-color:rgb(255, 255, 255);font-size:12pt;font-family:times, serif;"><div><span>I've already been able to successfully apply all your patches (</span><span>you may've missed my second e-mail</span><span>) but the new format you've sent me (</span>assemblygen-patches-git.zip, no need for the other one<span>) allows me to use Tortoise Git! So it'd be great if you could send all of your future patches in this one.</span></div><div><span><br></span></div><div>Thanks for your kind words about my changes. :)</div><div><br><span></span></div><div>I haven't deleted any constructors from QVariant, I don't know how that happened. Will check it right now. About Emit.DataChanged, what is the difference now - is it not accessible (private), is it missing or sth else?<br></div><div><br></div>  <div style="font-size:12pt;font-family:times, serif;"> <div style="font-size:12pt;
font-family:times, serif;">
 <div dir="ltr"> <font size="2" face="Arial"> <hr size="1">  <b><span style="font-weight:bold;">From:</span></b> Steven Boswell II <ulatekh@yahoo.com><br> <b><span style="font-weight:bold;">To:</span></b> KDE bindings for other programming languages <kde-bindings@kde.org> <br> <b><span style="font-weight:bold;">Sent:</span></b> Sunday, May 13, 2012 8:40 PM<br> <b><span style="font-weight:bold;">Subject:</span></b> Re: [Kde-bindings] Building latest qyoto under Windows and Linux<br> </font> </div> <br>
<div id="yiv522434304"><div><div style="color:rgb(0, 0, 0);background-color:rgb(255, 255, 255);font-size:12pt;font-family:times, serif;"><div><span>It looks like the output of "diff -ur" and "git diff" are slightly different.  Either that's the problem, or it's an issue of Windows-style line-endings (i.e. CR/LF) versus Linux-style line endings (i.e. LF).</span></div><div>Enclosed are two archives with patches generated by "git diff".  One has Linux line endings, the other has Windows line endings.  One or both should work for you.</div><div><br></div><div>I was able to run uics under Windows, and I made a bunch of little changes to adapt to the new API.  Very slick!  All the set/get methods have been replaced with properties, the enum values allow the "bitwise or" operator, and the Qt events are now C# events!</div><div><br></div><div>I have two API changes I haven't resolved yet.  One,
 QVariant no longer has a
 constructor that takes
 a QColor.  I need this to color my tree-view items.  Also, I can no longer call "Emit.DataChanged" from within my QAbstractItemModel subclass.  I was using that to force the update of the display of my tree-view when I modified items.  But I never got that to work anyway; I ended up having to call Collapse() on the parent item and have the user re-open that item in order to force the update.  So maybe this second one isn't a big deal.  But I'll definitely need a QVariant constructor that takes a QColor.</div><div><br></div><div>Steven Boswell</div><div><br></div>  <div style="font-size:12pt;font-family:times, serif;"> <div style="font-size:12pt;font-family:times, serif;"> <div dir="ltr"> <font size="2" face="Arial"> <hr size="1">  <b><span style="font-weight:bold;">From:</span></b> Dimitar Dobrev <dpldobrev@yahoo.com><br> <b><span style="font-weight:bold;">To:</span></b> Steven Boswell II
 <ulatekh@yahoo.com>;
 KDE bindings for other programming languages <kde-bindings@kde.org> <br> <b><span style="font-weight:bold;">Sent:</span></b> Sunday, May 13, 2012 9:30 AM<br> <b><span style="font-weight:bold;">Subject:</span></b> Re: [Kde-bindings] Building latest qyoto under Windows and Linux<br> </font> </div> <br>
<div id="yiv522434304"><div><div style="color:rgb(0, 0, 0);background-color:rgb(255, 255, 255);font-size:12pt;font-family:times, serif;"><div><span>They all look great but I cannot apply them. I use the "Review/apply single patch" menu item of TortoiseGit but it cannot recognise the format. Could you advise me what program to use?<br></span></div><div><br></div>  <div style="font-size:12pt;font-family:times, serif;"> <div style="font-size:12pt;font-family:times, serif;"> <div dir="ltr"> <font size="2" face="Arial"> <hr size="1">  <b><span style="font-weight:bold;">From:</span></b> Steven Boswell II <ulatekh@yahoo.com><br> <b><span style="font-weight:bold;">To:</span></b> KDE bindings for other programming languages <kde-bindings@kde.org> <br> <b><span style="font-weight:bold;">Sent:</span></b> Sunday, May 13, 2012 6:31 PM<br> <b><span style="font-weight:bold;">Subject:</span></b> Re:
 [Kde-bindings] Building latest qyoto under Windows and Linux<br> </font> </div> <br>
<div id="yiv522434304"><div><div style="color:rgb(0, 0, 0);background-color:rgb(255, 255, 255);font-size:12pt;font-family:times, serif;"><div style="font-size:12pt;font-family:times, serif;"><span>OK, I separated out all my patches.  Enclosed is an archive with all of them.  They are meant to be applied in order, but if they're not, or one is skipped, they should work, but patch will report "fuzz", i.e. that the target line numbers had to be adjusted.</span></div><div style="font-size:12pt;font-family:times, serif;"><br></div><div><div>Patch 1 allows MONO_EXECUTABLE to be undefined, i.e. so that the Windows version can be built with Microsoft's C# compiler.<br></div><div>Patch 2 modifies output-destinations, so that executables, libraries, and assemblies go to the proper location, and it modifies Windows libraries/DLLs so that they don't have a "lib" prefix.</div><div>Patch 3 is the
 patch that detects a missing QtDBus (i.e. under Windows) but allows building anyway.</div><div>Patch 4 fixes qyoto-phonon to use <span style="font-size:16px;">DEF_LIST_MARSHALLER instead of </span><span style="font-size:16px;">DEF_VALUELIST_MARSHALLER.  I hope I did it right.</span></div><div><span style="font-size:16px;">Patch 5 makes the build look for the .NET 4 compiler under both Windows and Linux.</span></div><div><span style="font-size:16px;">Patch 6 adds "SMOKE_INCLUDE_DIR" to a few places where it's needed.</span></div><div><span style="font-size:16px;">Patch 7 builds a native assemblygen under Windows, so that it can load native DLLs.</span></div><div><span style="font-size:16px;">Patch 8 is the hack that adds a reference for the Error class under QX11EmbedContainer and QX11EmbedWidget.</span></div><div><span style="font-size:16px;"><br></span></div><div><span style="font-size:16px;">I noticed that Kimono isn't
 building under Linux.  Is the Kimono project in the assemblygen git-project being used or maintained?  I started to modify the CMakeLists.txt files to build it, but it looks like it needs more work than that.</span></div><div><span style="font-size:16px;"><br></span></div><div><span style="font-size:16px;">One last thing...are there any other dependencies on .NET 4, or is it just the System.Action<> prototypes with more than 4 parameters?  If so, can we just add our own "Qyoto.Action<>" prototypes with the required number of parameters, and use those instead?  Would that cause any headaches that I can't think of?  (In which case, patch 5 can be ignored.)</span></div><div><span style="font-size:16px;"><br></span></div><div><span style="font-size:16px;">Steven Boswell</span></div><div><span style="font-size:16px;"><br></span></div></div>  <div style="font-size:12pt;font-family:times, serif;"> <div style="
font-size:12pt;font-family:times, serif;"> <div dir="ltr"> <font size="2" face="Arial"> <hr size="1">  <b><span style="font-weight:bold;">From:</span></b> Dimitar Dobrev <dpldobrev@yahoo.com><br> <b><span style="font-weight:bold;">To:</span></b> Steven Boswell II <ulatekh@yahoo.com>; KDE bindings for other programming languages <kde-bindings@kde.org> <br> <b><span style="font-weight:bold;">Sent:</span></b> Sunday, May 13, 2012 5:54 AM<br> <b><span style="font-weight:bold;">Subject:</span></b> Re: [Kde-bindings] Building latest qyoto under Windows and Linux<br> </font> </div> <br>
<div id="yiv522434304"><div><div style="color:rgb(0, 0, 0);background-color:rgb(255, 255, 255);font-size:12pt;font-family:times, serif;"><div>It seems to me you haven't subscribed to the mailing list because I've been doing quite a bit of shouting here. :) Please consider joining, this way you'll always be up to date with all developments.<br></div><div><br></div><div>Most of the errors you report are my fault, sorry about that:<br><span></span></div><div><span><br></span></div><div><span>1. </span><span>QX11EmbedContainer and </span>QX11EmbedWidget - I removed them because the nested type Error was not generated; I didn't check that as I was after another bug then so seeing they are not that often used I just removed them; obviously I forgot to remove the events that use them; I compiled everything then but apparently these events are new to Qt 4.8.0 as my Linux had 4.7.4;<br></div><div><span>2. dmcs - I really
 don't know what happened here; I clearly remember
 searching for "gmcs" in the whole dir and replacing it; it seems that I didn't commit these changes;<br></span></div><div><span>3. </span>DEF_VALUELIST_MARSHALLER - I replaced this everywhere with DEF_LIST_MARSHALLER because of two of the bugs (QPrinterInfo and QModelIndex) I've written about in my recent post called "Qyoto: help needed"; but I have clearly forgotten about Phonon as I don't compile it on my Windows because of some missing dependencies;<br></div><div><span>4. uics - Arno advised me months ago to move uics to assemblygen but I haven't done it yet; I will complete that today.</span></div><div><br><span></span></div><div><span>You can send me your patches and I'll push them but please try to separate them per feature: that is, one for dmcs, one for DBus, one for </span><span>MONO_EXECUTABLE, etc.<br></span></div><div><br></div>  <div style="font-size:12pt;font-family:times, serif;"> <div style="font-size:12pt;font-family:times, serif;">
 <div dir="ltr"> <font size="2" face="Arial"> <hr size="1">  <b><span style="font-weight:bold;">From:</span></b> Steven Boswell II <ulatekh@yahoo.com><br> <b><span style="font-weight:bold;">To:</span></b> KDE bindings for other programming languages <kde-bindings@kde.org> <br> <b><span style="font-weight:bold;">Sent:</span></b> Sunday, May 13, 2012 4:12 AM<br> <b><span style="font-weight:bold;">Subject:</span></b> Re: [Kde-bindings] Building latest qyoto under Windows and Linux<br> </font> </div> <br>
<div id="yiv522434304"><div><div style="color:rgb(0, 0, 0);background-color:rgb(255, 255, 255);font-size:12pt;font-family:times, serif;"><div style="font-size:12pt;font-family:times, serif;"><span>OK, I added two lines to src/plugins/qyoto/QyotoTranslator.cs:</span></div><div style="font-size:12pt;font-family:times, serif;"><span><br></span></div><div><span><span class="yiv522434304Apple-tab-span" style="white-space:pre;">   </span>{ "QX11EmbedContainer::Error", delegate { throw new NotSupportedException(); } },<br></span></div><div><span class="yiv522434304Apple-tab-span" style="white-space:pre;">      </span>{ "QX11EmbedWidget::Error", delegate { throw new NotSupportedException(); } },<br></div><div><br></div><div>I don't know if that was a great idea, but at least it kept compiling.</div><div><br></div><div>The next compile error (under Linux) was in
 qyoto-phonon:</div><div><br></div><div>assemblygen/assemblies/qyoto-phonon/native/phononhandlers.cpp:29:25: error: expected constructor, destructor, or type conversion before ‘(’ token<br></div><div><br></div><div>The issue seems to be that DEF_VALUELIST_MARSHALLER isn't defined anywhere.  assemblies/qyoto-qtcore/native/marshall_macros.h has a definition for DEF_LIST_MARSHALLER, so maybe that file is out of date.</div><div><br></div><div>As always, help is appreciated.</div><div><br></div><div>Steven Boswell</div><div><br></div>  <div style="font-size:12pt;font-family:times, serif;"> <div style="font-size:12pt;font-family:times, serif;"> <div dir="ltr"> <font size="2" face="Arial"> <hr size="1">  <b><span style="font-weight:bold;">From:</span></b> Steven Boswell II <ulatekh@yahoo.com><br> <b><span style="font-weight:bold;">To:</span></b> KDE bindings for
 other programming languages <kde-bindings@kde.org> <br> <b><span style="font-weight:bold;">Sent:</span></b> Saturday, May 12, 2012 5:33 PM<br> <b><span style="font-weight:bold;">Subject:</span></b> Re: [Kde-bindings] Building latest qyoto under Windows and Linux<br> </font> </div> <br>
<div id="yiv522434304"><div><div style="color:rgb(0, 0, 0);background-color:rgb(255, 255, 255);font-size:12pt;font-family:times, serif;"><div style="font-size:12pt;font-family:times, serif;"><span>I've been here the whole time...you could have just shouted!</span></div><div style="font-size:12pt;font-family:times, serif;"><span><br></span></div><div style="font-size:12pt;font-family:times, serif;"><span>I'm still overloaded at work, but decided to take some time today to work on this anyway.  I'm tired of being too tired to work on projects that I want to work on! :-)</span></div><div style="font-size:12pt;font-family:times, serif;"><span><br></span></div><div style="font-size:12pt;font-family:times, serif;"><span>If Qyoto has to depend on .NET 4, that's not a big deal -- if it needs to
 use System.Action<> instances with more than 4 parameters, there's not much of a choice.  The problem was that cmake/modules/CMakeDetermineCSharpCompiler.cmake was still looking for the v3.5 compiler.  So I updated it to look for the v4.0.30319 compiler.  I also updated to look for dmcs (i.e. the .NET 4 version of Mono) instead of gmcs.  How is it that assemblygen ever compiled without these changes?</span></div><div style="font-size:12pt;font-family:times, serif;"><span><br></span></div><div style="font-size:12pt;font-family:times, serif;"><span>The next barrier was that the most of the changes I submitted a long time ago had never been applied. I had modified assemblies/qyoto-*/CMakeLists.txt to make them work if  MONO_EXECUTABLE was undefined, and various places to allow QT_QTDBUS_LIBRARY to be undefined.  I put those
 back.</span></div><div style="font-size:12pt;font-family:times, serif;"><span><br></span></div><div style="font-size:12pt;font-family:times, serif;">Now assemblygen builds and links under Windows, but I haven't tried to run it  yet.</div><div style="font-size:12pt;font-family:times, serif;"><br></div><div style="font-size:12pt;font-family:times, serif;">Under Linux, I get as far as building qyoto-qtgui, then I get a bunch of errors like "error CS0426: The nested type `Error' does not exist in the type `Qyoto.QX11EmbedContainer'".  One example of a line that causes this problem is:</div><div style="font-size:12pt;font-family:times, serif;"><br></div><div><div>        [Q_SIGNAL("error(QX11EmbedContainer::Error)")]</div><div>       
 event System.Action<QX11EmbedContainer.Error> Error;</div><div style="font-size:12pt;font-family:times, serif;"><br></div><div style="font-size:12pt;font-family:times, serif;">If you know how to get past this, I'd be grateful.  The only reference I see to QX11EmbedContainer is in src/plugins/qyoto/QyotoTranslator.cs, where it throws a NotSupportedException, so I have no idea where to go with this.</div><div style="font-size:12pt;font-family:times, serif;"><br></div><div style="font-size:12pt;font-family:times, serif;">Also, I have some vague memory that uics was branched into assemblygen?  If not, what do I use?</div><div style="font-size:12pt;font-family:times, serif;"><br></div><div style="font-size:12pt;font-family:times, serif;">Thanks in advance for any help with these issues!</div><div style="font-size:12pt;font-family:times, serif;"><br></div><div style="font-size:12pt;font-family:times, serif;">Steven Boswell</div></div><div
 style="font-size:12pt;font-family:times, serif;"><br></div>  <div style="font-size:12pt;font-family:times, serif;"> <div style="font-size:12pt;font-family:times, serif;"> <div dir="ltr"> <font size="2" face="Arial"> <hr size="1">  <b><span style="font-weight:bold;">From:</span></b> Dimitar Dobrev <dpldobrev@yahoo.com><br> <b><span style="font-weight:bold;">To:</span></b> Steven Boswell II <ulatekh@yahoo.com>; KDE bindings for other programming languages <kde-bindings@kde.org> <br> <b><span style="font-weight:bold;">Sent:</span></b> Saturday, May 12, 2012
 12:13 PM<br> <b><span style="font-weight:bold;">Subject:</span></b> Re: [Kde-bindings] Building latest qyoto under Windows and Linux<br> </font> </div> <br>
<div id="yiv522434304"><div><div style="color:rgb(0, 0, 0);background-color:rgb(255, 255, 255);font-size:12pt;font-family:times, serif;"><div><span>I'm glad you're back, Steven!</span></div><div><br><span></span></div><div><span>Both problems are one and the same: Qyoto now depends on .NET/Mono 4. <br></span></div><div><span>The reason is that I needed the overloads for </span><font face="'times new roman', 'new york', times, serif">System.Action as I use them to generate events corresponding to signals. </font><font face="'times new roman', 'new york', times, serif">The other thing I need to find the files with parameter names.</font></div><div><font face="'times new roman', 'new york', times, serif">If the dependency on .NET 4 is unacceptable for you please say so and we might be able to think of some workaround.<br></font></div><div><br></div>  <div style="font-size:12pt;font-family:times, serif;"> <div style="font-size:12pt;font-family:times,
 serif;"> <div dir="ltr"> <font size="2" face="Arial"> <hr size="1">  <b><span style="font-weight:bold;">From:</span></b> Steven Boswell II <ulatekh@yahoo.com><br> <b><span style="font-weight:bold;">To:</span></b> KDE bindings <kde-bindings@kde.org> <br> <b><span style="font-weight:bold;">Sent:</span></b> Saturday, May 12, 2012 9:50 PM<br> <b><span style="font-weight:bold;">Subject:</span></b> [Kde-bindings] Building latest qyoto under Windows and Linux<br> </font> </div> <br>
<div id="yiv522434304"><div><div style="color:rgb(0, 0, 0);background-color:rgb(255, 255, 255);font-size:12pt;font-family:times, serif;"><div style="font-size:12pt;font-family:times, serif;">Today I decided to try to build latest smokegen/smokeqt/assemblygen under Windows and Linux.</div><div style="font-size:12pt;font-family:times, serif;">smokegen, i.e. git://anongit.kde.org/smokegen, and smokeqt, i.e. git://anongit.kde.org/smokeqt, built and linked under both Windows 7 and Fedora Core 16 just fine.</div><div style="font-size:12pt;font-family:times, serif;"><br></div><div style="font-size:12pt;font-family:times, serif;">But when building assemblygen, i.e.git://gitorious.org/assemblygen/assemblygen.git, "assemblies" branch, I get the same build error immediately, under both OSes:</div><div style="font-size:12pt;font-family:times, serif;"><br></div><div><font face="'times new roman',
 'new york', times, serif"><a rel="nofollow" target="_blank" href="http://GeneratorData.cs">GeneratorData.cs</a>(220,98): error CS0117: `System.Environment.SpecialFolder' does not contain a definition for `Windows'</font><br></div><div><font face="'times new roman', 'new york', times, serif"><br></font></div><div><font face="'times new roman', 'new york', times, serif">Getting that error under Linux didn't surprise me, but getting it under Windows did.</font></div><div><font face="'times new roman', 'new york', times, serif"><br></font></div><div><font face="'times new roman', 'new york', times, serif">Diking that line out and continuing to build, I get to building qyoto-qtcore.dll.  I get 260 "Won't wrap method" warnings and 65 "Conflicting names" messages, then I get a bunch of errors that say "error CS0305: Using the generic type `System.Action<T1,T2,T3,T4>' requires `4' type argument(s)".  One
 example of a line that generates such an error is:</font></div><div><font face="'times new roman', 'new york', times, serif"><br></font></div><div><font face="'times new roman', 'new york', times, serif"><div>        [Q_SIGNAL("rowsAboutToBeMoved(QModelIndex,int,int,QModelIndex,int)")]</div><div>        event System.Action<QModelIndex,System.Int32,System.Int32,QModelIndex,System.Int32> RowsAboutToBeMoved;</div><div><br></div><div>I'm guessing there's a 'System.Action<T1,T2,T3,T4>' now, but my version of Qt (4.8.1-5) doesn't have that.</div><div><br></div><div>So...does anyone know what to do about these?  The first error appears to be real; the second one appears to want a different version of Qt.  What version of Qt should I be using?</div><div><br></div><div>Steven Boswell</div><div><br></div></font></div></div></div></div><br>_______________________________________________<br>Kde-bindings
 mailing list<br><a rel="nofollow" ymailto="mailto:Kde-bindings@kde.org" target="_blank" href="mailto:Kde-bindings@kde.org">Kde-bindings@kde.org</a><br><a rel="nofollow" target="_blank" href="https://mail.kde.org/mailman/listinfo/kde-bindings">https://mail.kde.org/mailman/listinfo/kde-bindings</a><br><br><br> </div> </div>  </div></div></div><br><br> </div> </div>  </div></div></div><br>_______________________________________________<br>Kde-bindings mailing list<br><a rel="nofollow" ymailto="mailto:Kde-bindings@kde.org" target="_blank" href="mailto:Kde-bindings@kde.org">Kde-bindings@kde.org</a><br><a rel="nofollow" target="_blank" href="https://mail.kde.org/mailman/listinfo/kde-bindings">https://mail.kde.org/mailman/listinfo/kde-bindings</a><br><br><br> </div> </div>  </div></div></div><br>_______________________________________________<br>Kde-bindings mailing list<br><a rel="nofollow" ymailto="mailto:Kde-bindings@kde.org" target="_blank"
 href="mailto:Kde-bindings@kde.org">Kde-bindings@kde.org</a><br><a rel="nofollow" target="_blank" href="https://mail.kde.org/mailman/listinfo/kde-bindings">https://mail.kde.org/mailman/listinfo/kde-bindings</a><br><br><br> </div> </div>  </div></div></div><br><br> </div> </div>  </div></div></div><br>_______________________________________________<br>Kde-bindings mailing list<br><a rel="nofollow" ymailto="mailto:Kde-bindings@kde.org" target="_blank" href="mailto:Kde-bindings@kde.org">Kde-bindings@kde.org</a><br><a rel="nofollow" target="_blank" href="https://mail.kde.org/mailman/listinfo/kde-bindings">https://mail.kde.org/mailman/listinfo/kde-bindings</a><br><br><br> </div> </div>  </div></div></div><br><br> </div> </div>  </div></div></div><br>_______________________________________________<br>Kde-bindings mailing list<br><a rel="nofollow" ymailto="mailto:Kde-bindings@kde.org" target="_blank"
 href="mailto:Kde-bindings@kde.org">Kde-bindings@kde.org</a><br><a rel="nofollow" target="_blank" href="https://mail.kde.org/mailman/listinfo/kde-bindings">https://mail.kde.org/mailman/listinfo/kde-bindings</a><br><br><br> </div> </div>  </div></div></div><br><br> </div> </div>  </div></div></div><br>_______________________________________________<br>Kde-bindings mailing list<br><a rel="nofollow" ymailto="mailto:Kde-bindings@kde.org" target="_blank" href="mailto:Kde-bindings@kde.org">Kde-bindings@kde.org</a><br><a rel="nofollow" target="_blank" href="https://mail.kde.org/mailman/listinfo/kde-bindings">https://mail.kde.org/mailman/listinfo/kde-bindings</a><br><br><br> </div> </div>  </div></div></div><br><br> </div> </div>  </div></div></div><br>_______________________________________________<br>Kde-bindings mailing list<br><a ymailto="mailto:Kde-bindings@kde.org" href="mailto:Kde-bindings@kde.org">Kde-bindings@kde.org</a><br><a
 href="https://mail.kde.org/mailman/listinfo/kde-bindings" target="_blank">https://mail.kde.org/mailman/listinfo/kde-bindings</a><br><br><br> </div> </div>  </div></body></html>