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.
amarok/amarok/src/htmlview.h

46 lines
1.1 KiB

// (c) 2005 Christian Muehlhaeuser <chris@chris.de>
// (c) 2006 Seb Ruiz <me@sebruiz.net>
// License: GNU General Public License V2
#ifndef AMAROK_HTMLVIEW_H
#define AMAROK_HTMLVIEW_H
#include <khtml_events.h>
#include <khtml_part.h>
#include <khtmlview.h>
class KAction;
class KTempFile;
class HTMLView : public KHTMLPart
{
Q_OBJECT
TQ_OBJECT
public:
HTMLView( TQWidget *parentWidget = 0, const char *widgetname = 0, const bool DNDEnabled = false, const bool JScriptEnabled = true );
~HTMLView();
static TQString loadStyleSheet();
static void openURLRequest(const KURL &url );
void set( const TQString& data );
static void paletteChange();
private:
static KTempFile *m_bgGradientImage;
static KTempFile *m_headerGradientImage;
static KTempFile *m_shadowGradientImage;
static int m_instances;
KAction *m_selectAll;
KAction *m_copy;
private slots:
void enableCopyAction();
void selectAll();
void copyText();
};
#endif /* AMAROK_HTMLVIEW_H */