1 package org.catacomb.interlish.structure;
2
3 import java.io.File;
4
5 import org.catacomb.interlish.report.Logger;
6
7
8 public interface MovieOperator {
9
10
11 void reset();
12
13 void start();
14
15 void stop();
16
17 void resume();
18
19 void faster();
20
21 void slower();
22
23 void showFrame(int ifr);
24
25 void pauseDePause();
26
27 int getNFrame();
28
29 void setMovieStateDisplay(MovieStateDisplay msd);
30
31 void record(File f, Logger l);
32
33
34
35 }