1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
/**********************************************************************
Audacity: A Digital Audio Editor
FileFormatPrefs.cpp
Joshua Haberman
**********************************************************************/
#include <math.h>
#include <wx/window.h>
#include <wx/statbox.h>
#include <wx/textdlg.h>
#include <wx/msgdlg.h>
#include <wx/filefn.h>
#include <wx/utils.h>
#include <wx/dirdlg.h>
#include <wx/sizer.h>
#include <wx/log.h>
#include <wx/event.h>
#include <wx/dirdlg.h>
#include "../Prefs.h"
#include "../DiskFunctions.h"
#include "DirectoriesPrefs.h"
enum {
TempDirID = 1000,
ChooseButtonID
};
BEGIN_EVENT_TABLE(DirectoriesPrefs, wxPanel)
EVT_TEXT(TempDirID, DirectoriesPrefs::UpdateFreeSpace)
EVT_BUTTON(ChooseButtonID, DirectoriesPrefs::OnChooseTempDir)
END_EVENT_TABLE()
DirectoriesPrefs::DirectoriesPrefs(wxWindow * parent):
PrefsPanel(parent)
{
mTempDirText = NULL;
mTempDir = gPrefs->Read("/Directories/TempDir", "");
mOldTempDir = mTempDir;
topSizer = new wxStaticBoxSizer(
new wxStaticBox(this, -1, "Directories"), wxVERTICAL );
{
wxStaticBoxSizer *tempDirSizer = new wxStaticBoxSizer(
new wxStaticBox(this, -1, "Temp. Directory"), wxVERTICAL );
wxFlexGridSizer *tempDirGridSizer = new wxFlexGridSizer( 0, 3, 0, 0 );
mTempDirLabel = new wxStaticText(
this, -1, "Location:", wxDefaultPosition,
wxDefaultSize, wxALIGN_RIGHT );
/* Order is important here: mFreeSpace must be allocated before
mTempDirText, so that the handler doesn't try to operate on
mFreeSpace before it exists! */
mFreeSpace = new wxStaticText(
this, -1, FormatSize(GetFreeDiskSpace((char *) (const char *) mTempDir)),
wxDefaultPosition, wxDefaultSize, 0 );
mTempDirText = new wxTextCtrl(
this, TempDirID, mTempDir,
wxDefaultPosition, wxSize(160, -1), 0 );
mFreeSpaceLabel = new wxStaticText(
this, -1, "Free Space:",
wxDefaultPosition, wxDefaultSize, 0 );
wxButton *chooseButton =
new wxButton(this, ChooseButtonID, "Choose...");
tempDirGridSizer->Add( mTempDirLabel, 0, wxALIGN_LEFT|wxALL|wxALIGN_CENTER_VERTICAL, 2 );
tempDirGridSizer->Add( mTempDirText, 1, wxGROW|wxALL|wxALIGN_CENTER_VERTICAL, 2 );
tempDirGridSizer->Add( chooseButton, 0, wxALL|wxALIGN_CENTER_VERTICAL, 2 );
tempDirGridSizer->Add( mFreeSpaceLabel, 0, wxALIGN_LEFT|wxALL|wxALIGN_CENTER_VERTICAL, 2 );
tempDirGridSizer->Add( mFreeSpace, 0, wxGROW|wxALL|wxALIGN_CENTER_VERTICAL, 2 );
tempDirGridSizer->AddGrowableCol(1);
tempDirSizer->Add( tempDirGridSizer, 0, wxGROW|wxALL, 2 );
topSizer->Add( tempDirSizer, 0, wxGROW|wxALL, 5 );
}
SetAutoLayout(true);
SetSizer(topSizer);
topSizer->Fit(this);
topSizer->SetSizeHints(this);
}
wxString DirectoriesPrefs::FormatSize(wxLongLong size)
{
wxString sizeStr;
/* wxLongLong contains no built-in conversion to double */
double dSize = size.GetHi() * pow(2, 32); // 2 ^ 32
dSize += size.GetLo();
if (size == -1L)
sizeStr = "Unable to determine";
else {
/* make it look nice, by formatting into k, MB, etc */
if (size < 1024)
sizeStr.sprintf("%d bytes", size.GetLo());
else if (size < 1024 * 1024) {
sizeStr.sprintf("%.1f kB", dSize / 1024);
}
else if (size < 1024 * 1024 * 1024) {
sizeStr.sprintf("%.1f MB", dSize / (1024 * 1024));
}
else {
sizeStr.sprintf("%.1f GB", dSize / (1024 * 1024 * 1024));
}
}
return sizeStr;
}
void DirectoriesPrefs::OnChooseTempDir(wxCommandEvent &event)
{
wxDirDialog dlog(this,
"Choose a location to place the "
"temporary directory",
"");
dlog.ShowModal();
if (dlog.GetPath() != "") {
mTempDirText->SetValue(dlog.GetPath() +
wxFILE_SEP_PATH +
".audacity_temp");
UpdateFreeSpace(event);
}
}
void DirectoriesPrefs::UpdateFreeSpace(wxCommandEvent &event)
{
static wxLongLong space;
static wxString tempDir;
static char tmp[200];
if (mTempDirText == NULL)
return;
tempDir = mTempDirText->GetValue();
#ifndef __WXMAC__ // the mac GetFreeDiskSpace routine does this automatically
/* Try to be smart: if the directory doesn't exist, go up the
* directory path until one is, because that's the volume that
* the new directory would be created on */
while(!wxDirExists(tempDir) && tempDir.Find(wxFILE_SEP_PATH) != -1)
tempDir = tempDir.BeforeLast(wxFILE_SEP_PATH);
#endif
strncpy(tmp, tempDir.c_str(), 200);
space = GetFreeDiskSpace(tmp);
mFreeSpace->SetLabel(FormatSize(space));
}
bool DirectoriesPrefs::Apply()
{
mTempDir = mTempDirText->GetValue();
if(!wxDirExists(mTempDir)) {
int ans = wxMessageBox("Directory " + mTempDir + " does not exist. Create it?", "New Temporary Directory",
wxYES_NO|wxCENTRE|wxICON_EXCLAMATION);
if(ans == wxYES) {
if(!wxMkdir(mTempDir, 0600)) {
/* wxWindows throws up a decent looking dialog */
return false;
}
}
else {
return false;
}
}
else {
/* If the directory already exists, make sure it is writable */
wxLogNull logNo;
wxString tempDir = mTempDir + wxFILE_SEP_PATH + "canicreate";
if(!wxMkdir(tempDir)) {
wxMessageBox("Directory " + mTempDir + " is not writable", "Error", wxOK|wxICON_ERROR);
return false;
}
wxRmdir(tempDir);
}
gPrefs->Write("/Directories/TempDir", mTempDir);
if (mTempDir != mOldTempDir)
wxMessageBox
("Changes to temporary directory will not take effect until Audacity is restarted",
"Temp Directory Update", wxOK|wxCENTRE|wxICON_INFORMATION);
return true;
}
DirectoriesPrefs::~DirectoriesPrefs()
{
}
|