Note: this does not use the cursor SVGs in app/ui/cursors since I was never really satisfied with them. They're kept for posterity for the time being.
17 lines
274 B
C++
17 lines
274 B
C++
#ifndef TIMELINECOMMON_H
|
|
#define TIMELINECOMMON_H
|
|
|
|
class Timeline {
|
|
public:
|
|
enum MovementMode {
|
|
kNone,
|
|
kMove,
|
|
kTrimIn,
|
|
kTrimOut
|
|
};
|
|
|
|
static bool IsATrimMode(MovementMode mode) {return mode == kTrimIn || mode == kTrimOut;}
|
|
};
|
|
|
|
#endif // TIMELINECOMMON_H
|