2006-05-05 20:52:09 +02:00
|
|
|
// Copyright (c) 2005-2006, Rodrigo Braz Monteiro
|
2006-01-16 22:02:54 +01:00
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file utils.cpp
|
|
|
|
/// @brief Misc. utility functions
|
|
|
|
/// @ingroup utility
|
|
|
|
///
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2012-04-04 00:44:40 +02:00
|
|
|
#include "utils.h"
|
|
|
|
|
2009-09-10 15:06:40 +02:00
|
|
|
#ifdef __UNIX__
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2012-04-04 00:44:40 +02:00
|
|
|
#include <map>
|
2009-09-10 15:06:40 +02:00
|
|
|
|
2012-11-19 06:10:36 +01:00
|
|
|
#include <wx/clipbrd.h>
|
2012-04-04 00:44:40 +02:00
|
|
|
#include <wx/dir.h>
|
2006-01-16 22:02:54 +01:00
|
|
|
#include <wx/filename.h>
|
2009-01-04 12:45:06 +01:00
|
|
|
#include <wx/stdpaths.h>
|
2011-10-28 22:15:10 +02:00
|
|
|
#include <wx/window.h>
|
2009-09-10 15:06:40 +02:00
|
|
|
|
2010-08-12 16:36:09 +02:00
|
|
|
#include <libaegisub/log.h>
|
|
|
|
|
2009-01-04 12:45:06 +01:00
|
|
|
#ifdef __APPLE__
|
2010-08-14 19:42:37 +02:00
|
|
|
#include <libaegisub/util_osx.h>
|
2009-01-04 12:45:06 +01:00
|
|
|
#endif
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-04-04 00:44:40 +02:00
|
|
|
#include "compat.h"
|
2012-06-08 23:20:21 +02:00
|
|
|
#include "main.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
|
2012-11-26 04:06:18 +01:00
|
|
|
wxDEFINE_EVENT(EVT_CALL_THUNK, wxThreadEvent);
|
|
|
|
|
2012-03-27 02:49:33 +02:00
|
|
|
wxString MakeRelativePath(wxString _path, wxString reference) {
|
|
|
|
if (_path.empty() || _path[0] == '?') return _path;
|
2006-01-16 22:02:54 +01:00
|
|
|
wxFileName path(_path);
|
|
|
|
wxFileName refPath(reference);
|
|
|
|
path.MakeRelativeTo(refPath.GetPath());
|
|
|
|
return path.GetFullPath();
|
|
|
|
}
|
|
|
|
|
|
|
|
wxString DecodeRelativePath(wxString _path,wxString reference) {
|
2012-03-27 02:49:33 +02:00
|
|
|
if (_path.empty() || _path[0] == '?') return _path;
|
2006-01-16 22:02:54 +01:00
|
|
|
wxFileName path(_path);
|
|
|
|
wxFileName refPath(reference);
|
|
|
|
if (!path.IsAbsolute()) path.MakeAbsolute(refPath.GetPath());
|
2007-01-01 05:15:54 +01:00
|
|
|
#ifdef __UNIX__
|
2006-12-28 23:31:33 +01:00
|
|
|
return path.GetFullPath(wxPATH_UNIX); // also works on windows
|
2007-01-01 05:15:54 +01:00
|
|
|
// No, it doesn't, this ommits drive letter in Windows. ~ amz
|
|
|
|
#else
|
|
|
|
return path.GetFullPath();
|
|
|
|
#endif
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2009-04-06 22:01:42 +02:00
|
|
|
wxString AegiFloatToString(double value) {
|
2011-09-28 21:43:11 +02:00
|
|
|
return wxString::Format("%g",value);
|
2006-04-04 22:41:09 +02:00
|
|
|
}
|
|
|
|
|
2009-04-06 22:01:42 +02:00
|
|
|
wxString AegiIntegerToString(int value) {
|
2011-09-28 21:43:11 +02:00
|
|
|
return wxString::Format("%i",value);
|
2006-04-04 22:41:09 +02:00
|
|
|
}
|
2006-07-01 04:27:37 +02:00
|
|
|
|
2012-03-25 06:05:06 +02:00
|
|
|
/// @brief There shall be no kiB, MiB stuff here Pretty reading of size
|
2006-07-01 04:27:37 +02:00
|
|
|
wxString PrettySize(int bytes) {
|
2012-03-27 02:49:43 +02:00
|
|
|
const char *suffix[] = { "", "kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB" };
|
2006-07-01 04:27:37 +02:00
|
|
|
|
|
|
|
// Set size
|
2012-10-15 06:37:14 +02:00
|
|
|
size_t i = 0;
|
2006-07-01 04:27:37 +02:00
|
|
|
double size = bytes;
|
2012-10-15 06:37:14 +02:00
|
|
|
while (size > 1024 && i + 1 < sizeof(suffix) / sizeof(suffix[0])) {
|
2012-03-27 02:49:43 +02:00
|
|
|
size /= 1024.0;
|
2006-07-01 04:27:37 +02:00
|
|
|
i++;
|
|
|
|
}
|
2012-03-25 06:05:06 +02:00
|
|
|
|
2006-07-01 04:27:37 +02:00
|
|
|
// Set number of decimal places
|
2012-03-27 02:49:43 +02:00
|
|
|
const char *fmt = "%.0f";
|
|
|
|
if (size < 10)
|
|
|
|
fmt = "%.2f";
|
|
|
|
else if (size < 100)
|
|
|
|
fmt = "%1.f";
|
|
|
|
return wxString::Format(fmt, size) + " " + suffix[i];
|
2006-07-01 04:27:37 +02:00
|
|
|
}
|
2007-01-11 06:33:36 +01:00
|
|
|
|
2007-01-21 07:30:19 +01:00
|
|
|
int SmallestPowerOf2(int x) {
|
|
|
|
x--;
|
|
|
|
x |= (x >> 1);
|
|
|
|
x |= (x >> 2);
|
|
|
|
x |= (x >> 4);
|
|
|
|
x |= (x >> 8);
|
|
|
|
x |= (x >> 16);
|
|
|
|
x++;
|
|
|
|
return x;
|
|
|
|
}
|
2007-04-14 17:26:46 +02:00
|
|
|
|
2009-06-25 00:22:45 +02:00
|
|
|
bool IsWhitespace(wchar_t c)
|
|
|
|
{
|
|
|
|
const wchar_t whitespaces[] = {
|
|
|
|
// http://en.wikipedia.org/wiki/Space_(punctuation)#Table_of_spaces
|
|
|
|
0x0009, 0x000A, 0x000B, 0x000C, 0x000D, 0x0020, 0x0085, 0x00A0,
|
|
|
|
0x1680, 0x180E, 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005,
|
|
|
|
0x2006, 0x2007, 0x2008, 0x2009, 0x200A, 0x2028, 0x2029, 0x202F,
|
|
|
|
0x025F, 0x3000, 0xFEFF
|
|
|
|
};
|
|
|
|
const size_t num_chars = sizeof(whitespaces) / sizeof(whitespaces[0]);
|
2012-03-27 02:49:24 +02:00
|
|
|
return std::binary_search(whitespaces, whitespaces + num_chars, c);
|
2009-06-25 00:22:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool StringEmptyOrWhitespace(const wxString &str)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < str.size(); ++i)
|
|
|
|
if (!IsWhitespace(str[i]))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
2007-04-14 17:26:46 +02:00
|
|
|
}
|
2007-04-21 00:17:42 +02:00
|
|
|
|
2009-04-06 22:01:42 +02:00
|
|
|
int AegiStringToInt(const wxString &str,int start,int end) {
|
2007-04-21 00:17:42 +02:00
|
|
|
// Initialize to zero and get length if end set to -1
|
|
|
|
int sign = 1;
|
|
|
|
int value = 0;
|
|
|
|
if (end == -1) end = str.Length();
|
|
|
|
|
2008-03-13 19:55:09 +01:00
|
|
|
for (int pos=start;pos<end;pos++) {
|
2007-04-21 00:17:42 +02:00
|
|
|
// Get value and check if it's a number
|
|
|
|
int val = (int)(str[pos]);
|
2011-09-28 21:43:11 +02:00
|
|
|
if (val == ' ' || val == '\t') continue;
|
|
|
|
if (val == '-') sign = -1;
|
|
|
|
if (val < '0' || val > '9') break;
|
2007-04-21 00:17:42 +02:00
|
|
|
|
|
|
|
// Shift value to next decimal place and increment the value just read
|
2011-09-28 21:43:11 +02:00
|
|
|
value = value * 10 + (val - '0');
|
2007-04-21 00:17:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return value*sign;
|
|
|
|
}
|
|
|
|
|
2009-04-06 22:01:42 +02:00
|
|
|
int AegiStringToFix(const wxString &str,size_t decimalPlaces,int start,int end) {
|
2007-04-21 00:17:42 +02:00
|
|
|
// Parts of the number
|
|
|
|
int sign = 1;
|
|
|
|
int major = 0;
|
|
|
|
int minor = 0;
|
|
|
|
if (end == -1) end = str.Length();
|
|
|
|
bool inMinor = false;
|
|
|
|
int *dst = &major;
|
|
|
|
size_t mCount = 0;
|
|
|
|
|
2008-03-13 19:55:09 +01:00
|
|
|
for (int pos=start;pos<end;pos++) {
|
2007-04-21 00:17:42 +02:00
|
|
|
// Get value and check if it's a number
|
|
|
|
int val = (int)(str[pos]);
|
2011-09-28 21:43:11 +02:00
|
|
|
if (val == ' ' || val == '\t') continue;
|
|
|
|
if (val == '-') sign = -1;
|
2007-04-21 00:17:42 +02:00
|
|
|
|
|
|
|
// Switch to minor
|
2011-09-28 21:43:11 +02:00
|
|
|
if (val == '.' || val == ',') {
|
2007-04-21 00:17:42 +02:00
|
|
|
if (inMinor) break;
|
|
|
|
inMinor = true;
|
|
|
|
dst = &minor;
|
|
|
|
mCount = 0;
|
|
|
|
continue;
|
|
|
|
}
|
2011-09-28 21:43:11 +02:00
|
|
|
if (val < '0' || val > '9') break;
|
|
|
|
*dst = (*dst * 10) + (val - '0');
|
2007-04-21 00:17:42 +02:00
|
|
|
mCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change minor to have the right number of decimal places
|
|
|
|
while (mCount > decimalPlaces) {
|
|
|
|
minor /= 10;
|
|
|
|
mCount--;
|
|
|
|
}
|
|
|
|
while (mCount < decimalPlaces) {
|
|
|
|
minor *= 10;
|
|
|
|
mCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shift major and return
|
|
|
|
for (size_t i=0;i<decimalPlaces;i++) major *= 10;
|
|
|
|
return (major + minor)*sign;
|
|
|
|
}
|
2007-07-05 01:09:40 +02:00
|
|
|
|
2009-01-04 12:45:06 +01:00
|
|
|
void RestartAegisub() {
|
2012-06-08 23:20:21 +02:00
|
|
|
config::opt->Flush();
|
|
|
|
|
2009-01-04 12:45:06 +01:00
|
|
|
#if defined(__WXMSW__)
|
|
|
|
wxStandardPaths stand;
|
2011-09-28 21:43:11 +02:00
|
|
|
wxExecute("\"" + stand.GetExecutablePath() + "\"");
|
2009-01-04 12:45:06 +01:00
|
|
|
#elif defined(__WXMAC__)
|
2012-06-12 05:13:49 +02:00
|
|
|
std::string bundle_path = agi::util::OSX_GetBundlePath();
|
|
|
|
std::string helper_path = agi::util::OSX_GetBundleAuxillaryExecutablePath("restart-helper");
|
|
|
|
if (bundle_path.empty() || helper_path.empty()) return;
|
|
|
|
|
|
|
|
wxString exec = wxString::Format("\"%s\" /usr/bin/open -n \"%s\"'", lagi_wxString(helper_path), lagi_wxString(bundle_path));
|
2010-06-09 01:21:39 +02:00
|
|
|
LOG_I("util/restart/exec") << exec;
|
2010-01-21 01:26:45 +01:00
|
|
|
wxExecute(exec);
|
2009-01-04 12:45:06 +01:00
|
|
|
#else
|
2009-01-12 22:26:44 +01:00
|
|
|
wxStandardPaths stand;
|
|
|
|
wxExecute(stand.GetExecutablePath());
|
2009-01-04 12:45:06 +01:00
|
|
|
#endif
|
|
|
|
}
|
2009-07-29 07:43:02 +02:00
|
|
|
|
2011-10-25 21:40:45 +02:00
|
|
|
bool ForwardMouseWheelEvent(wxWindow *source, wxMouseEvent &evt) {
|
|
|
|
wxWindow *target = wxFindWindowAtPoint(wxGetMousePosition());
|
|
|
|
if (!target || target == source) return true;
|
|
|
|
|
|
|
|
// If the mouse is over a parent of the source window just pretend it's
|
|
|
|
// over the source window, so that the mouse wheel works on borders and such
|
|
|
|
wxWindow *parent = source->GetParent();
|
|
|
|
while (parent && parent != target) parent = parent->GetParent();
|
|
|
|
if (parent == target) return true;
|
|
|
|
|
|
|
|
// Otherwise send it to the new target
|
|
|
|
target->GetEventHandler()->ProcessEvent(evt);
|
|
|
|
evt.Skip(false);
|
|
|
|
return false;
|
|
|
|
}
|
2012-04-04 00:44:40 +02:00
|
|
|
|
2012-10-25 17:13:13 +02:00
|
|
|
wxString GetClipboard() {
|
|
|
|
wxString data;
|
|
|
|
wxClipboard *cb = wxClipboard::Get();
|
|
|
|
if (cb->Open()) {
|
|
|
|
if (cb->IsSupported(wxDF_TEXT)) {
|
|
|
|
wxTextDataObject raw_data;
|
|
|
|
cb->GetData(raw_data);
|
|
|
|
data = raw_data.GetText();
|
|
|
|
}
|
|
|
|
cb->Close();
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetClipboard(wxString const& new_data) {
|
|
|
|
wxClipboard *cb = wxClipboard::Get();
|
|
|
|
if (cb->Open()) {
|
|
|
|
cb->SetData(new wxTextDataObject(new_data));
|
|
|
|
cb->Close();
|
|
|
|
cb->Flush();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetClipboard(wxBitmap const& new_data) {
|
|
|
|
wxClipboard *cb = wxClipboard::Get();
|
|
|
|
if (cb->Open()) {
|
|
|
|
cb->SetData(new wxBitmapDataObject(new_data));
|
|
|
|
cb->Close();
|
|
|
|
cb->Flush();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-04 00:44:40 +02:00
|
|
|
namespace {
|
|
|
|
class cache_cleaner : public wxThread {
|
|
|
|
wxString directory;
|
|
|
|
wxString file_type;
|
|
|
|
int64_t max_size;
|
|
|
|
size_t max_files;
|
|
|
|
|
|
|
|
ExitCode Entry() {
|
|
|
|
static wxMutex cleaning_mutex;
|
|
|
|
wxMutexLocker lock(cleaning_mutex);
|
|
|
|
|
|
|
|
if (!lock.IsOk()) {
|
|
|
|
LOG_D("utils/clean_cache") << "cleaning already in progress, thread exiting";
|
|
|
|
return (ExitCode)1;
|
|
|
|
}
|
|
|
|
|
|
|
|
wxDir cachedir;
|
|
|
|
if (!cachedir.Open(directory)) {
|
|
|
|
LOG_D("utils/clean_cache") << "couldn't open cache directory " << STD_STR(directory);
|
|
|
|
return (wxThread::ExitCode)1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// sleep for a bit so we (hopefully) don't thrash the disk too much while indexing is in progress
|
|
|
|
wxThread::This()->Sleep(2000);
|
|
|
|
|
|
|
|
if (!cachedir.HasFiles(file_type)) {
|
|
|
|
LOG_D("utils/clean_cache") << "no files of the checked type in directory, exiting";
|
|
|
|
return (wxThread::ExitCode)0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// unusually paranoid sanity check
|
|
|
|
// (someone might have deleted the file(s) after we did HasFiles() above; does wxDir.Open() lock the dir?)
|
|
|
|
wxString curfn_str;
|
|
|
|
if (!cachedir.GetFirst(&curfn_str, file_type, wxDIR_FILES)) {
|
|
|
|
LOG_D("utils/clean_cache") << "undefined error";
|
|
|
|
return (wxThread::ExitCode)1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t total_size = 0;
|
|
|
|
std::multimap<int64_t,wxFileName> cachefiles;
|
|
|
|
do {
|
|
|
|
wxFileName curfn(directory, curfn_str);
|
|
|
|
wxDateTime curatime;
|
2012-11-13 17:51:01 +01:00
|
|
|
curfn.GetTimes(&curatime, nullptr, nullptr);
|
2012-04-04 00:44:40 +02:00
|
|
|
cachefiles.insert(std::make_pair(curatime.GetTicks(), curfn));
|
|
|
|
total_size += curfn.GetSize().GetValue();
|
|
|
|
|
|
|
|
wxThread::This()->Sleep(250);
|
|
|
|
} while (cachedir.GetNext(&curfn_str));
|
|
|
|
|
|
|
|
if (cachefiles.size() <= max_files && total_size <= max_size) {
|
|
|
|
LOG_D("utils/clean_cache")
|
|
|
|
<< "cache does not need cleaning (maxsize=" << max_size
|
|
|
|
<< ", cursize=" << total_size
|
|
|
|
<< "; maxfiles=" << max_files
|
|
|
|
<< ", numfiles=" << cachefiles.size()
|
|
|
|
<< "), exiting";
|
|
|
|
return (wxThread::ExitCode)0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int deleted = 0;
|
2012-11-04 04:53:03 +01:00
|
|
|
for (auto const& i : cachefiles) {
|
2012-04-04 00:44:40 +02:00
|
|
|
// stop cleaning?
|
|
|
|
if ((total_size <= max_size && cachefiles.size() - deleted <= max_files) || cachefiles.size() - deleted < 2)
|
|
|
|
break;
|
|
|
|
|
2012-11-04 04:53:03 +01:00
|
|
|
int64_t fsize = i.second.GetSize().GetValue();
|
2012-10-19 16:35:37 +02:00
|
|
|
#ifdef __WXMSW__
|
2012-11-04 04:53:03 +01:00
|
|
|
int res = wxRemove(i.second.GetFullPath());
|
2012-10-19 16:35:37 +02:00
|
|
|
#else
|
2012-11-04 04:53:03 +01:00
|
|
|
int res = unlink(i.second.GetFullPath().fn_str());
|
2012-10-19 16:35:37 +02:00
|
|
|
#endif
|
|
|
|
if (res) {
|
2012-11-04 04:53:03 +01:00
|
|
|
LOG_D("utils/clean_cache") << "failed to remove file " << STD_STR(i.second.GetFullPath());
|
2012-04-04 00:44:40 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
total_size -= fsize;
|
|
|
|
++deleted;
|
|
|
|
|
|
|
|
wxThread::This()->Sleep(250);
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_D("utils/clean_cache") << "deleted " << deleted << " files, exiting";
|
|
|
|
return (wxThread::ExitCode)0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
cache_cleaner(wxString const& directory, wxString const& file_type, int64_t max_size, int64_t max_files)
|
|
|
|
: wxThread(wxTHREAD_DETACHED)
|
|
|
|
, directory(directory)
|
|
|
|
, file_type(file_type)
|
|
|
|
, max_size(max_size << 20)
|
|
|
|
{
|
|
|
|
if (max_files < 1)
|
|
|
|
this->max_files = (size_t)-1;
|
|
|
|
else
|
|
|
|
this->max_files = (size_t)max_files;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
void CleanCache(wxString const& directory, wxString const& file_type, int64_t max_size, int64_t max_files) {
|
|
|
|
LOG_D("utils/clean_cache") << "attempting to start cleaner thread";
|
|
|
|
wxThread *CleaningThread = new cache_cleaner(directory, file_type, max_size, max_files);
|
|
|
|
|
|
|
|
if (CleaningThread->Create() != wxTHREAD_NO_ERROR) {
|
|
|
|
LOG_D("utils/clean_cache") << "thread creation failed";
|
|
|
|
delete CleaningThread;
|
|
|
|
}
|
|
|
|
else if (CleaningThread->Run() != wxTHREAD_NO_ERROR) {
|
|
|
|
LOG_D("utils/clean_cache") << "failed to start thread";
|
|
|
|
delete CleaningThread;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG_D("utils/clean_cache") << "thread started successfully";
|
|
|
|
}
|
2012-05-26 22:16:08 +02:00
|
|
|
|
|
|
|
// OS X implementation in osx_utils.mm
|
|
|
|
#ifndef __WXOSX_COCOA__
|
2012-06-07 04:48:13 +02:00
|
|
|
void AddFullScreenButton(wxWindow *) { }
|
|
|
|
void SetFloatOnParent(wxWindow *) { }
|
2012-05-26 22:16:08 +02:00
|
|
|
#endif
|