summaryrefslogtreecommitdiffstats
path: root/kviewshell/kmultipageInterface.h
blob: 0ad6e9149d8252ebeb75d48fa07b90e3edd94f09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// -*- C++ -*-
#ifndef kmultipageINTERFACE_H
#define kmultipageINTERFACE_H
 
#include <dcopobject.h>
 
class kmultipageInterface : virtual public DCOPObject
{
  K_DCOP
       
  k_dcop:
   virtual ASYNC   jumpToReference(const QString& reference) = 0;
   virtual QString name_of_current_file() = 0;
   virtual bool    is_file_loaded(const QString& filename) = 0;
};
 
#endif