OSDN Git Service

Some more tweaks to the new About dialog.
[lamexp/LameXP.git] / src / Global.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2012 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 //Target version
25 #include "Targetver.h"
26
27 //inlcude C standard library
28 #include <stdio.h>
29 #include <tchar.h>
30
31 //Windows includes
32 #define NOMINMAX
33 #define WIN32_LEAN_AND_MEAN
34 #include <Windows.h>
35
36 //Visual Leaks Detector
37 #include <vld.h>
38
39 //Declarations
40 class QString;
41 class QStringList;
42 class QDate;
43 class QTime;
44 class QIcon;
45 class QWidget;
46 class LockedFile;
47 enum QtMsgType;
48
49 //Types definitions
50 typedef struct
51 {
52         int family;
53         int model;
54         int stepping;
55         int count;
56         bool x64;
57         bool mmx;
58         bool sse;
59         bool sse2;
60         bool sse3;
61         bool ssse3;
62         char vendor[0x40];
63         char brand[0x40];
64         bool intel;
65 }
66 lamexp_cpu_t;
67
68 //Known folders
69 typedef enum
70 {
71         lamexp_folder_localappdata = 0,
72         lamexp_folder_programfiles = 2,
73         lamexp_folder_systemfolder = 3
74 }
75 lamexp_known_folder_t;
76
77 //LameXP user-defined events
78 typedef enum
79 {
80         lamexp_event = 1000,           /*QEvent::User*/
81         lamexp_event_queryendsession = lamexp_event + 666,
82         lamexp_event_endsession      = lamexp_event + 667
83 }
84 lamexp_event_t;
85
86 //OS version number
87 typedef struct
88 {
89         unsigned int versionMajor;
90         unsigned int versionMinor;
91 }
92 lamexp_os_version_t;
93
94 //LameXP version info
95 unsigned int lamexp_version_major(void);
96 unsigned int lamexp_version_minor(void);
97 unsigned int lamexp_version_build(void);
98 const QDate &lamexp_version_date(void);
99 const char *lamexp_version_time(void);
100 const char *lamexp_version_release(void);
101 bool lamexp_version_demo(void);
102 const char *lamexp_version_compiler(void);
103 const char *lamexp_version_arch(void);
104 QDate lamexp_version_expires(void);
105 unsigned int lamexp_toolver_neroaac(void);
106 unsigned int lamexp_toolver_fhgaacenc(void);
107 unsigned int lamexp_toolver_qaacenc(void);
108 unsigned int lamexp_toolver_coreaudio(void);
109 const char *lamexp_website_url(void);
110 const char *lamexp_support_url(void);
111 const lamexp_os_version_t *lamexp_get_os_version(void);
112 bool lamexp_detect_wine(void);
113
114 //Public functions
115 void lamexp_init_console(const QStringList &argv);
116 bool lamexp_init_qt(int argc, char* argv[]);
117 int lamexp_init_ipc(void);
118 LONG WINAPI lamexp_exception_handler(__in struct _EXCEPTION_POINTERS *ExceptionInfo);
119 void lamexp_invalid_param_handler(const wchar_t*, const wchar_t*, const wchar_t*, unsigned int, uintptr_t);
120 void lamexp_message_handler(QtMsgType type, const char *msg);
121 void lamexp_register_tool(const QString &toolName, LockedFile *file, unsigned int version = 0);
122 bool lamexp_check_tool(const QString &toolName);
123 const QString lamexp_lookup_tool(const QString &toolName);
124 unsigned int lamexp_tool_version(const QString &toolName);
125 void lamexp_finalization(void);
126 QString lamexp_rand_str(void);
127 const QString &lamexp_temp_folder2(void);
128 void lamexp_ipc_read(unsigned int *command, char* message, size_t buffSize);
129 void lamexp_ipc_send(unsigned int command, const char* message);
130 lamexp_cpu_t lamexp_detect_cpu_features(const QStringList &argv);
131 bool lamexp_portable_mode(void);
132 bool lamexp_shutdown_computer(const QString &message, const unsigned long timeout = 30, const bool forceShutdown = true, const bool hibernate = false);
133 bool lamexp_is_hibernation_supported(void);
134 QIcon lamexp_app_icon(const QDate *date = NULL, const QTime *time = NULL);
135 const QStringList &lamexp_arguments(void);
136
137 //Translation support
138 QStringList lamexp_query_translations(void);
139 bool lamexp_translation_register(const QString &langId, const QString &qmFile, const QString &langName, unsigned int &systemId, unsigned int &country);
140 QString lamexp_translation_name(const QString &language);
141 unsigned int lamexp_translation_sysid(const QString &langId);
142 unsigned int lamexp_translation_country(const QString &langId);
143 bool lamexp_install_translator_from_file(const QString &qmFile);
144 bool lamexp_install_translator(const QString &language);
145 QStringList lamexp_available_codepages(bool noAliases = true);
146 static const char* LAMEXP_DEFAULT_LANGID = "en";
147
148 //Auxiliary functions
149 bool lamexp_clean_folder(const QString &folderPath);
150 const QString lamexp_version2string(const QString &pattern, unsigned int version, const QString &defaultText);
151 const QString &lamexp_known_folder(lamexp_known_folder_t folder_id);
152 unsigned __int64 lamexp_free_diskspace(const QString &path, bool *ok = NULL);
153 bool lamexp_remove_file(const QString &filename);
154 bool lamexp_themes_enabled(void);
155 void lamexp_blink_window(QWidget *poWindow, unsigned int count = 10, unsigned int delay = 150);
156 const QString lamexp_clean_filename(const QString &str);
157 const QString lamexp_clean_filepath(const QString &str);
158
159 //Debug-only functions
160 SIZE_T lamexp_dbg_private_bytes(void);
161
162 //Helper macros
163 #define LAMEXP_DELETE(PTR) do { if(PTR) { delete PTR; PTR = NULL; } } while(0)
164 #define LAMEXP_DELETE_ARRAY(PTR) do { if(PTR) { delete [] PTR; PTR = NULL; } } while(0)
165 #define LAMEXP_SAFE_FREE(PTR) do { if(PTR) { free((void*) PTR); PTR = NULL; } } while(0)
166 #define LAMEXP_CLOSE(HANDLE) do { if(HANDLE != NULL && HANDLE != INVALID_HANDLE_VALUE) { CloseHandle(HANDLE); HANDLE = NULL; } } while(0)
167 #define LAMEXP_MIN_OS_VER(VER_INFO, VER_MAJ, VER_MIN) (((VER_INFO)->versionMajor > (VER_MAJ)) || (((VER_INFO)->versionMajor == (VER_MAJ)) && ((VER_INFO)->versionMinor >= (VER_MIN))))
168 #define LAMEXP_MAX_OS_VER(VER_INFO, VER_MAJ, VER_MIN) (((VER_INFO)->versionMajor < (VER_MAJ)) || (((VER_INFO)->versionMajor == (VER_MAJ)) && ((VER_INFO)->versionMinor <= (VER_MIN))))
169 #define LAMEXP_EQL_OS_VER(VER_INFO, VER_MAJ, VER_MIN) (((VER_INFO)->versionMajor == (VER_MAJ)) && ((VER_INFO)->versionMinor == (VER_MIN)))
170 #define QWCHAR(STR) reinterpret_cast<const wchar_t*>(STR.utf16())
171 #define WCHAR2QSTR(STR) QString::fromUtf16(reinterpret_cast<const unsigned short*>(STR))
172 #define LAMEXP_BOOL2STR(X) (X ? "1" : "0")
173 #define LAMEXP_MAKE_STRING_EX(X) #X
174 #define LAMEXP_MAKE_STRING(X) LAMEXP_MAKE_STRING_EX(X)
175 #define LAMEXP_COMPILER_WARNING(TXT) __pragma(message(__FILE__ "(" LAMEXP_MAKE_STRING(__LINE__) ") : warning: " TXT))
176 #define NOBR(STR) (QString("<nobr>%1</nobr>").arg((STR)).replace("-", "&minus;"))
177
178 //Output Qt debug message (Unicode-safe versions)
179 /*
180 #define qDebug64(FORMAT, ...) qDebug("@BASE64@%s", QString(FORMAT).arg(__VA_ARGS__).toUtf8().toBase64().constData());
181 #define qWarning64(FORMAT, ...) qWarning("@BASE64@%s", QString(FORMAT).arg(__VA_ARGS__).toUtf8().toBase64().constData());
182 #define qFatal64(FORMAT, ...) qFatal("@BASE64@%s", QString(FORMAT).arg(__VA_ARGS__).toUtf8().toBase64().constData());
183 */
184
185 //Check for debug build
186 #if defined(_DEBUG) && defined(QT_DEBUG) && !defined(NDEBUG) && !defined(QT_NO_DEBUG)
187         #define LAMEXP_DEBUG (1)
188 #elif defined(NDEBUG) && defined(QT_NO_DEBUG) && !defined(_DEBUG) && !defined(QT_DEBUG)
189         #define LAMEXP_DEBUG (0)
190 #else
191         #error Inconsistent debug defines detected!
192 #endif
193
194 //Memory check
195 #if LAMEXP_DEBUG
196 #define LAMEXP_MEMORY_CHECK(FUNC, RETV,  ...) do \
197 { \
198         SIZE_T _privateBytesBefore = lamexp_dbg_private_bytes(); \
199         RETV = FUNC(__VA_ARGS__); \
200         SIZE_T _privateBytesLeak = (lamexp_dbg_private_bytes() - _privateBytesBefore) / 1024; \
201         if(_privateBytesLeak > 0) { \
202                 char _buffer[128]; \
203                 _snprintf_s(_buffer, 128, _TRUNCATE, "Memory leak: Lost %u KiloBytes of PrivateUsage memory.\n", _privateBytesLeak); \
204                 OutputDebugStringA("----------\n"); \
205                 OutputDebugStringA(_buffer); \
206                 OutputDebugStringA("----------\n"); \
207         } \
208 } \
209 while(0)
210 #else
211 #define LAMEXP_MEMORY_CHECK(FUNC, RETV,  ...) do \
212 { \
213         RETV = __noop(__VA_ARGS__); \
214 } \
215 while(0)
216 #endif
217
218 //Check for CPU-compatibility options
219 #if !defined(_M_X64) && defined(_M_IX86_FP)
220         #if (_M_IX86_FP != 0)
221                 #error We should not enabled SSE or SSE2 in release builds!
222         #endif
223 #endif