OSDN Git Service

Code refactoring: Now "Preferences" and "Recently" used models are in separate classe...
[x264-launcher/x264-launcher.git] / src / model_recently.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2013 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
43         static void initRecentlyUsed(RecentlyUsed *recentlyUsed);
44         static void loadRecentlyUsed(RecentlyUsed *recentlyUsed);
45         static void saveRecentlyUsed(RecentlyUsed *recentlyUsed);
46
47         //Getter
48         QString sourceDirectory(void) { return m_sourceDirectory; }
49         QString outputDirectory(void) { return m_outputDirectory; }
50         int filterIndex(void) { return m_filterIndex; }
51
52         //Setter
53         void setSourceDirectory(const QString &sourceDirectory) { m_sourceDirectory = sourceDirectory; }
54         void setOutputDirectory(const QString &outputDirectory) { m_outputDirectory = outputDirectory; }
55         void setFilterIndex(const int filterIndex) { m_filterIndex = filterIndex; }
56
57 protected:
58         QString m_sourceDirectory;
59         QString m_outputDirectory;
60         int m_filterIndex;
61 };