blob: dd86ce8af3f03cc236c00c4f189bd50435bdfb9c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 | #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
{
  Q_OBJECT
  
public:
    HTMLDocumentationPart();
protected slots:
    virtual void slotDuplicate();
    virtual void slotOpenInNewWindow(const KURL &url);
};
#endif
 |