<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://www.shadoware.org/index.php/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>Shadoware.Org - Logiciels</title>
  <link>http://www.shadoware.org/index.php/</link>
  <atom:link href="http://www.shadoware.org/index.php/feed/category/Logiciels/rss2" rel="self" type="application/rss+xml"/>
  <description>Moi, mes idées, mes logiciels ...</description>
  <language>fr</language>
  <pubDate>Tue, 27 Jul 2010 05:56:41 +0200</pubDate>
  <copyright>Ulrich VANDENHEKKE</copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
  <item>
    <title>Le net en france ...</title>
    <link>http://www.shadoware.org/index.php/post/2009/03/02/Le-net-en-france-...</link>
    <guid isPermaLink="false">urn:md5:67b788e5352e59bf1598900e9a4da5f6</guid>
    <pubDate>Mon, 02 Mar 2009 14:09:00 +0100</pubDate>
    <dc:creator>Ulrich Van Den Hekke</dc:creator>
        <category>Logiciels</category>
        <category>APRIL</category><category>contre-façon</category><category>HADOPI</category><category>libre</category><category>Quadrature</category><category>vie</category>    
    <description>    &lt;p&gt;&lt;q&gt;Devant le ridicule d'un gouvernement qui s'entête à vouloir déconnecter du Net des familles entières sans preuves valables ni procès, la Quadrature appelle les citoyens épris de liberté à procéder au «&amp;nbsp;black-out&amp;nbsp;» de leurs sites, blogs, profils, avatars, etc. Comme en Nouvelle-Zélande, seul pays avec la France où la «&amp;nbsp;riposte graduée&amp;nbsp;» devait être imposée par la loi, pour finalement être repoussée&amp;nbsp;: pour protester contre cette loi imbécile et sa «&amp;nbsp;liste blanche&amp;nbsp;» de sites autorisés, le Net français doit agir et se draper de noir.&lt;/q&gt;&lt;br /&gt;
La quadrature du net, Paris, le 25 février&lt;/p&gt;

&lt;center&gt;&lt;a href=&quot;http://www.laquadrature.net/HADOPI&quot; title=&quot;HADOPI - Le Net en France : black-out&quot;&gt;&lt;img src=&quot;http://media.laquadrature.net/Quadrature_black-out_HADOPI_336x280px.gif&quot; border=&quot;0&quot; alt=&quot;HADOPI - Le Net en France : black-out&quot; /&gt;&lt;/a&gt;&lt;/center&gt;
</description>
    
    
    
          <comments>http://www.shadoware.org/index.php/post/2009/03/02/Le-net-en-france-...#comment-form</comments>
      <wfw:comment>http://www.shadoware.org/index.php/post/2009/03/02/Le-net-en-france-...#comment-form</wfw:comment>
      <wfw:commentRss>http://www.shadoware.org/index.php/feed/atom/comments/616</wfw:commentRss>
      </item>
    
  <item>
    <title>Mémo Qt</title>
    <link>http://www.shadoware.org/index.php/post/2008/01/21/42-qabstractitemmodel-qt</link>
    <guid isPermaLink="false">urn:md5:53141e35fc9be789b2dcf98bfbf07cb9</guid>
    <pubDate>Mon, 21 Jan 2008 20:06:00 +0000</pubDate>
    <dc:creator>Ulrich Van Den Hekke</dc:creator>
        <category>Logiciels</category>
        <category>cmake</category><category>model</category><category>planet</category><category>qt</category>    
    <description>&lt;p&gt;Ceci est un petit mémo pour me permettre de ne pas oublier quelques astuces lors de la programmation avec Qt. En parlant de cela, je me suis commandé le livre suivant&amp;nbsp;: &lt;a href=&quot;http://www.amazon.fr/GUI-Programming-Qt4-Jasmin-Blanchette/dp/0132354160/ref=sr_11_1?ie=UTF8&amp;amp;qid=1199972515&amp;amp;sr=11-1&quot; hreflang=&quot;en&quot;&gt;C++ GUI Programming with Qt4&lt;/a&gt;.&lt;/p&gt;    &lt;h3&gt;QAbstractItemModel&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Lors de l'insertion (avec beginInsertRows()), les éléments insérés ne doivent pas contenir de sous éléments (rowCount() == 0) sous peine de causer des plantages.&lt;/li&gt;
&lt;li&gt;Un model de donnée interne, pouvant être utilisé avec QAbstractItemModel pour afficher une arborescence et étant capable de se rafraîchir à la lecture d'un fichier, se trouve dans les fichiers &lt;a href=&quot;http://xinx.shadoware.org/browser/branches/v0.7.0/libxinx/filecontentstructure.cpp&quot; hreflang=&quot;fr&quot;&gt;filecontentstructure.cpp&lt;/a&gt; et &lt;a href=&quot;http://xinx.shadoware.org/browser/branches/v0.7.0/libxinx/filecontentstructure.h&quot; hreflang=&quot;fr&quot;&gt;filecontentstructure.h&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;CMake et Qt&lt;/h3&gt;


&lt;h4&gt;Compilation d'une librairie static&lt;/h4&gt;


&lt;pre&gt;add_definitions(-DQT_SHARED)
add_library(xinxplugins STATIC ${xinxplugins_SRCS} ${xinxplugins_MOC_SRCS})&lt;/pre&gt;


&lt;h4&gt;Compilation d'un plugin&lt;/h4&gt;


&lt;h5&gt;dynamique&lt;/h5&gt;


&lt;pre&gt;add_definitions(${QT_DEFINITIONS})
add_definitions(-DQT_PLUGIN)
add_definitions(-DQT_NO_DEBUG)
add_definitions(-DQT_SHARED)
add_library(webplugin SHARED ${webplugin_SRCS} ${webplugin_MOC_SRCS})&lt;/pre&gt;


&lt;h5&gt;static&lt;/h5&gt;


&lt;pre&gt;?&lt;/pre&gt;


&lt;h4&gt;Compilation de fichier RC pour Windows&lt;/h4&gt;


&lt;pre&gt;if(WIN32)
       add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/xinx_ico.obj
               COMMAND windres.exe -I${CMAKE_CURRENT_SOURCE_DIR} -o ${CMAKE_CURRENT_BINARY_DIR}/xinx_ico.obj -i${CMAKE_CURRENT_SOURCE_DIR}/${xinx_RCS}
       )
       set(xinx_RESS ${CMAKE_CURRENT_BINARY_DIR}/xinx_ico.obj)
endif(WIN32)&lt;/pre&gt;</description>
    
    
    
          <comments>http://www.shadoware.org/index.php/post/2008/01/21/42-qabstractitemmodel-qt#comment-form</comments>
      <wfw:comment>http://www.shadoware.org/index.php/post/2008/01/21/42-qabstractitemmodel-qt#comment-form</wfw:comment>
      <wfw:commentRss>http://www.shadoware.org/index.php/feed/atom/comments/33</wfw:commentRss>
      </item>
    
</channel>
</rss>