📄 winamp.cpp
字号:
/*____________________________________________________________________________
FreeAmp - The Free MP3 Player
Copyright (C) 2000 EMusic.com
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., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: winamp.cpp,v 1.6 2000/06/22 15:27:17 elrod Exp $
____________________________________________________________________________*/
#include <string>
using namespace std;
#ifdef WIN32
#include <windows.h>
#else
#include <unistd.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include "config.h"
#include "facontext.h"
#include "errors.h"
#include "utility.h"
#include "winamp.h"
extern "C"
{
ThemeFormat *Initialize(FAContext* context)
{
return new Winamp(context);
}
}
Winamp::Winamp(FAContext *context):ThemeFormat(context)
{
}
Winamp::~Winamp()
{
}
bool Winamp::IsSupportedFormat(string &oDir)
{
string testpath;
struct stat st;
testpath = oDir + string(DIR_MARKER_STR) + string("cbuttons.bmp");
if (-1 == stat(testpath.c_str(), &st))
return false;
testpath = oDir + string(DIR_MARKER_STR) + string("main.bmp");
if (-1 == stat(testpath.c_str(), &st))
return false;
return true;
}
Error Winamp::ConvertToNative(string &oDir)
{
string sourcePath, destPath;
struct stat st;
char *dir = new char[_MAX_PATH];
uint32 len = _MAX_PATH;
m_context->prefs->GetPrefString(kInstallDirPref, dir, &len);
sourcePath = string(dir);
#ifdef unix
sourcePath += string("/freeamp");
#endif
sourcePath += string(DIR_MARKER_STR) + string("plugins");
sourcePath += string(DIR_MARKER_STR) + string("winamp_theme.xml");
destPath = oDir + string(DIR_MARKER_STR) + string("theme.xml");
Error eErr;
eErr = CopyFile(sourcePath.c_str(), destPath.c_str(), false) ?
kError_NoErr : kError_CopyFailed;
sourcePath = oDir + string(DIR_MARKER_STR) + string("nums_ex.bmp");
if (stat(sourcePath.c_str(), &st) == 0) {
destPath = oDir + string(DIR_MARKER_STR) + string("numbers.bmp");
CopyFile(sourcePath.c_str(), destPath.c_str(), false);
}
sourcePath = oDir + string(DIR_MARKER_STR) + string("volbar.bmp");
if (stat(sourcePath.c_str(), &st) == 0) {
destPath = oDir + string(DIR_MARKER_STR) + string("volume.bmp");
if (stat(destPath.c_str(), &st) != 0)
CopyFile(sourcePath.c_str(), destPath.c_str(), false);
}
destPath = oDir + string(DIR_MARKER_STR) + string("balance.bmp");
if (stat(destPath.c_str(), &st) != 0) {
sourcePath = oDir + string(DIR_MARKER_STR) + string("volume.bmp");
CopyFile(sourcePath.c_str(), destPath.c_str(), false);
}
return eErr;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -