We now have a current svn snapshot of libqxt in our contrib dir, and
[quassel.git] / src / contrib / libqxt-2007-10-24 / doctemplate / modules.html
1 <center>
2     <h1>Qxt's Modules</h1>
3 </center>
4
5 <p>
6 Qxt consists of several modules, each of which lives in a separate library.
7 </p>
8
9 <center>
10     <p>
11         <table width="80%" cellspacing="1px"  id="modulelist">
12             <?=unroll?>
13         </table>
14     </p>
15 </center>
16
17
18 <p>If you use <a href="http://doc.trolltech.com/latest/qmake-manual.html#qmake">qmake</a> to build your projects, you can tell qmake to link and include a specific module (this example uses core and gui) by adding the following line to your <tt>.pro</tt> file:</p>
19
20 <pre>CONFIG  += qxt<br/>QXT     += core gui</pre>
21 <p>On Windows, if you do not use <a href="http://doc.trolltech.com/latest/qmake-manual.html#qmake">qmake</a> or the Qxt Integration 
22 you have to
23 <ol>
24     <li>add {libqxtinstalldir}\include\qxt\QxtCore to your include path</li>
25     <li>add the library QxtCore.lib to your project</li>
26 </ol>
27 <p>See also <a href="classes.html">Qxt's Classes</a>.</p>