Olive
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
marker.h
Go to the documentation of this file.
1 /***
2 
3  Olive - Non-Linear Video Editor
4  Copyright (C) 2019 Olive Team
5 
6  This program is free software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
10 
11  This program is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with this program. If not, see <http://www.gnu.org/licenses/>.
18 
19 ***/
20 
21 #ifndef MARKER_H
22 #define MARKER_H
23 
24 #define MARKER_SIZE 4
25 
26 #include <QString>
27 #include <QPainter>
28 #include <memory>
29 
30 class Sequence;
31 using SequencePtr = std::shared_ptr<Sequence>;
32 
33 struct Marker {
34  long frame;
35  QString name;
36 };
37 
38 void draw_marker(QPainter& p, int x, int y, int bottom, bool selected);
39 
40 void set_marker_internal(Sequence *seq, const QVector<int>& clips);
41 void set_marker_internal(Sequence* seq);
42 
43 #endif // MARKER_H
long frame
Definition: marker.h:34
void draw_marker(QPainter &p, int x, int y, int bottom, bool selected)
Definition: marker.cpp:35
Definition: marker.h:33
Definition: sequence.h:31
void set_marker_internal(Sequence *seq, const QVector< int > &clips)
Definition: marker.cpp:52
std::shared_ptr< Sequence > SequencePtr
Definition: media.h:38
QString name
Definition: marker.h:35