summaryrefslogtreecommitdiffstats
path: root/tdeparts/tests/ghostview.h
blob: 2974ded5e8f54628ed701df0473664b230276d14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __example_h__
#define __example_h__

#include <tdeparts/mainwindow.h>

class Shell : public KParts::MainWindow
{
  Q_OBJECT
public:
  Shell();
  virtual ~Shell();

  void openURL( const KURL & url );

protected slots:
  void slotFileOpen();

private:
  KParts::ReadOnlyPart *m_gvpart;
};

#endif