repo.or.cz
/
cinelerra_cv
/
ct.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r1014: Enable horizontal scrolling with the mouse wheel by pressing Ctrl.
[cinelerra_cv/ct.git]
/
cinelerra
/
assetremove.h
blob
ae0a8852745ccb16086d29a53c2b8f1010acb7b9
1
#ifndef ASSETREMOVE_H
2
#define ASSETREMOVE_H
3
4
#include
"guicast.h"
5
#include
"mwindow.inc"
6
#include
"thread.h"
7
8
9
class
AssetRemoveWindow
:
public
BC_Window
10
{
11
public
:
12
AssetRemoveWindow
(
MWindow
*
mwindow
);
13
void
create_objects
();
14
MWindow
*
mwindow
;
15
};
16
class
AssetRemoveThread
:
public
Thread
17
{
18
public
:
19
AssetRemoveThread
(
MWindow
*
mwindow
);
20
void
run
();
21
MWindow
*
mwindow
;
22
};
23
24
25
#endif