~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to src/documentationpart.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __DOCUMENTATIONPART_H__
2
 
#define __DOCUMENTATIONPART_H__
3
 
 
4
 
#include <kdevhtmlpart.h>
5
 
 
6
 
/**
7
 
HTML documentation part.
8
 
 
9
 
Implements shell-dependent "duplicate" and "open in new window" actions of KDevHTMLPart.
10
 
*/
11
 
class HTMLDocumentationPart : public KDevHTMLPart
12
 
{
13
 
  Q_OBJECT
14
 
 
15
 
public:
16
 
 
17
 
    HTMLDocumentationPart();
18
 
 
19
 
protected slots:
20
 
 
21
 
    virtual void slotDuplicate();
22
 
    virtual void slotOpenInNewWindow(const KURL &url);
23
 
};
24
 
 
25
 
#endif