blob: 84f170235d1c48173c6ccf13c4161798f2cdeaa2 (
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 <tdevhtmlpart.h>
/**
HTML documentation part.
Implements shell-dependent "duplicate" and "open in new window" actions of TDevHTMLPart.
*/
class HTMLDocumentationPart : public TDevHTMLPart
{
  Q_OBJECT
  
public:
    HTMLDocumentationPart();
protected slots:
    virtual void slotDuplicate();
    virtual void slotOpenInNewWindow(const KURL &url);
};
#endif
 |