Bump version + updated changelog.
[simple-x264-launcher.git] / src / model_recently.h
blobc11a4a27ee1e1eaedbf42e6087914ad055d1322a
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2018 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
22 #pragma once
24 #include <QString>
26 static const struct
28 const char *pcExt;
29 const char *pcStr;
31 X264_FILE_TYPE_FILTERS[] =
33 { "mkv", "Matroska Files" },
34 { "mp4", "MPEG-4 Part 14 Container" },
35 { "264", "AVC/H.264 Elementary Stream"},
36 { "hevc", "HEVC/H.265 Elementary Stream"},
39 class RecentlyUsed
41 public:
42 RecentlyUsed(void);
43 ~RecentlyUsed(void);
45 static void initRecentlyUsed(RecentlyUsed *recentlyUsed);
46 static void loadRecentlyUsed(RecentlyUsed *recentlyUsed);
47 static void saveRecentlyUsed(RecentlyUsed *recentlyUsed);
49 //Getter
50 QString sourceDirectory(void) { return m_sourceDirectory; }
51 QString outputDirectory(void) { return m_outputDirectory; }
52 int filterIndex(void) { return m_filterIndex; }
53 int lastUpdateCheck(void) { return m_lastUpdateCheck; }
55 //Setter
56 void setSourceDirectory(const QString &sourceDirectory) { m_sourceDirectory = sourceDirectory; }
57 void setOutputDirectory(const QString &outputDirectory) { m_outputDirectory = outputDirectory; }
58 void setFilterIndex(const int filterIndex) { m_filterIndex = filterIndex; }
59 void setLastUpdateCheck(const int updateCheck) { m_lastUpdateCheck = updateCheck; }
61 protected:
62 QString m_sourceDirectory;
63 QString m_outputDirectory;
64 int m_filterIndex;
65 int m_lastUpdateCheck;