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
/
threadloader.h
blob
3bfc41fa1e4a520f871c27ee40643152b4446d4b
1
#ifndef THREADLOADER_H
2
#define THREADLOADER_H
3
4
#include
"mwindow.inc"
5
#include
"thread.h"
6
7
// ================================= loads files as a thread
8
9
class
ThreadLoader
:
public
Thread
10
{
11
public
:
12
ThreadLoader
(
MWindow
*
mwindow
);
13
~
ThreadLoader
();
14
15
int
set_paths
(
ArrayList
<
char
*> *
paths
);
16
void
run
();
17
MWindow
*
mwindow
;
18
ArrayList
<
char
*> *
paths
;
19
};
20
21
#endif