repo.or.cz
/
kdelibs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix tricky regression noticed by Vyacheslav Tokarev on Google Reader.
[kdelibs.git]
/
kparts
/
tests
/
ghostview.h
blob
e164668157d0cd5b91c837bc9a7e5573f4ea8952
1
#ifndef __example_h__
2
#define __example_h__
3
4
#include <kparts/mainwindow.h>
5
6
class
Shell
:
public KParts
::
MainWindow
7
{
8
Q_OBJECT
9
public
:
10
Shell
();
11
virtual
~
Shell
();
12
13
void
openUrl
(
const
KUrl
&
url
);
14
15
protected
Q_SLOTS
:
16
void
slotFileOpen
();
17
18
private
:
19
KParts
::
ReadOnlyPart
*
m_gvpart
;
20
};
21
22
#endif