You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kshowmail/doc/html/kfeedback_8cpp-source.html

516 lines
43 KiB

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>kshowmail: kshowmail/kfeedback.cpp Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.0 -->
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="classes.html"><span>Classes</span></a></li>
<li id="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="dirs.html"><span>Directories</span></a></li>
</ul></div>
<div class="nav">
<a class="el" href="dir_656923b733374505e0e2f68ecb68d952.html">kshowmail</a></div>
<h1>kfeedback.cpp</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001
<a name="l00002"></a>00002 <span class="comment">/*</span>
<a name="l00003"></a>00003 <span class="comment"> * File name: kfeedback.cpp</span>
<a name="l00004"></a>00004 <span class="comment"> * Summary: User feedback form</span>
<a name="l00005"></a>00005 <span class="comment"> * License: LGPL - See file COPYING.LIB for details.</span>
<a name="l00006"></a>00006 <span class="comment"> * Author: Stefan Hundhammer &lt;sh@suse.de&gt;</span>
<a name="l00007"></a>00007 <span class="comment"> * modified by Eggert Ehmke &lt;eggert.ehmke@berlin.de&gt;</span>
<a name="l00008"></a>00008 <span class="comment"> *</span>
<a name="l00009"></a>00009 <span class="comment"> * Updated: 2002-02-24</span>
<a name="l00010"></a>00010 <span class="comment"> *</span>
<a name="l00011"></a>00011 <span class="comment"> * $Id: kfeedback_8cpp-source.html,v 1.10 2007/07/05 17:37:51 kuddel-fl Exp $</span>
<a name="l00012"></a>00012 <span class="comment"> *</span>
<a name="l00013"></a>00013 <span class="comment"> */</span>
<a name="l00014"></a>00014
<a name="l00015"></a>00015
<a name="l00016"></a>00016 <span class="preprocessor">#include &lt;ntqheader.h&gt;</span>
<a name="l00017"></a>00017 <span class="preprocessor">#include &lt;ntqlayout.h&gt;</span>
<a name="l00018"></a>00018 <span class="preprocessor">#include &lt;ntqlabel.h&gt;</span>
<a name="l00019"></a>00019 <span class="preprocessor">#include &lt;ntqmultilineedit.h&gt;</span>
<a name="l00020"></a>00020 <span class="preprocessor">#include &lt;ntqhbox.h&gt;</span>
<a name="l00021"></a>00021
<a name="l00022"></a>00022 <span class="preprocessor">#include &lt;tdeglobal.h&gt;</span>
<a name="l00023"></a>00023 <span class="preprocessor">#include &lt;tdeapplication.h&gt;</span>
<a name="l00024"></a>00024 <span class="preprocessor">#include &lt;tdelocale.h&gt;</span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;kdebug.h&gt;</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;tdeaboutdata.h&gt;</span>
<a name="l00027"></a>00027 <span class="preprocessor">#include &lt;kiconloader.h&gt;</span>
<a name="l00028"></a>00028 <span class="preprocessor">#include &lt;kurl.h&gt;</span>
<a name="l00029"></a>00029 <span class="preprocessor">#include &lt;tdeversion.h&gt;</span>
<a name="l00030"></a>00030
<a name="l00031"></a>00031 <span class="preprocessor">#include "kfeedback.h"</span>
<a name="l00032"></a>00032
<a name="l00033"></a>00033
<a name="l00034"></a><a class="code" href="classKFeedbackDialog.html#1ae22ffc4cfbabb1b954f2f75c57f8ba">00034</a> <a class="code" href="classKFeedbackDialog.html#1ae22ffc4cfbabb1b954f2f75c57f8ba">KFeedbackDialog::KFeedbackDialog</a>( <span class="keyword">const</span> TQString &amp; feedbackMailAddress, <span class="keyword">const</span> TQString &amp; helpTopic )
<a name="l00035"></a>00035 : KDialogBase( Plain, i18n( <span class="stringliteral">"Feedback"</span> ), Apply | ( helpTopic.isEmpty() ? Cancel : Cancel | Help ), Apply )
<a name="l00036"></a>00036 {
<a name="l00037"></a>00037 TQVBoxLayout * layout = <span class="keyword">new</span> TQVBoxLayout( plainPage(), 0, spacingHint() );
<a name="l00038"></a>00038 <span class="comment">// setButtonApplyText( i18n( "&amp;Mail this..." ) ); deprecated</span>
<a name="l00039"></a>00039 setButtonApply(KGuiItem (i18n( <span class="stringliteral">"&amp;Mail this..."</span> )));
<a name="l00040"></a>00040
<a name="l00041"></a>00041 <span class="keywordflow">if</span> ( ! helpTopic.isEmpty() )
<a name="l00042"></a>00042 setHelp( helpTopic );
<a name="l00043"></a>00043
<a name="l00044"></a>00044 <a class="code" href="classKFeedbackDialog.html#c95533de8e33e87407a06b910f5b6cfa">_form</a> = <span class="keyword">new</span> <a class="code" href="classKFeedbackForm.html">KFeedbackForm</a>( feedbackMailAddress, plainPage() );
<a name="l00045"></a>00045 TQ_CHECK_PTR( <a class="code" href="classKFeedbackDialog.html#c95533de8e33e87407a06b910f5b6cfa">_form</a> );
<a name="l00046"></a>00046
<a name="l00047"></a>00047 layout-&gt;addWidget( <a class="code" href="classKFeedbackDialog.html#c95533de8e33e87407a06b910f5b6cfa">_form</a> );
<a name="l00048"></a>00048 <a class="code" href="classKFeedbackDialog.html#34f680000dbe1b4446bd647d51c3738d">checkSendButton</a>();
<a name="l00049"></a>00049
<a name="l00050"></a>00050 connect( <span class="keyword">this</span>, TQ_SIGNAL( applyClicked() ),
<a name="l00051"></a>00051 <a class="code" href="classKFeedbackDialog.html#c95533de8e33e87407a06b910f5b6cfa">_form</a>, TQ_SLOT ( sendMail() ) );
<a name="l00052"></a>00052
<a name="l00053"></a>00053 connect( <a class="code" href="classKFeedbackDialog.html#c95533de8e33e87407a06b910f5b6cfa">_form</a>, TQ_SIGNAL( <a class="code" href="classKFeedbackDialog.html#962b0e6f0813c923c924bb9b81c8ba1b">mailSent</a>() ),
<a name="l00054"></a>00054 <span class="keyword">this</span>, TQ_SLOT ( hide() ) );
<a name="l00055"></a>00055
<a name="l00056"></a>00056 connect( <a class="code" href="classKFeedbackDialog.html#c95533de8e33e87407a06b910f5b6cfa">_form</a>, TQ_SIGNAL( <a class="code" href="classKFeedbackDialog.html#962b0e6f0813c923c924bb9b81c8ba1b">mailSent</a>() ),
<a name="l00057"></a>00057 <span class="keyword">this</span>, TQ_SIGNAL( <a class="code" href="classKFeedbackDialog.html#962b0e6f0813c923c924bb9b81c8ba1b">mailSent</a>() ) );
<a name="l00058"></a>00058
<a name="l00059"></a>00059 connect( <a class="code" href="classKFeedbackDialog.html#c95533de8e33e87407a06b910f5b6cfa">_form</a>, TQ_SIGNAL( checkComplete() ),
<a name="l00060"></a>00060 <span class="keyword">this</span>, TQ_SLOT ( <a class="code" href="classKFeedbackDialog.html#34f680000dbe1b4446bd647d51c3738d">checkSendButton</a>() ) );
<a name="l00061"></a>00061 }
<a name="l00062"></a>00062
<a name="l00063"></a>00063
<a name="l00064"></a><a class="code" href="classKFeedbackDialog.html#3db3a02eb0b2a94d8e3bedbd1f5f6d70">00064</a> <a class="code" href="classKFeedbackDialog.html#3db3a02eb0b2a94d8e3bedbd1f5f6d70">KFeedbackDialog::~KFeedbackDialog</a>()
<a name="l00065"></a>00065 {
<a name="l00066"></a>00066 <span class="comment">// NOP</span>
<a name="l00067"></a>00067 }
<a name="l00068"></a>00068
<a name="l00069"></a>00069
<a name="l00070"></a>00070 <span class="keywordtype">void</span>
<a name="l00071"></a><a class="code" href="classKFeedbackDialog.html#34f680000dbe1b4446bd647d51c3738d">00071</a> <a class="code" href="classKFeedbackDialog.html#34f680000dbe1b4446bd647d51c3738d">KFeedbackDialog::checkSendButton</a>()
<a name="l00072"></a>00072 {
<a name="l00073"></a>00073 enableButtonApply( <a class="code" href="classKFeedbackDialog.html#c95533de8e33e87407a06b910f5b6cfa">_form</a>-&gt;<a class="code" href="classKFeedbackForm.html#6840e07fe3245d4e9c11ee0160af6068">readyToSend</a>() );
<a name="l00074"></a>00074 }
<a name="l00075"></a>00075
<a name="l00076"></a>00076
<a name="l00077"></a>00077
<a name="l00078"></a>00078
<a name="l00079"></a>00079
<a name="l00080"></a><a class="code" href="classKFeedbackForm.html#78d888d1554e9403a62d7c9b0c6e4a2e">00080</a> <a class="code" href="classKFeedbackForm.html#78d888d1554e9403a62d7c9b0c6e4a2e">KFeedbackForm::KFeedbackForm</a>( <span class="keyword">const</span> TQString &amp; feedbackMailAddress,
<a name="l00081"></a>00081 TQWidget * parent )
<a name="l00082"></a>00082 : TQVBox( parent )
<a name="l00083"></a>00083 , _feedbackMailAddress( feedbackMailAddress )
<a name="l00084"></a>00084 {
<a name="l00085"></a>00085 <span class="comment">//</span>
<a name="l00086"></a>00086 <span class="comment">// Explanation above the question list</span>
<a name="l00087"></a>00087 <span class="comment">//</span>
<a name="l00088"></a>00088
<a name="l00089"></a>00089 TQLabel * label = <span class="keyword">new</span> TQLabel( i18n( <span class="stringliteral">"&lt;p&gt;&lt;b&gt;Please tell us your opinion about this program.&lt;/b&gt;&lt;/p&gt;"</span>
<a name="l00090"></a>00090 <span class="stringliteral">"&lt;p&gt;You will be able to review everything in your mailer "</span>
<a name="l00091"></a>00091 <span class="stringliteral">"before any mail is sent.&lt;br&gt;"</span>
<a name="l00092"></a>00092 <span class="stringliteral">"Nothing will be sent behind your back.&lt;/p&gt;"</span>
<a name="l00093"></a>00093 ), <span class="keyword">this</span> );
<a name="l00094"></a>00094 <span class="comment">//</span>
<a name="l00095"></a>00095 <span class="comment">// Question list</span>
<a name="l00096"></a>00096 <span class="comment">//</span>
<a name="l00097"></a>00097
<a name="l00098"></a>00098 <a class="code" href="classKFeedbackForm.html#e8c28be58b2684f090c396ad52f64ad3">_questionList</a> = <span class="keyword">new</span> <a class="code" href="classKFeedbackQuestionList.html">KFeedbackQuestionList</a>( <span class="keyword">this</span> );
<a name="l00099"></a>00099 TQ_CHECK_PTR( <a class="code" href="classKFeedbackForm.html#e8c28be58b2684f090c396ad52f64ad3">_questionList</a> );
<a name="l00100"></a>00100
<a name="l00101"></a>00101 connect( <a class="code" href="classKFeedbackForm.html#e8c28be58b2684f090c396ad52f64ad3">_questionList</a>, TQ_SIGNAL( <a class="code" href="classKFeedbackForm.html#c328809367354cf8ff97e7c78b521345">checkComplete</a>() ),
<a name="l00102"></a>00102 <span class="keyword">this</span>, TQ_SLOT ( <a class="code" href="classKFeedbackForm.html#5ec1c36c978229b6e14e9005b595d69e">slotCheckComplete</a>() ) );
<a name="l00103"></a>00103
<a name="l00104"></a>00104
<a name="l00105"></a>00105 <span class="comment">//</span>
<a name="l00106"></a>00106 <span class="comment">// Explanation below the question list</span>
<a name="l00107"></a>00107 <span class="comment">//</span>
<a name="l00108"></a>00108
<a name="l00109"></a>00109 TQHBox * hbox = <span class="keyword">new</span> TQHBox( <span class="keyword">this</span> );
<a name="l00110"></a>00110 TQ_CHECK_PTR( hbox );
<a name="l00111"></a>00111
<a name="l00112"></a>00112 TQSizePolicy pol( TQSizePolicy::Fixed, TQSizePolicy::Fixed ); <span class="comment">// hor / vert</span>
<a name="l00113"></a>00113
<a name="l00114"></a>00114 label = <span class="keyword">new</span> TQLabel( i18n( <span class="stringliteral">"Questions marked with "</span> ), hbox );
<a name="l00115"></a>00115 TQ_CHECK_PTR( label );
<a name="l00116"></a>00116 label-&gt;setSizePolicy( pol );
<a name="l00117"></a>00117
<a name="l00118"></a>00118 label = <span class="keyword">new</span> TQLabel( hbox );
<a name="l00119"></a>00119 TQ_CHECK_PTR( label );
<a name="l00120"></a>00120 label-&gt;setPixmap( TDEGlobal::iconLoader()-&gt;loadIcon( <span class="stringliteral">"edit"</span>, TDEIcon::Small ) );
<a name="l00121"></a>00121 label-&gt;setSizePolicy( pol );
<a name="l00122"></a>00122
<a name="l00123"></a>00123 label = <span class="keyword">new</span> TQLabel( i18n( <span class="stringliteral">" must be answered before a mail can be sent."</span>) , hbox );
<a name="l00124"></a>00124 TQ_CHECK_PTR( label );
<a name="l00125"></a>00125 label-&gt;setSizePolicy( pol );
<a name="l00126"></a>00126
<a name="l00127"></a>00127 <span class="keyword">new</span> TQWidget( hbox ); <span class="comment">// Fill any leftover space to the right.</span>
<a name="l00128"></a>00128
<a name="l00129"></a>00129
<a name="l00130"></a>00130 <span class="comment">//</span>
<a name="l00131"></a>00131 <span class="comment">// Free-text comment field</span>
<a name="l00132"></a>00132 <span class="comment">//</span>
<a name="l00133"></a>00133
<a name="l00134"></a>00134 label = <span class="keyword">new</span> TQLabel( <span class="stringliteral">"\n"</span> + i18n( <span class="stringliteral">"&amp;Additional comments:"</span> ), <span class="keyword">this</span> ); TQ_CHECK_PTR( label );
<a name="l00135"></a>00135 <a class="code" href="classKFeedbackForm.html#862ae3fd81afe2f61f19d41d927c537b">_comment</a> = <span class="keyword">new</span> TQMultiLineEdit( <span class="keyword">this</span> ); TQ_CHECK_PTR( <a class="code" href="classKFeedbackForm.html#862ae3fd81afe2f61f19d41d927c537b">_comment</a> );
<a name="l00136"></a>00136
<a name="l00137"></a>00137 label-&gt;setBuddy( <a class="code" href="classKFeedbackForm.html#862ae3fd81afe2f61f19d41d927c537b">_comment</a> );
<a name="l00138"></a>00138 <span class="preprocessor">#if (TQT_VERSION &lt; 300)</span>
<a name="l00139"></a>00139 <span class="preprocessor"></span> <a class="code" href="classKFeedbackForm.html#862ae3fd81afe2f61f19d41d927c537b">_comment</a>-&gt;setFixedVisibleLines( 5 );
<a name="l00140"></a>00140 <span class="preprocessor">#endif</span>
<a name="l00141"></a>00141 <span class="preprocessor"></span> <a class="code" href="classKFeedbackForm.html#862ae3fd81afe2f61f19d41d927c537b">_comment</a>-&gt;setWordWrap( TQMultiLineEdit::FixedColumnWidth );
<a name="l00142"></a>00142 <a class="code" href="classKFeedbackForm.html#862ae3fd81afe2f61f19d41d927c537b">_comment</a>-&gt;setWrapColumnOrWidth( 70 );
<a name="l00143"></a>00143 }
<a name="l00144"></a>00144
<a name="l00145"></a>00145
<a name="l00146"></a><a class="code" href="classKFeedbackForm.html#b22414a85a37ca217e028bde8a663ac4">00146</a> <a class="code" href="classKFeedbackForm.html#b22414a85a37ca217e028bde8a663ac4">KFeedbackForm::~KFeedbackForm</a>()
<a name="l00147"></a>00147 {
<a name="l00148"></a>00148 <span class="comment">// NOP</span>
<a name="l00149"></a>00149 }
<a name="l00150"></a>00150
<a name="l00151"></a>00151
<a name="l00152"></a>00152 <span class="keywordtype">void</span>
<a name="l00153"></a><a class="code" href="classKFeedbackForm.html#72b8b30801614c35e271c5e519f10c8b">00153</a> <a class="code" href="classKFeedbackForm.html#72b8b30801614c35e271c5e519f10c8b">KFeedbackForm::sendMail</a>()
<a name="l00154"></a>00154 {
<a name="l00155"></a>00155 <span class="comment">//</span>
<a name="l00156"></a>00156 <span class="comment">// Build mail subject</span>
<a name="l00157"></a>00157 <span class="comment">//</span>
<a name="l00158"></a>00158
<a name="l00159"></a>00159 TQString subject;
<a name="l00160"></a>00160
<a name="l00161"></a>00161 <span class="keyword">const</span> TDEAboutData * aboutData = TDEGlobal::instance()-&gt;aboutData();
<a name="l00162"></a>00162
<a name="l00163"></a>00163 <span class="keywordflow">if</span> ( aboutData )
<a name="l00164"></a>00164 subject = aboutData-&gt;programName() + <span class="stringliteral">"-"</span> + aboutData-&gt;version();
<a name="l00165"></a>00165 <span class="keywordflow">else</span>
<a name="l00166"></a>00166 subject = kapp-&gt;name();
<a name="l00167"></a>00167
<a name="l00168"></a>00168 subject += <span class="stringliteral">" user feedback"</span>;
<a name="l00169"></a>00169
<a name="l00170"></a>00170
<a name="l00171"></a>00171 <span class="comment">//</span>
<a name="l00172"></a>00172 <span class="comment">// Build mail body</span>
<a name="l00173"></a>00173 <span class="comment">//</span>
<a name="l00174"></a>00174
<a name="l00175"></a>00175 TQString body = subject + <span class="stringliteral">"\n\n"</span>
<a name="l00176"></a>00176 + <a class="code" href="classKFeedbackForm.html#08ace5fb7dd689ced012aa722b690b71">formatComment</a>()
<a name="l00177"></a>00177 + <a class="code" href="classKFeedbackForm.html#e8c28be58b2684f090c396ad52f64ad3">_questionList</a>-&gt;<a class="code" href="classKFeedbackQuestionList.html#f31a9d0c7b6f06cfca9f76ccba5743f0">result</a>();
<a name="l00178"></a>00178
<a name="l00179"></a>00179
<a name="l00180"></a>00180 <span class="comment">//</span>
<a name="l00181"></a>00181 <span class="comment">// Build "mailto:" URL from all this</span>
<a name="l00182"></a>00182 <span class="comment">//</span>
<a name="l00183"></a>00183
<a name="l00184"></a>00184 KURL mail;
<a name="l00185"></a>00185 mail.setProtocol( <span class="stringliteral">"mailto"</span> );
<a name="l00186"></a>00186 mail.setPath( <a class="code" href="classKFeedbackForm.html#4e667e814dc1de15bf601217c08f077f">_feedbackMailAddress</a> );
<a name="l00187"></a>00187 mail.setQuery( <span class="stringliteral">"?subject="</span> + KURL::encode_string( subject ) +
<a name="l00188"></a>00188 <span class="stringliteral">"&amp;body="</span> + KURL::encode_string( body ) );
<a name="l00189"></a>00189
<a name="l00190"></a>00190 <span class="comment">// TODO: Check for maximum command line length.</span>
<a name="l00191"></a>00191 <span class="comment">//</span>
<a name="l00192"></a>00192 <span class="comment">// The hard part with this is how to get this from all that 'autoconf'</span>
<a name="l00193"></a>00193 <span class="comment">// stuff into 'config.h' or some other include file without hardcoding</span>
<a name="l00194"></a>00194 <span class="comment">// anything - this is too system dependent.</span>
<a name="l00195"></a>00195
<a name="l00196"></a>00196
<a name="l00197"></a>00197 <span class="comment">//</span>
<a name="l00198"></a>00198 <span class="comment">// Actually send mail</span>
<a name="l00199"></a>00199 <span class="comment">//</span>
<a name="l00200"></a>00200
<a name="l00201"></a>00201 kapp-&gt;invokeMailer( mail );
<a name="l00202"></a>00202
<a name="l00203"></a>00203 emit <a class="code" href="classKFeedbackForm.html#ec2b411546d45e31c9b412f1fa6d8897">mailSent</a>();
<a name="l00204"></a>00204 }
<a name="l00205"></a>00205
<a name="l00206"></a>00206
<a name="l00207"></a>00207 <span class="keywordtype">void</span>
<a name="l00208"></a><a class="code" href="classKFeedbackForm.html#5ec1c36c978229b6e14e9005b595d69e">00208</a> <a class="code" href="classKFeedbackForm.html#5ec1c36c978229b6e14e9005b595d69e">KFeedbackForm::slotCheckComplete</a>()
<a name="l00209"></a>00209 {
<a name="l00210"></a>00210 emit <a class="code" href="classKFeedbackForm.html#c328809367354cf8ff97e7c78b521345">checkComplete</a>();
<a name="l00211"></a>00211 }
<a name="l00212"></a>00212
<a name="l00213"></a>00213
<a name="l00214"></a>00214 TQString
<a name="l00215"></a><a class="code" href="classKFeedbackForm.html#08ace5fb7dd689ced012aa722b690b71">00215</a> <a class="code" href="classKFeedbackForm.html#08ace5fb7dd689ced012aa722b690b71">KFeedbackForm::formatComment</a>()
<a name="l00216"></a>00216 {
<a name="l00217"></a>00217 TQString result = <a class="code" href="classKFeedbackForm.html#862ae3fd81afe2f61f19d41d927c537b">_comment</a>-&gt;text();
<a name="l00218"></a>00218
<a name="l00219"></a>00219 <span class="keywordflow">if</span> ( ! result.isEmpty() )
<a name="l00220"></a>00220 {
<a name="l00221"></a>00221 result = <span class="stringliteral">"&lt;comment&gt;\n"</span> + result + <span class="stringliteral">"\n&lt;/comment&gt;\n\n"</span>;
<a name="l00222"></a>00222 }
<a name="l00223"></a>00223
<a name="l00224"></a>00224 <span class="keywordflow">return</span> result;
<a name="l00225"></a>00225 }
<a name="l00226"></a>00226
<a name="l00227"></a>00227
<a name="l00228"></a>00228 <span class="keywordtype">bool</span>
<a name="l00229"></a><a class="code" href="classKFeedbackForm.html#6840e07fe3245d4e9c11ee0160af6068">00229</a> <a class="code" href="classKFeedbackForm.html#6840e07fe3245d4e9c11ee0160af6068">KFeedbackForm::readyToSend</a>()
<a name="l00230"></a>00230 {
<a name="l00231"></a>00231 <span class="keywordflow">return</span> <a class="code" href="classKFeedbackForm.html#e8c28be58b2684f090c396ad52f64ad3">_questionList</a>-&gt;<a class="code" href="classKFeedbackQuestionList.html#5834cfcbdf74ac1d8762c037dc492291">isComplete</a>();
<a name="l00232"></a>00232 }
<a name="l00233"></a>00233
<a name="l00234"></a>00234
<a name="l00235"></a>00235
<a name="l00236"></a>00236
<a name="l00237"></a>00237
<a name="l00238"></a>00238
<a name="l00239"></a><a class="code" href="classKFeedbackQuestionList.html#c666871537387a102c9f6372aa8875e8">00239</a> <a class="code" href="classKFeedbackQuestionList.html#c666871537387a102c9f6372aa8875e8">KFeedbackQuestionList::KFeedbackQuestionList</a>( TQWidget *parent )
<a name="l00240"></a>00240 : TQListView( parent )
<a name="l00241"></a>00241 {
<a name="l00242"></a>00242 addColumn( <span class="stringliteral">""</span> );
<a name="l00243"></a>00243 header()-&gt;hide();
<a name="l00244"></a>00244 }
<a name="l00245"></a>00245
<a name="l00246"></a>00246
<a name="l00247"></a><a class="code" href="classKFeedbackQuestionList.html#b467b667cbd906403af3222ab7a3e602">00247</a> <a class="code" href="classKFeedbackQuestionList.html#b467b667cbd906403af3222ab7a3e602">KFeedbackQuestionList::~KFeedbackQuestionList</a>()
<a name="l00248"></a>00248 {
<a name="l00249"></a>00249 <span class="comment">// NOP</span>
<a name="l00250"></a>00250 }
<a name="l00251"></a>00251
<a name="l00252"></a>00252
<a name="l00253"></a>00253 <span class="keywordtype">bool</span>
<a name="l00254"></a><a class="code" href="classKFeedbackQuestionList.html#5834cfcbdf74ac1d8762c037dc492291">00254</a> <a class="code" href="classKFeedbackQuestionList.html#5834cfcbdf74ac1d8762c037dc492291">KFeedbackQuestionList::isComplete</a>()
<a name="l00255"></a>00255 {
<a name="l00256"></a>00256 <a class="code" href="classKFeedbackQuestion.html">KFeedbackQuestion</a> * question = <a class="code" href="classKFeedbackQuestionList.html#37589f00f7f3e9c544780be24e122f21">firstQuestion</a>();
<a name="l00257"></a>00257
<a name="l00258"></a>00258 <span class="keywordflow">while</span> ( question )
<a name="l00259"></a>00259 {
<a name="l00260"></a>00260 <span class="keywordflow">if</span> ( question-&gt;<a class="code" href="classKFeedbackQuestion.html#5431a877415afca993aaefea86c0c7ec">isRequired</a>() &amp;&amp; ! question-&gt;<a class="code" href="classKFeedbackQuestion.html#593b269b00a8da9152a66f31fcdf75f3">isAnswered</a>() )
<a name="l00261"></a>00261 <span class="keywordflow">return</span> <span class="keyword">false</span>;
<a name="l00262"></a>00262
<a name="l00263"></a>00263 question = question-&gt;<a class="code" href="classKFeedbackQuestion.html#f3731cde03060c91a80ebb5c80f657a1">nextQuestion</a>();
<a name="l00264"></a>00264 }
<a name="l00265"></a>00265
<a name="l00266"></a>00266 <span class="keywordflow">return</span> <span class="keyword">true</span>;
<a name="l00267"></a>00267 }
<a name="l00268"></a>00268
<a name="l00269"></a>00269
<a name="l00270"></a><a class="code" href="classKFeedbackQuestionList.html#f31a9d0c7b6f06cfca9f76ccba5743f0">00270</a> TQString <a class="code" href="classKFeedbackQuestionList.html#f31a9d0c7b6f06cfca9f76ccba5743f0">KFeedbackQuestionList::result</a>()
<a name="l00271"></a>00271 {
<a name="l00272"></a>00272 TQString res;
<a name="l00273"></a>00273 <a class="code" href="classKFeedbackQuestion.html">KFeedbackQuestion</a> * question = <a class="code" href="classKFeedbackQuestionList.html#37589f00f7f3e9c544780be24e122f21">firstQuestion</a>();
<a name="l00274"></a>00274
<a name="l00275"></a>00275 <span class="keywordflow">while</span> ( question )
<a name="l00276"></a>00276 {
<a name="l00277"></a>00277 res += question-&gt;<a class="code" href="classKFeedbackQuestion.html#51e0a1d351c8f7819f50a6ebf66c193d">result</a>();
<a name="l00278"></a>00278
<a name="l00279"></a>00279 question = question-&gt;<a class="code" href="classKFeedbackQuestion.html#f3731cde03060c91a80ebb5c80f657a1">nextQuestion</a>();
<a name="l00280"></a>00280 }
<a name="l00281"></a>00281 res += <span class="stringliteral">"Compiled on KDE version: "</span>;
<a name="l00282"></a>00282 res += TDE_VERSION_STRING;
<a name="l00283"></a>00283
<a name="l00284"></a>00284 <span class="keywordflow">return</span> res;
<a name="l00285"></a>00285 }
<a name="l00286"></a>00286
<a name="l00287"></a>00287
<a name="l00288"></a><a class="code" href="classKFeedbackQuestionList.html#7c043c6ca2c63fae277e7b43fcb8d145">00288</a> <a class="code" href="classKFeedbackQuestion.html">KFeedbackQuestion</a>* <a class="code" href="classKFeedbackQuestionList.html#7c043c6ca2c63fae277e7b43fcb8d145">KFeedbackQuestionList::addQuestion</a>( <span class="keyword">const</span> TQString &amp; text,
<a name="l00289"></a>00289 <span class="keyword">const</span> TQString &amp; <span class="keywordtype">id</span>,
<a name="l00290"></a>00290 <span class="keywordtype">bool</span> exclusiveAnswer,
<a name="l00291"></a>00291 <span class="keywordtype">bool</span> required )
<a name="l00292"></a>00292 {
<a name="l00293"></a>00293 <a class="code" href="classKFeedbackQuestion.html">KFeedbackQuestion</a> * question = <span class="keyword">new</span> <a class="code" href="classKFeedbackQuestion.html">KFeedbackQuestion</a>( <span class="keyword">this</span>, text, <span class="keywordtype">id</span>,
<a name="l00294"></a>00294 exclusiveAnswer,
<a name="l00295"></a>00295 required );
<a name="l00296"></a>00296 TQ_CHECK_PTR( question );
<a name="l00297"></a>00297
<a name="l00298"></a>00298 <span class="keywordflow">return</span> question;
<a name="l00299"></a>00299 }
<a name="l00300"></a>00300
<a name="l00301"></a>00301
<a name="l00302"></a>00302 <span class="keywordtype">void</span>
<a name="l00303"></a><a class="code" href="classKFeedbackQuestionList.html#9408bbc813e69ef33693cffa0ddd7c91">00303</a> <a class="code" href="classKFeedbackQuestionList.html#9408bbc813e69ef33693cffa0ddd7c91">KFeedbackQuestionList::addYesNoQuestion</a>( <span class="keyword">const</span> TQString &amp; text,
<a name="l00304"></a>00304 <span class="keyword">const</span> TQString &amp; <span class="keywordtype">id</span>,
<a name="l00305"></a>00305 <span class="keywordtype">bool</span> required )
<a name="l00306"></a>00306 {
<a name="l00307"></a>00307
<a name="l00308"></a>00308 <a class="code" href="classKFeedbackQuestion.html">KFeedbackQuestion</a> * question = <span class="keyword">new</span> <a class="code" href="classKFeedbackQuestion.html">KFeedbackQuestion</a>( <span class="keyword">this</span>, text, <span class="keywordtype">id</span>,
<a name="l00309"></a>00309 <span class="keyword">true</span>, <span class="comment">// exclusive</span>
<a name="l00310"></a>00310 required );
<a name="l00311"></a>00311 TQ_CHECK_PTR( question );
<a name="l00312"></a>00312 question-&gt;<a class="code" href="classKFeedbackQuestion.html#70dfbcfb7699accc62ca3f9c1b2da8b6">addAnswer</a>( i18n( <span class="stringliteral">"yes"</span> ), <span class="stringliteral">"yes"</span> );
<a name="l00313"></a>00313 question-&gt;<a class="code" href="classKFeedbackQuestion.html#70dfbcfb7699accc62ca3f9c1b2da8b6">addAnswer</a>( i18n( <span class="stringliteral">"no"</span> ), <span class="stringliteral">"no"</span> );
<a name="l00314"></a>00314 }
<a name="l00315"></a>00315
<a name="l00316"></a>00316
<a name="l00317"></a>00317 <span class="keywordtype">void</span>
<a name="l00318"></a><a class="code" href="classKFeedbackQuestionList.html#9c8ed9fbb0f64a8748806f3850d2db14">00318</a> <a class="code" href="classKFeedbackQuestionList.html#9c8ed9fbb0f64a8748806f3850d2db14">KFeedbackQuestionList::questionAnswered</a>()
<a name="l00319"></a>00319 {
<a name="l00320"></a>00320 emit <a class="code" href="classKFeedbackQuestionList.html#7eb8b8f5254845e7a559b3da1fa34ba4">checkComplete</a>();
<a name="l00321"></a>00321 }
<a name="l00322"></a>00322
<a name="l00323"></a>00323 <span class="keywordtype">void</span>
<a name="l00324"></a><a class="code" href="classKFeedbackQuestionList.html#3a0c308081a834c24cdd576a694174dd">00324</a> <a class="code" href="classKFeedbackQuestionList.html#3a0c308081a834c24cdd576a694174dd">KFeedbackQuestionList::questionAdded</a>( <a class="code" href="classKFeedbackQuestion.html">KFeedbackQuestion</a> * question)
<a name="l00325"></a>00325 {
<a name="l00326"></a>00326 <span class="keywordflow">if</span> ( question-&gt;<a class="code" href="classKFeedbackQuestion.html#5431a877415afca993aaefea86c0c7ec">isRequired</a>() )
<a name="l00327"></a>00327 emit <a class="code" href="classKFeedbackQuestionList.html#7eb8b8f5254845e7a559b3da1fa34ba4">checkComplete</a>();
<a name="l00328"></a>00328 }
<a name="l00329"></a>00329
<a name="l00330"></a>00330
<a name="l00331"></a>00331
<a name="l00332"></a>00332
<a name="l00333"></a>00333
<a name="l00334"></a>00334 <span class="keyword">static</span> <span class="keywordtype">int</span> nextNo = 0;
<a name="l00335"></a>00335
<a name="l00336"></a><a class="code" href="classKFeedbackQuestion.html#74f81a22aec4f3969ac05fcef5d8dee4">00336</a> <a class="code" href="classKFeedbackQuestion.html#74f81a22aec4f3969ac05fcef5d8dee4">KFeedbackQuestion::KFeedbackQuestion</a>( <a class="code" href="classKFeedbackQuestionList.html">KFeedbackQuestionList</a> * parent,
<a name="l00337"></a>00337 <span class="keyword">const</span> TQString &amp; text,
<a name="l00338"></a>00338 <span class="keyword">const</span> TQString &amp; <span class="keywordtype">id</span>,
<a name="l00339"></a>00339 <span class="keywordtype">bool</span> exclusiveAnswer,
<a name="l00340"></a>00340 <span class="keywordtype">bool</span> required,
<a name="l00341"></a>00341 <span class="keywordtype">bool</span> open )
<a name="l00342"></a>00342 : TQCheckListItem( parent, text )
<a name="l00343"></a>00343 , _id( id )
<a name="l00344"></a>00344 , _exclusiveAnswer( exclusiveAnswer )
<a name="l00345"></a>00345 , _required( required )
<a name="l00346"></a>00346 {
<a name="l00347"></a>00347 <span class="keywordflow">if</span> ( required )
<a name="l00348"></a>00348 {
<a name="l00349"></a>00349 setPixmap( 0, TDEGlobal::iconLoader()-&gt;loadIcon( <span class="stringliteral">"edit"</span>, TDEIcon::Small ) );
<a name="l00350"></a>00350 }
<a name="l00351"></a>00351
<a name="l00352"></a>00352 setOpen( open );
<a name="l00353"></a>00353 <a class="code" href="classKFeedbackQuestion.html#4b1825caeff106b7a911ac725acdd8d1">_no</a> = nextNo++;
<a name="l00354"></a>00354
<a name="l00355"></a>00355 parent-&gt;<a class="code" href="classKFeedbackQuestionList.html#3a0c308081a834c24cdd576a694174dd">questionAdded</a>( <span class="keyword">this</span> );
<a name="l00356"></a>00356 }
<a name="l00357"></a>00357
<a name="l00358"></a>00358
<a name="l00359"></a>00359 <span class="keywordtype">void</span>
<a name="l00360"></a><a class="code" href="classKFeedbackQuestion.html#70dfbcfb7699accc62ca3f9c1b2da8b6">00360</a> <a class="code" href="classKFeedbackQuestion.html#70dfbcfb7699accc62ca3f9c1b2da8b6">KFeedbackQuestion::addAnswer</a>( <span class="keyword">const</span> TQString &amp; text,
<a name="l00361"></a>00361 <span class="keyword">const</span> TQString &amp; <span class="keywordtype">id</span> )
<a name="l00362"></a>00362 {
<a name="l00363"></a>00363 <span class="keyword">new</span> <a class="code" href="classKFeedbackAnswer.html">KFeedbackAnswer</a>( <span class="keyword">this</span>, text, <span class="keywordtype">id</span>, <a class="code" href="classKFeedbackQuestion.html#8d6d302dac4b8dc4973ff7cf8aa5f852">_exclusiveAnswer</a> );
<a name="l00364"></a>00364 }
<a name="l00365"></a>00365
<a name="l00366"></a>00366
<a name="l00367"></a>00367 <span class="keywordtype">bool</span>
<a name="l00368"></a><a class="code" href="classKFeedbackQuestion.html#593b269b00a8da9152a66f31fcdf75f3">00368</a> <a class="code" href="classKFeedbackQuestion.html#593b269b00a8da9152a66f31fcdf75f3">KFeedbackQuestion::isAnswered</a>()
<a name="l00369"></a>00369 {
<a name="l00370"></a>00370 <span class="keywordflow">if</span> ( ! <a class="code" href="classKFeedbackQuestion.html#8d6d302dac4b8dc4973ff7cf8aa5f852">_exclusiveAnswer</a> )
<a name="l00371"></a>00371 {
<a name="l00377"></a>00377 <span class="keywordflow">return</span> <span class="keyword">true</span>;
<a name="l00378"></a>00378 }
<a name="l00379"></a>00379
<a name="l00380"></a>00380
<a name="l00387"></a>00387 <a class="code" href="classKFeedbackAnswer.html">KFeedbackAnswer</a> *answer = <a class="code" href="classKFeedbackQuestion.html#a8759ac15cc2bec6f1a9e183eb374574">firstAnswer</a>();
<a name="l00388"></a>00388
<a name="l00389"></a>00389 <span class="keywordflow">while</span> ( answer )
<a name="l00390"></a>00390 {
<a name="l00391"></a>00391 <span class="keywordflow">if</span> ( answer-&gt;<a class="code" href="classKFeedbackAnswer.html#864fad7f3c6f5f92f262488735799cb7">isChecked</a>() )
<a name="l00392"></a>00392 <span class="keywordflow">return</span> <span class="keyword">true</span>;
<a name="l00393"></a>00393
<a name="l00394"></a>00394 answer = answer-&gt;<a class="code" href="classKFeedbackAnswer.html#31fe8732bdbda805d1306e5c86fcae91">nextAnswer</a>();
<a name="l00395"></a>00395 }
<a name="l00396"></a>00396
<a name="l00397"></a>00397 <span class="keywordflow">return</span> <span class="keyword">false</span>;
<a name="l00398"></a>00398 }
<a name="l00399"></a>00399
<a name="l00400"></a>00400
<a name="l00401"></a>00401 TQString
<a name="l00402"></a><a class="code" href="classKFeedbackQuestion.html#51e0a1d351c8f7819f50a6ebf66c193d">00402</a> <a class="code" href="classKFeedbackQuestion.html#51e0a1d351c8f7819f50a6ebf66c193d">KFeedbackQuestion::result</a>()
<a name="l00403"></a>00403 {
<a name="l00404"></a>00404 TQString res;
<a name="l00405"></a>00405 <span class="keywordtype">int</span> answers = 0;
<a name="l00406"></a>00406
<a name="l00407"></a>00407 <a class="code" href="classKFeedbackAnswer.html">KFeedbackAnswer</a> *answer = <a class="code" href="classKFeedbackQuestion.html#a8759ac15cc2bec6f1a9e183eb374574">firstAnswer</a>();
<a name="l00408"></a>00408
<a name="l00409"></a>00409 <span class="keywordflow">while</span> ( answer )
<a name="l00410"></a>00410 {
<a name="l00411"></a>00411 <span class="keywordflow">if</span> ( answer-&gt;<a class="code" href="classKFeedbackAnswer.html#864fad7f3c6f5f92f262488735799cb7">isChecked</a>() )
<a name="l00412"></a>00412 {
<a name="l00413"></a>00413 res += <a class="code" href="classKFeedbackQuestion.html#f0209761e6a1c061b4749f4a0228afc3">_id</a> + <span class="stringliteral">"=\""</span> + answer-&gt;<a class="code" href="classKFeedbackAnswer.html#0c38ffb3d84f3ca2204bcd66f605514c">id</a>() + <span class="stringliteral">"\"\n"</span>;
<a name="l00414"></a>00414 answers++;
<a name="l00415"></a>00415 }
<a name="l00416"></a>00416
<a name="l00417"></a>00417 answer = answer-&gt;<a class="code" href="classKFeedbackAnswer.html#31fe8732bdbda805d1306e5c86fcae91">nextAnswer</a>();
<a name="l00418"></a>00418 }
<a name="l00419"></a>00419
<a name="l00420"></a>00420 <span class="keywordflow">if</span> ( answers &gt; 1 )
<a name="l00421"></a>00421 {
<a name="l00422"></a>00422 res = <span class="stringliteral">"\n"</span> + res + <span class="stringliteral">"\n"</span>;
<a name="l00423"></a>00423 }
<a name="l00424"></a>00424
<a name="l00425"></a>00425 <span class="keywordflow">return</span> res;
<a name="l00426"></a>00426 }
<a name="l00427"></a>00427
<a name="l00428"></a>00428
<a name="l00429"></a>00429 TQString
<a name="l00430"></a><a class="code" href="classKFeedbackQuestion.html#13730ea63a6d8de44866c9134cb88f3c">00430</a> <a class="code" href="classKFeedbackQuestion.html#13730ea63a6d8de44866c9134cb88f3c">KFeedbackQuestion::text</a>()
<a name="l00431"></a>00431 {
<a name="l00432"></a>00432 <span class="keywordflow">return</span> TQCheckListItem::text(0);
<a name="l00433"></a>00433 }
<a name="l00434"></a>00434
<a name="l00435"></a>00435
<a name="l00436"></a>00436 TQString
<a name="l00437"></a><a class="code" href="classKFeedbackQuestion.html#72b655cc6c5414023d05669142053a7c">00437</a> <a class="code" href="classKFeedbackQuestion.html#72b655cc6c5414023d05669142053a7c">KFeedbackQuestion::key</a>( <span class="keywordtype">int</span>, <span class="keywordtype">bool</span> )<span class="keyword"> const</span>
<a name="l00438"></a>00438 <span class="keyword"></span>{
<a name="l00439"></a>00439 TQString no;
<a name="l00440"></a>00440 no.sprintf( <span class="stringliteral">"%08d"</span>, <a class="code" href="classKFeedbackQuestion.html#4b1825caeff106b7a911ac725acdd8d1">_no</a> );
<a name="l00441"></a>00441
<a name="l00442"></a>00442 <span class="keywordflow">return</span> no;
<a name="l00443"></a>00443 }
<a name="l00444"></a>00444
<a name="l00445"></a>00445
<a name="l00446"></a>00446 <a class="code" href="classKFeedbackQuestionList.html">KFeedbackQuestionList</a> *
<a name="l00447"></a><a class="code" href="classKFeedbackQuestion.html#f879e5220a516c94124130a2d0a1a2dd">00447</a> <a class="code" href="classKFeedbackQuestion.html#f879e5220a516c94124130a2d0a1a2dd">KFeedbackQuestion::questionList</a>()<span class="keyword"> const</span>
<a name="l00448"></a>00448 <span class="keyword"></span>{
<a name="l00449"></a>00449 <span class="keywordflow">return</span> dynamic_cast&lt;KFeedbackQuestionList *&gt;( listView() );
<a name="l00450"></a>00450 }
<a name="l00451"></a>00451
<a name="l00452"></a>00452
<a name="l00453"></a>00453
<a name="l00454"></a>00454
<a name="l00455"></a>00455
<a name="l00456"></a>00456
<a name="l00457"></a>00457
<a name="l00458"></a><a class="code" href="classKFeedbackAnswer.html#7100bf31bf9d49009b8c5a82c1ae5bde">00458</a> <a class="code" href="classKFeedbackAnswer.html#7100bf31bf9d49009b8c5a82c1ae5bde">KFeedbackAnswer::KFeedbackAnswer</a>( <a class="code" href="classKFeedbackQuestion.html">KFeedbackQuestion</a> * parent,
<a name="l00459"></a>00459 <span class="keyword">const</span> TQString &amp; text,
<a name="l00460"></a>00460 <span class="keyword">const</span> TQString &amp; <span class="keywordtype">id</span>,
<a name="l00461"></a>00461 <span class="keywordtype">bool</span> exclusive )
<a name="l00462"></a>00462 : TQCheckListItem( parent,
<a name="l00463"></a>00463 text,
<a name="l00464"></a>00464 exclusive
<a name="l00465"></a>00465 ? TQCheckListItem::RadioButton
<a name="l00466"></a>00466 : TQCheckListItem::CheckBox )
<a name="l00467"></a>00467 , _id( id )
<a name="l00468"></a>00468 {
<a name="l00469"></a>00469 <a class="code" href="classKFeedbackAnswer.html#1ddde383928714423714a70a829a0c57">_no</a> = nextNo++;
<a name="l00470"></a>00470 }
<a name="l00471"></a>00471
<a name="l00472"></a>00472
<a name="l00473"></a>00473 TQString
<a name="l00474"></a><a class="code" href="classKFeedbackAnswer.html#a177a24369a5dab88d5602f6651275ea">00474</a> <a class="code" href="classKFeedbackAnswer.html#a177a24369a5dab88d5602f6651275ea">KFeedbackAnswer::text</a>()
<a name="l00475"></a>00475 {
<a name="l00476"></a>00476 <span class="keywordflow">return</span> TQCheckListItem::text(0);
<a name="l00477"></a>00477 }
<a name="l00478"></a>00478
<a name="l00479"></a>00479
<a name="l00480"></a>00480 TQString
<a name="l00481"></a><a class="code" href="classKFeedbackAnswer.html#a643ff4986437b3089dcda86512c4f79">00481</a> <a class="code" href="classKFeedbackAnswer.html#a643ff4986437b3089dcda86512c4f79">KFeedbackAnswer::key</a>( <span class="keywordtype">int</span>, <span class="keywordtype">bool</span> )<span class="keyword"> const</span>
<a name="l00482"></a>00482 <span class="keyword"></span>{
<a name="l00483"></a>00483 TQString no;
<a name="l00484"></a>00484 no.sprintf( <span class="stringliteral">"%08d"</span>, <a class="code" href="classKFeedbackAnswer.html#1ddde383928714423714a70a829a0c57">_no</a> );
<a name="l00485"></a>00485
<a name="l00486"></a>00486 <span class="keywordflow">return</span> no;
<a name="l00487"></a>00487 }
<a name="l00488"></a>00488
<a name="l00489"></a>00489
<a name="l00490"></a>00490 <span class="keywordtype">void</span>
<a name="l00491"></a><a class="code" href="classKFeedbackAnswer.html#3812bf11ec42b06397e87a753797bbd8">00491</a> <a class="code" href="classKFeedbackAnswer.html#3812bf11ec42b06397e87a753797bbd8">KFeedbackAnswer::stateChange</a>( <span class="keywordtype">bool</span> newState )
<a name="l00492"></a>00492 {
<a name="l00493"></a>00493 <span class="keywordflow">if</span> ( newState &amp;&amp; <a class="code" href="classKFeedbackAnswer.html#c147b9f7c35c83c8a5458a79f6cafed9">question</a>()-&gt;isRequired() )
<a name="l00494"></a>00494 {
<a name="l00495"></a>00495 <a class="code" href="classKFeedbackQuestionList.html">KFeedbackQuestionList</a> * list = <a class="code" href="classKFeedbackAnswer.html#c147b9f7c35c83c8a5458a79f6cafed9">question</a>()-&gt;<a class="code" href="classKFeedbackQuestion.html#f879e5220a516c94124130a2d0a1a2dd">questionList</a>();
<a name="l00496"></a>00496
<a name="l00497"></a>00497 <span class="keywordflow">if</span> ( list )
<a name="l00498"></a>00498 list-&gt;<a class="code" href="classKFeedbackQuestionList.html#9c8ed9fbb0f64a8748806f3850d2db14">questionAnswered</a>();
<a name="l00499"></a>00499 }
<a name="l00500"></a>00500 }
<a name="l00501"></a>00501
<a name="l00502"></a>00502
<a name="l00503"></a>00503
<a name="l00504"></a>00504 <span class="comment">// EOF</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Thu Jul 5 19:36:06 2007 for kshowmail by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.0 </small></address>
</body>
</html>