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 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
//=========================================================
// MusE
// Linux Music Editor
// $Id: filedialog.cpp,v 1.1.1.1 2003/10/29 10:06:35 wschweer Exp $
// (C) Copyright 2000 Werner Schweer (ws@seh.de)
//=========================================================
#include <errno.h>
#include <qwidget.h>
#include <qurl.h>
#include <qpixmap.h>
#include <qmessagebox.h>
#include <qtoolbutton.h>
#include <qstringlist.h>
#include "filedialog.h"
#include "fdialogbuttons.h"
#include "globals.h"
//---------------------------------------------------------
// createDir
// return true if dir could not created
//---------------------------------------------------------
static bool createDir(const QString& s)
{
QString sl("/");
QStringList l = QStringList::split(sl, s);
QString path(sl);
QDir dir;
for (QStringList::Iterator it = l.begin(); it != l.end(); ++it) {
dir.setPath(path);
if (!QDir(path + sl + *it).exists()) {
if (!dir.mkdir(*it)) {
printf("mkdir failed: %s %s\n",
path.latin1(), (*it).latin1());
return true;
}
}
path += sl;
path += *it;
}
return false;
}
//---------------------------------------------------------
// testDirCreate
// return true if dir does not exist
//---------------------------------------------------------
static bool testDirCreate(QWidget* parent, const QString& path)
{
QDir dir(path);
if (!dir.exists()) {
int n = QMessageBox::information(parent,
QWidget::tr("MusE: get file name"),
QWidget::tr("the directory\n") + path
+ QWidget::tr("\ndoes not exist\ncreate?"),
QWidget::tr("&Create"),
QWidget::tr("Cancel"),
QString::null, 1, 1);
if (n == 0) {
if (createDir(path)) {
QMessageBox::critical(parent,
QWidget::tr("MusE: create directory"),
QWidget::tr("creating dir failed")
);
return true;
}
return false;
}
return true;
}
return false;
}
//---------------------------------------------------------
// globalToggled
//---------------------------------------------------------
void MFileDialog::globalToggled(bool flag)
{
if (flag) {
buttons->userButton->setOn(!flag);
buttons->projectButton->setOn(!flag);
QString dir = museGlobalShare + QString("/") + baseDir;
setDir(dir);
}
}
//---------------------------------------------------------
// userToggled
//---------------------------------------------------------
void MFileDialog::userToggled(bool flag)
{
if (flag) {
buttons->globalButton->setOn(!flag);
buttons->projectButton->setOn(!flag);
QString s = museUser + QString("/") + baseDir;
if (testDirCreate(this, s))
setDir(museUser);
else
setDir(s);
}
}
//---------------------------------------------------------
// projectToggled
//---------------------------------------------------------
void MFileDialog::projectToggled(bool flag)
{
if (flag) {
buttons->globalButton->setOn(!flag);
buttons->userButton->setOn(!flag);
QString s = museProject + QString("/"); // + baseDir;
if (testDirCreate(this, s))
setDir(museProject);
else
setDir(s);
}
}
//---------------------------------------------------------
// MFileDialog
//---------------------------------------------------------
MFileDialog::MFileDialog(const QString& dir,
const QString& filter, QWidget* parent, bool writeFlag)
: QFileDialog(QString("."), filter, parent, 0, true)
{
showButtons = false;
if (dir[0] == '/') {
buttons = 0;
setDir(dir);
}
else {
baseDir = dir;
showButtons = true;
buttons = new FileDialogButtons(this, "fdialogbuttons");
addLeftWidget(buttons);
connect(buttons->globalButton, SIGNAL(toggled(bool)), SLOT(globalToggled(bool)));
connect(buttons->userButton, SIGNAL(toggled(bool)), SLOT(userToggled(bool)));
connect(buttons->projectButton, SIGNAL(toggled(bool)), SLOT(projectToggled(bool)));
buttons->globalButton->setOn(true);
if (writeFlag) {
buttons->globalButton->setEnabled(false);
buttons->projectButton->setOn(true);
}
else
buttons->globalButton->setOn(true);
}
}
//---------------------------------------------------------
// ContentsPreview
//---------------------------------------------------------
ContentsPreview::~ContentsPreview()
{
if (bg)
delete bg;
}
//---------------------------------------------------------
// ContentsPreview::showPreview
//---------------------------------------------------------
void ContentsPreview::previewUrl(const QUrl& url)
{
if (!url.isLocalFile())
return;
if (url.path() == path)
return;
path = url.path();
if (bg)
delete bg;
bg = new QPixmap(path);
if (bg)
setBackgroundPixmap(*bg);
}
//---------------------------------------------------------
// getOpenFileName
//---------------------------------------------------------
QString getOpenFileName(const QString &startWith,
const char** filters, QWidget* parent, const QString& name)
{
QString initialSelection;
MFileDialog *dlg = new MFileDialog(startWith, QString::null, parent, false);
dlg->setFilters(filters);
dlg->setCaption(name);
if (!initialSelection.isEmpty())
dlg->setSelection(initialSelection);
dlg->setMode(QFileDialog::ExistingFile);
QString result;
if (dlg->exec() == QDialog::Accepted) {
result = dlg->selectedFile();
}
delete dlg;
return result;
}
//---------------------------------------------------------
// getSaveFileName
//---------------------------------------------------------
QString getSaveFileName(const QString &startWith,
const char** filters, QWidget* parent, const QString& name)
{
MFileDialog *dlg = new MFileDialog(startWith, QString::null, parent, true);
dlg->setFilters(filters);
dlg->setCaption(name);
dlg->setMode(QFileDialog::AnyFile);
QString result;
if (dlg->exec() == QDialog::Accepted) {
result = dlg->selectedFile();
}
delete dlg;
return result;
}
//---------------------------------------------------------
// getImageFileName
//---------------------------------------------------------
QString getImageFileName(const QString& startWith,
const char** filters, QWidget* parent, const QString& name)
{
QString initialSelection;
QString* workingDirectory = new QString(QDir::currentDirPath());
if (!startWith.isEmpty() ) {
QFileInfo fi(startWith);
if (fi.exists() && fi.isDir()) {
*workingDirectory = startWith;
}
else if (fi.exists() && fi.isFile()) {
*workingDirectory = fi.dirPath(TRUE);
initialSelection = fi.absFilePath();
}
}
MFileDialog *dlg = new MFileDialog(*workingDirectory, QString::null,
parent);
dlg->setContentsPreviewEnabled(true);
ContentsPreview* preview = new ContentsPreview(dlg);
dlg->setContentsPreview(preview, preview);
dlg->setPreviewMode(QFileDialog::Contents);
dlg->setCaption(name);
dlg->setFilters(filters);
dlg->setMode(QFileDialog::ExistingFile);
QString result;
if (!initialSelection.isEmpty())
dlg->setSelection( initialSelection);
if (dlg->exec() == QDialog::Accepted) {
result = dlg->selectedFile();
}
delete dlg;
return result;
}
//---------------------------------------------------------
// fileOpen
// opens file "name" with extension "ext" in mode "mode"
// handles "name.ext.bz2" and "name.ext.gz"
//
// mode = "r" or "w"
// popenFlag set to true on return if file was opened
// with popen() (and therefore must be closed
// with pclose())
// noError show no error if file was not found in "r"
// mode. Has no effect in "w" mode
// overwriteWarning
// warn in "w" mode, if file exists
//---------------------------------------------------------
FILE* fileOpen(QWidget* parent, QString name, const QString& ext,
const char* mode, bool& popenFlag, bool noError,
bool overwriteWarning)
{
QFileInfo info(name);
QString zip;
popenFlag = false;
if (info.extension(true) == "") {
name += ext;
info.setFile(name);
}
else if (info.extension(false) == "gz") {
popenFlag = true;
zip = QString("gzip");
}
else if (info.extension(false) == "bz2") {
popenFlag = true;
zip = QString("bzip2");
}
if (strcmp(mode,"w") == 0 && overwriteWarning && info.exists()) {
QString s(QWidget::tr("File\n") + name + QWidget::tr("\nexists"));
int rv = QMessageBox::warning(parent,
QWidget::tr("MusE: write"),
s,
QWidget::tr("Overwrite"),
QWidget::tr("Quit"), QString::null, 0, 1);
switch(rv) {
case 0: // overwrite
break;
case 1: // quit
return 0;
}
}
FILE* fp = 0;
if (popenFlag) {
if (strcmp(mode, "r") == 0)
zip += QString(" -d < ");
else
zip += QString(" > ");
zip += name;
fp = popen(zip.ascii(), mode);
}
else {
fp = fopen(name.ascii(), mode);
}
if (fp == 0 && !noError) {
QString s(QWidget::tr("Open File\n") + name + QWidget::tr("\nfailed: ")
+ QString(strerror(errno)));
QMessageBox::critical(parent, QWidget::tr("MusE: Open File"), s);
return 0;
}
return fp;
}
//---------------------------------------------------------
// MFile
//---------------------------------------------------------
MFile::MFile(const QString& _path, const QString& _ext)
: path(_path), ext(_ext)
{
f = 0;
isPopen = false;
}
MFile::~MFile()
{
if (f) {
if (isPopen)
pclose(f);
else
fclose(f);
}
}
//---------------------------------------------------------
// open
//---------------------------------------------------------
FILE* MFile::open(const char* mode, const char** pattern,
QWidget* parent, bool noError, bool warnIfOverwrite, const QString& caption)
{
QString name;
if (strcmp(mode, "r") == 0)
name = getOpenFileName(path, pattern, parent, caption);
else
name = getSaveFileName(path, pattern, parent, caption);
if (name.isEmpty())
return 0;
f = fileOpen(parent, name, ext, mode, isPopen, noError,
warnIfOverwrite);
return f;
}
|