• Skip to content
  • Skip to link menu
KDE 4.1 API Reference
  • KDE API Reference
  • kdelibs
  • Sitemap
  • Contact Us
 

KNewStuff

kdxscomments.cpp

Go to the documentation of this file.
00001 /*
00002     This file is part of KNewStuff2.
00003     Copyright (c) 2006, 2007 Josef Spillner <spillner@kde.org>
00004 
00005     This library is free software; you can redistribute it and/or
00006     modify it under the terms of the GNU Library General Public
00007     License as published by the Free Software Foundation; either
00008     version 2 of the License, or (at your option) any later version.
00009 
00010     This library is distributed in the hope that it will be useful,
00011     but WITHOUT ANY WARRANTY; without even the implied warranty of
00012     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013     Library General Public License for more details.
00014 
00015     You should have received a copy of the GNU Library General Public License
00016     along with this library; see the file COPYING.LIB.  If not, write to
00017     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00018     Boston, MA 02110-1301, USA.
00019 */
00020 
00021 #include "kdxscomments.h"
00022 
00023 #include <klocale.h>
00024 #include <ktextbrowser.h>
00025 
00026 #include <QtGui/QLayout>
00027 #include <QtGui/QApplication>
00028 
00029 #include <QtGui/QCursor>
00030 
00031 KDXSComments::KDXSComments(QWidget *parent)
00032         : KDialog(parent)
00033 {
00034     setCaption(i18n("User comments"));
00035     setButtons(KDialog::Close);
00036 
00037     m_log = new KTextBrowser(this);
00038     setMainWidget(m_log);
00039 
00040     connect(m_log, SIGNAL(anchorClicked(const QUrl&)),
00041             SLOT(slotUrl(const QUrl&)));
00042 }
00043 
00044 void KDXSComments::slotUrl(const QUrl& url)
00045 {
00046     if (!url.isEmpty()) {
00047         qDebug("SHOW %s!", qPrintable(url.toString()));
00048     }
00049 }
00050 
00051 void KDXSComments::addComment(const QString& username, const QString& comment)
00052 {
00053     // FIXME: get email address??
00054     QString t;
00055 
00056     t += m_log->toHtml();
00057 
00058     QString email = "spillner@kde.org";
00059 
00060     t += "<a href='" + email + "'>" + Qt::escape(username) + "</a>"
00061          + "<table class='itemBox'>"
00062          + "<tr>"
00063          + "<td class='contentsColumn'>"
00064          + "<table class='contentsHeader' cellspacing='2' cellpadding='0'><tr>"
00065          + "<td>Comment!</td>"
00066          + "</tr></table>"
00067          + "<div class='contentsBody'>"
00068          + Qt::escape(comment)
00069          + "</div>"
00070          + "<div class='contentsFooter'>"
00071          + "<em>" + Qt::escape(username) + "</em>"
00072          + "</div>"
00073          + "</td>"
00074          + "</tr>"
00075          + "</table>";
00076 
00077     m_log->setHtml(t);
00078 }
00079 
00080 /*
00081 void urlSelected(const QString & link, int, int, const QString &, KParts::URLArgs)
00082 {
00083 KURL url(link);
00084 QString urlProtocol = url.protocol();
00085 QString urlPath = url.path();
00086 if(urlProtocol == "mailto")
00087 {
00088 kapp->invokeMailer( url );
00089 }
00090 }
00091 */
00092 
00093 #include "kdxscomments.moc"

KNewStuff

Skip menu "KNewStuff"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

kdelibs

Skip menu "kdelibs"
  • DNSSD
  • Interfaces
  •   KHexEdit
  •   KMediaPlayer
  •   KSpeech
  •   KTextEditor
  • Kate
  • kconf_update
  • KDE3Support
  •   KUnitTest
  • KDECore
  • KDED
  • KDEsu
  • KDEUI
  • KDocTools
  • KFile
  • KHTML
  • KImgIO
  • KInit
  • KIO
  • KIOSlave
  • KJS
  •   KJS-API
  •   WTF
  • kjsembed
  • KNewStuff
  • KParts
  • Kross
  • KUtils
  • Nepomuk
  • Solid
  • Sonnet
  • ThreadWeaver
Generated for kdelibs by doxygen 1.5.4
This website is maintained by Adriaan de Groot and Allen Winter.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal