repo.or.cz
/
cinelerra_cv.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r663: This commit was generated by cvs2svn to compensate for changes in r662,
[cinelerra_cv.git]
/
cinelerra
/
samplescroll.h
blob
59d5b08137f76a24d56346bd63f8bd2348ca5382
1
#ifndef MAINXSCROLL_H
2
#define MAINXSCROLL_H
3
4
#include
"guicast.h"
5
#include
"mwindow.inc"
6
#include
"mwindowgui.inc"
7
8
class
SampleScroll
:
public
BC_ScrollBar
9
{
10
public
:
11
SampleScroll
(
MWindow
*
mwindow
,
MWindowGUI
*
gui
,
int
x
,
int
y
,
int
w
);
12
~
SampleScroll
();
13
14
int
create_objects
();
15
int
flip_vertical
();
16
int
in_use
();
17
int
resize_event
();
18
int
set_position
();
19
int
handle_event
();
20
double
oldposition
;
21
22
private
:
23
MWindowGUI
*
gui
;
24
MWindow
*
mwindow
;
25
};
26
27
28
29
#endif