1 /***************************************************************************
4 begin : Wed Dec 17 2003
5 copyright : (C) 2003 by Jason Wood
6 email : jasonwood@blueyonder.co.uk
7 ***************************************************************************/
9 /***************************************************************************
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
16 ***************************************************************************/
25 Handles the conversion of a GenTime into a nicely formatted string, taking into account things such as drop frame if necessary. Handles multiple formats, such as HH:MM:SS:FF, HH:MM:SS:F, All Frames, All Seconds, etc.
32 enum Formats { HH_MM_SS_FF, HH_MM_SS_HH, Frames, Seconds };
34 explicit Timecode(Formats format = HH_MM_SS_FF, double framesPerSecond = 25);
37 * Set the current timecode format; this is the output format for this timecode.
39 void setFormat(double framesPerSecond, Formats format = HH_MM_SS_FF);
41 Formats format() const {
47 /** Returns the timecode for a given time */
48 QString getDisplayTimecode(const GenTime & time, bool frameDisplay) const;
49 QString getTimecode(const GenTime & time) const;
50 int getDisplayFrameCount(const QString &duration, bool frameDisplay) const;
51 int getFrameCount(const QString &duration) const;
52 static QString getEasyTimecode(const GenTime & time, const double &fps);
53 static QString getStringTimecode(int frames, const double &fps, bool showFrames = false);
54 const QString getDisplayTimecodeFromFrames(int frames, bool frameDisplay) const;
55 const QString getTimecodeFromFrames(int frames) const;
58 const QString mask(const GenTime &t = GenTime()) const;
59 QString reformatSeparators(QString duration) const;
63 bool m_dropFrameTimecode;
64 int m_displayedFramesPerSecond;
67 int m_framesPer10Minutes;
69 const QString getTimecodeHH_MM_SS_FF(const GenTime & time) const;
70 const QString getTimecodeHH_MM_SS_FF(int frames) const;
72 const QString getTimecodeHH_MM_SS_HH(const GenTime & time) const;
73 const QString getTimecodeFrames(const GenTime & time) const;
74 const QString getTimecodeSeconds(const GenTime & time) const;
75 const QString getTimecodeDropFrame(const GenTime & time) const;
76 const QString getTimecodeDropFrame(int framenumber) const;