#ifndef _ScriptInfo_h #define _ScriptInfo_h /* * subtitle editor * * http://kitone.free.fr/subtitleeditor/ * * Copyright @ 2005-2006, kitone * * Contact: kitone at free dot fr * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * See gpl.txt for more information regarding the GNU General Public License. * * * \file * \brief * \author kitone (kitone at free dot fr) */ #include /* * principalement utiliser par SSA/ASS */ class ScriptInfo { public: ScriptInfo(); public: Glib::ustring Title; // courte description du script Glib::ustring OriginalScript; // le(s) auteur(s) du script Glib::ustring OriginalTranslation; Glib::ustring OriginalEditing; Glib::ustring OriginalTiming; Glib::ustring SynchPoint; Glib::ustring ScriptUpdatedBy; Glib::ustring UpdateDetails; Glib::ustring ScriptType; // version du format SSA : ex: "V4.00" (ASS="V4.00+") Glib::ustring Collisions; Glib::ustring PlayResY; Glib::ustring PlayResX; Glib::ustring PlayDepth; Glib::ustring Timer; // vitesse de lecture du script en % Glib::ustring Style; Glib::ustring Dialogue; Glib::ustring Comment; Glib::ustring Picture; Glib::ustring Sound; Glib::ustring Movie; Glib::ustring Command; Glib::ustring WrapStyle; }; #endif//_ScriptInfo_h