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

« back to all changes in this revision

Viewing changes to languages/php/phphtmlview.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-05-23 18:39:42 UTC
  • Revision ID: james.westby@ubuntu.com-20060523183942-hucifbvh68k2bwz7
Tags: upstream-3.3.2
Import upstream version 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          phphtmlview.h  -  description
 
3
                             -------------------
 
4
    begin                : Sat May 26 2001
 
5
    copyright            : (C) 2001 by 
 
6
    email                : 
 
7
 ***************************************************************************/
 
8
 
 
9
/***************************************************************************
 
10
 *                                                                         *
 
11
 *   This program is free software; you can redistribute it and/or modify  *
 
12
 *   it under the terms of the GNU General Public License as published by  *
 
13
 *   the Free Software Foundation; either version 2 of the License, or     *
 
14
 *   (at your option) any later version.                                   *
 
15
 *                                                                         *
 
16
 ***************************************************************************/
 
17
 
 
18
#ifndef PHPHTMLVIEW_H
 
19
#define PHPHTMLVIEW_H
 
20
 
 
21
#include <kdevhtmlpart.h>
 
22
 
 
23
/**
 
24
  *@author
 
25
  */
 
26
class PHPSupportPart;
 
27
 
 
28
class PHPHTMLView : public KDevHTMLPart  {
 
29
Q_OBJECT
 
30
public:
 
31
   PHPHTMLView(PHPSupportPart *part);
 
32
   ~PHPHTMLView();
 
33
 
 
34
protected slots:
 
35
    virtual void slotDuplicate();
 
36
    virtual void slotOpenInNewWindow(const KURL &url);
 
37
 
 
38
private:
 
39
    PHPSupportPart *m_part;
 
40
};
 
41
 
 
42
#endif