/* This file is part of Akregator. Copyright (C) 2004 Teemu Rytilahti This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program with any edition of TQt, and distribute the resulting executable, without including the source code for TQt in the source distribution. */ #ifndef VIEWER_H #define VIEWER_H #include class KURL; namespace TDEIO { class MetaData; } namespace Akregator { class Viewer : public TDEHTMLPart { Q_OBJECT public: /** * Display article in external browser. */ static void displayInExternalBrowser(const KURL &url, const TQString& mimetype=TQString()); Viewer(TQWidget* parent, const char* name); virtual ~Viewer(); virtual bool closeURL(); public slots: void slotScrollUp(); void slotScrollDown(); void slotZoomIn(); void slotZoomOut(); void slotSetZoomFactor(int percent); void slotPrint(); void setSafeMode(); virtual void slotPaletteOrFontChanged() = 0; signals: /** This gets emitted when url gets clicked */ void urlClicked(const KURL& url, Viewer* viewer, bool newTab, bool background); protected: // methods int pointsToPixel(int points) const; protected slots: // FIXME: Sort out how things are supposed to work and clean up the following slots /** reimplemented to handle url selection according to the settings for LMB and MMB */ virtual void urlSelected(const TQString &url, int button, int state, const TQString &_target, KParts::URLArgs args); /** slot for handling openURLRequestDelayed() signal from the browserextension. Handles POST requests (for forms) only, other link handling goes to urlSelected(). Does nothing in Viewer, reimplemented in PageViewer to make forms working */ virtual void slotOpenURLRequest(const KURL& url, const KParts::URLArgs& args); virtual void slotPopupMenu(KXMLGUIClient*, const TQPoint&, const KURL&, const KParts::URLArgs&, KParts::BrowserExtension::PopupFlags, mode_t); /** Copies current link to clipboard. */ void slotCopyLinkAddress(); /** Copies currently selected text to clipboard */ virtual void slotCopy(); /** Opens @c m_url inside this viewer */ virtual void slotOpenLinkInternal(); /** Opens @c m_url in external viewer, eg. Konqueror */ virtual void slotOpenLinkInBrowser(); /** Opens @c m_url in foreground tab */ virtual void slotOpenLinkInForegroundTab(); /** Opens @c m_url in background tab */ virtual void slotOpenLinkInBackgroundTab(); virtual void slotOpenLinkInThisTab(); virtual void slotSaveLinkAs(); /** This changes cursor to wait cursor */ void slotStarted(TDEIO::Job *); /** This reverts cursor back to normal one */ void slotCompleted(); virtual void slotSelectionChanged(); protected: // attributes KURL m_url; }; } #endif // VIEWER_H // vim: ts=4 sw=4 et