summaryrefslogtreecommitdiffstats
path: root/akregator/src/articleviewer.h
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/articleviewer.h')
-rw-r--r--akregator/src/articleviewer.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/akregator/src/articleviewer.h b/akregator/src/articleviewer.h
index a9eb65b65..25928395e 100644
--- a/akregator/src/articleviewer.h
+++ b/akregator/src/articleviewer.h
@@ -28,8 +28,8 @@
#include <klocale.h>
-#include <qcolor.h>
-#include <qfont.h>
+#include <tqcolor.h>
+#include <tqfont.h>
#include "article.h"
#include "articlefilter.h"
@@ -50,7 +50,7 @@ namespace Akregator
Q_OBJECT
public:
/** Constructor */
- ArticleViewer(QWidget* parent, const char* name);
+ ArticleViewer(TQWidget* parent, const char* name);
virtual ~ArticleViewer();
virtual bool openURL(const KURL &url);
@@ -90,14 +90,14 @@ namespace Akregator
protected slots:
- void slotArticlesUpdated(TreeNode* node, const QValueList<Article>& list);
- void slotArticlesAdded(TreeNode* node, const QValueList<Article>& list);
- void slotArticlesRemoved(TreeNode* node, const QValueList<Article>& list);
+ void slotArticlesUpdated(TreeNode* node, const TQValueList<Article>& list);
+ void slotArticlesAdded(TreeNode* node, const TQValueList<Article>& list);
+ void slotArticlesRemoved(TreeNode* node, const TQValueList<Article>& list);
protected:
- virtual void keyPressEvent(QKeyEvent* e);
- virtual void urlSelected (const QString &url, int button, int state, const QString &_target, KParts::URLArgs args);
+ virtual void keyPressEvent(TQKeyEvent* e);
+ virtual void urlSelected (const TQString &url, int button, int state, const TQString &_target, KParts::URLArgs args);
public: // compat with KDE-3.x assertions, remove for KDE 4
// private:
@@ -108,19 +108,19 @@ namespace Akregator
/** renders @c body. Use this method whereever possible.
@param body html to render, without header and footer */
- void renderContent(const QString& body);
+ void renderContent(const TQString& body);
/** Takes an article and renders it as HTML with settings for normal view and widescreen view
@param feed article's feed (used for feed icon atm) -- article.feed() would do. better use a (No)Icon flag. -fo
@param article The article to render
@return the rendered article as HTML */
- QString formatArticleNormalMode(Feed* feed, const Article& article);
+ TQString formatArticleNormalMode(Feed* feed, const Article& article);
/** Takes an article and renders it as HTML with settings for combined view
@param feed article's feed (used for feed icon atm) -- article.feed() would do. better use a (No)Icon flag. -fo
@param article The article to render
@return the rendered article as HTML */
- QString formatArticleCombinedMode(Feed* feed, const Article& article);
+ TQString formatArticleCombinedMode(Feed* feed, const Article& article);
/** Resets the canvas and adds writes the HTML header to it.
*/
@@ -136,10 +136,10 @@ namespace Akregator
void connectToNode(TreeNode* node);
void disconnectFromNode(TreeNode* node);
- QString m_normalModeCSS;
- QString m_combinedModeCSS;
- QString m_htmlFooter;
- QString m_currentText;
+ TQString m_normalModeCSS;
+ TQString m_combinedModeCSS;
+ TQString m_htmlFooter;
+ TQString m_currentText;
KURL m_imageDir;
TreeNode* m_node;
Article m_article;