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.
tdevelop/src/documentationpart.h

27 lines
439 B

#ifndef __DOCUMENTATIONPART_H__
#define __DOCUMENTATIONPART_H__
#include <kdevhtmlpart.h>
/**
HTML documentation part.
Implements shell-dependent "duplicate" and "open in new window" actions of KDevHTMLPart.
*/
class HTMLDocumentationPart : public KDevHTMLPart
{
TQ_OBJECT
public:
HTMLDocumentationPart();
protected slots:
virtual void slotDuplicate();
virtual void slotOpenInNewWindow(const KURL &url);
};
#endif