~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to konqueror/konq_browseriface.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2008-05-27 12:09:48 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20080527120948-dottsyd5rcwhzd36
Tags: 4:4.0.80-1ubuntu1
* Merge with Debian
 - remove 97_fix_target_link_libraries.diff
 - Add replaces/conflicts on -kde4 packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __konq_browseriface_h__
2
 
#define __konq_browseriface_h__
3
 
 
4
 
#include <kparts/browserinterface.h>
5
 
 
6
 
class KonqView;
7
 
 
8
 
class KonqBrowserInterface : public KParts::BrowserInterface
9
 
{
10
 
    Q_OBJECT
11
 
    Q_PROPERTY( uint historyLength READ historyLength )
12
 
public:
13
 
    KonqBrowserInterface( KonqView *view, const char *name );
14
 
 
15
 
    uint historyLength() const;
16
 
 
17
 
public slots:
18
 
    void goHistory( int );
19
 
 
20
 
private:
21
 
    KonqView *m_view;
22
 
};
23
 
 
24
 
#endif