OSDN Git Service

Happy new year 2014!
[x264-launcher/x264-launcher.git] / src / model_recently.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2014 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.
14 //
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.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 #include <QString>
25
26 static const struct
27 {
28         const char *pcExt;
29         const char *pcStr;
30 }
31 X264_FILE_TYPE_FILTERS[] =
32 {
33         { "mkv", "Matroska Files" },
34         { "mp4", "MPEG-4 Part 14 Container" },
35         { "264", "H.264 Elementary Stream"},
36 };
37
38 class RecentlyUsed
39 {
40 public:
41         RecentlyUsed(void);
42         ~RecentlyUsed(void);
43
44         static void initRecentlyUsed(RecentlyUsed *recentlyUsed);
45         static void loadRecentlyUsed(RecentlyUsed *recentlyUsed);
46         static void saveRecentlyUsed(RecentlyUsed *recentlyUsed);
47
48         //Getter
49         QString sourceDirectory(void) { return m_sourceDirectory; }
50         QString outputDirectory(void) { return m_outputDirectory; }
51         int filterIndex(void)         { return m_filterIndex; }
52         int lastUpdateCheck(void)     { return m_lastUpdateCheck; }
53
54         //Setter
55         void setSourceDirectory(const QString &sourceDirectory) { m_sourceDirectory = sourceDirectory; }
56         void setOutputDirectory(const QString &outputDirectory) { m_outputDirectory = outputDirectory; }
57         void setFilterIndex(const int filterIndex)              { m_filterIndex = filterIndex; }
58         void setLastUpdateCheck(const int updateCheck)          { m_lastUpdateCheck = updateCheck; }
59
60 protected:
61         QString m_sourceDirectory;
62         QString m_outputDirectory;
63         int m_filterIndex;
64         int m_lastUpdateCheck;
65 };