repo.or.cz
/
cinelerra_cv
/
mob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r123: Merged HEAD and TEST. New stuff shall be committed to HEAD from now on.
[cinelerra_cv/mob.git]
/
plugins
/
dot
/
dotwindow.h
blob
82b7de77adec10c7c74b99288a90a3d3184e1eb4
1
#ifndef DOTWINDOW_H
2
#define DOTWINDOW_H
3
4
#include
"guicast.h"
5
6
class
DotThread
;
7
class
DotWindow
;
8
9
#include
"filexml.h"
10
#include
"mutex.h"
11
#include
"dot.h"
12
13
PLUGIN_THREAD_HEADER
(
DotMain
,
DotThread
,
DotWindow
)
14
15
class
DotWindow
:
public
BC_Window
16
{
17
public
:
18
DotWindow
(
DotMain
*
client
,
int
x
,
int
y
);
19
~
DotWindow
();
20
21
int
create_objects
();
22
int
close_event
();
23
24
DotMain
*
client
;
25
};
26
27
28
29
30
31
32
#endif