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
|
#include "qhimdmainwindow.h"
#include "ui_qhimdmainwindow.h"
#include "qhimdaboutdialog.h"
#include <QMessageBox>
#include <QApplication>
void QHiMDMainWindow::set_buttons_enable(bool connect, bool download, bool upload, bool rename, bool del, bool format, bool quit)
{
ui->action_Connect->setEnabled(connect);
ui->action_Download->setEnabled(download);
ui->action_Upload->setEnabled(upload);
ui->action_Rename->setEnabled(rename);
ui->action_Delete->setEnabled(del);
ui->action_Format->setEnabled(format);
ui->action_Quit->setEnabled(quit);
ui->upload_button->setEnabled(upload);
ui->download_button->setEnabled(download);
}
void QHiMDMainWindow::init_himd_browser(QMDTracksModel * model)
{
int i, width;
QString browser = current_device->deviceType() == NETMD_DEVICE ? "netmd_browser" : "himd_browser";
ui->TrackList->setModel(model);
QObject::connect(ui->TrackList->selectionModel(), SIGNAL(selectionChanged (const QItemSelection &, const QItemSelection &)),
this, SLOT(handle_himd_selection_change(const QItemSelection&, const QItemSelection&)));
// read saved column width for this model
for(i = 0; i < ui->TrackList->model()->columnCount(); i++)
{
width = settings.value(browser + QString::number(i), 0).toInt();
if(width != 0)
ui->TrackList->setColumnWidth(i, width);
}
}
void QHiMDMainWindow::init_local_browser()
{
QStringList DownloadFileList;
localmodel.setFilter(QDir::AllDirs | QDir::Files | QDir::NoDotAndDotDot);
localmodel.setNameFilters(QStringList() << "*.mp3" << "*.wav" << "*.oma" << "*.aea");
localmodel.setNameFilterDisables(false);
localmodel.setReadOnly(false);
localmodel.setRootPath("/");
ui->localScan->setModel(&localmodel);
QModelIndex curdir = localmodel.index(ui->updir->text());
ui->localScan->expand(curdir);
ui->localScan->setCurrentIndex(curdir);
ui->localScan->scrollTo(curdir,QAbstractItemView::PositionAtTop);
ui->localScan->hideColumn(2);
ui->localScan->hideColumn(3);
ui->localScan->setColumnWidth(0, 350);
QObject::connect(ui->localScan->selectionModel(), SIGNAL(selectionChanged(const QItemSelection &, const QItemSelection &)),
this, SLOT(handle_local_selection_change(const QItemSelection&, const QItemSelection&)));
}
void QHiMDMainWindow::save_window_settings()
{
settings.setValue("geometry", QMainWindow::saveGeometry());
settings.setValue("windowState", QMainWindow::saveState());
}
void QHiMDMainWindow::read_window_settings()
{
QMainWindow::restoreGeometry(settings.value("geometry").toByteArray());
QMainWindow::restoreState(settings.value("windowState").toByteArray());
}
bool QHiMDMainWindow::autodetect_init()
{
if(!QObject::connect(detect, SIGNAL(deviceListChanged(QMDDevicePtrList)), this, SLOT(device_list_changed(QMDDevicePtrList))))
return false;
detect->scan_for_minidisc_devices();
return true;
}
void QHiMDMainWindow::setCurrentDevice(QMDDevice *dev)
{
current_device = dev;
QObject::connect(current_device, SIGNAL(closed()), this, SLOT(current_device_closed()));
if(current_device->deviceType() == NETMD_DEVICE)
init_himd_browser(&ntmodel);
else if(current_device->deviceType() == HIMD_DEVICE)
init_himd_browser(&htmodel);
}
void QHiMDMainWindow::open_device(QMDDevice * dev)
{
QMessageBox mdStatus;
QString error;
QMDTracksModel * mod;
int index = ui->himd_devices->currentIndex(); // remember current index of devices combo box, will be resetted by current_device_closed() function
if (!dev)
{
current_device_closed();
ui->himd_devices->setCurrentIndex(0);
return;
}
if(current_device)
{
current_device_closed();
ui->himd_devices->setCurrentIndex(index); // set correct device index in the combo box
}
if(dev->deviceType() == HIMD_DEVICE && dev->path().isEmpty())
{
mdStatus.setText(tr("Error opening himd device/disc image , no device path given\nPlease use connect button to set the path to the himd device/disc image"));
mdStatus.exec();
set_buttons_enable(1,0,0,0,0,0,1);
ui->himd_devices->setCurrentIndex(0);
return;
}
setCurrentDevice(dev);
mod = (QMDTracksModel *)ui->TrackList->model();
error = mod->open(dev);
if (!error.isEmpty())
{
mdStatus.setText(tr("Error opening minidisc device (") + current_device->name() + "):\n" + error);
mdStatus.exec();
set_buttons_enable(1,0,0,0,0,0,1);
ui->himd_devices->setCurrentIndex(0);
return;
}
localmodel.setSelectableExtensions(current_device->downloadableFileExtensions());
QModelIndex curdir = localmodel.index(ui->updir->text());
ui->localScan->expand(curdir);
ui->localScan->setCurrentIndex(curdir);
ui->DiscTitle->setText(current_device->discTitle());
set_buttons_enable(1,0,0,1,1,1,1);
}
void QHiMDMainWindow::upload_to(const QString & UploadDirectory)
{
QMDTrackIndexList tlist;
foreach(QModelIndex index, ui->TrackList->selectionModel()->selectedRows(0))
tlist.append(index.row());
current_device->batchUpload(tlist, UploadDirectory);
}
QHiMDMainWindow::QHiMDMainWindow(QWidget *parent)
: QMainWindow(parent), ui(new Ui::QHiMDMainWindowClass)
{
aboutDialog = new QHiMDAboutDialog;
formatDialog = new QHiMDFormatDialog;
current_device = NULL;
detect = createDetection(this);
ui->setupUi(this);
ui->updir->setText(settings.value("lastUploadDirectory",
QDir::homePath()).toString());
set_buttons_enable(1,0,0,0,0,0,1);
init_local_browser();
read_window_settings();
ui->himdpath->hide(); // not needed, replaced by combo box
if(!autodetect_init())
ui->statusBar->showMessage(" autodetection disabled", 10000);
}
QHiMDMainWindow::~QHiMDMainWindow()
{
if(current_device && current_device->isOpen())
current_device->close();
save_window_settings();
delete ui;
}
/* Slots for the actions */
void QHiMDMainWindow::on_action_Download_triggered()
{
QStringList DownloadFileList;
DownloadFileList = QFileDialog::getOpenFileNames(
this,
tr("Select MP3s for download"),
"/",
"MP3-files (*.mp3)");
}
void QHiMDMainWindow::on_action_Upload_triggered()
{
QString UploadDirectory = settings.value("lastManualUploadDirectory", QDir::homePath()).toString();
UploadDirectory = QFileDialog::getExistingDirectory(this,
tr("Select directory for Upload"),
UploadDirectory,
QFileDialog::ShowDirsOnly
| QFileDialog::DontResolveSymlinks);
if(UploadDirectory.isEmpty())
return;
settings.setValue("lastManualUploadDirectory", UploadDirectory);
upload_to(UploadDirectory);
}
void QHiMDMainWindow::on_action_Quit_triggered()
{
close();
}
void QHiMDMainWindow::on_action_About_triggered()
{
aboutDialog->show();
}
void QHiMDMainWindow::on_action_Format_triggered()
{
formatDialog->show();
}
void QHiMDMainWindow::on_action_Connect_triggered()
{
int index;
QHiMDDevice *dev;
QString HiMDDirectory;
HiMDDirectory = settings.value("lastImageDirectory", QDir::rootPath()).toString();
HiMDDirectory = QFileDialog::getExistingDirectory(this,
tr("Select directory of HiMD Medium"),
HiMDDirectory,
QFileDialog::ShowDirsOnly
| QFileDialog::DontResolveSymlinks);
if(HiMDDirectory.isEmpty())
return;
index = ui->himd_devices->findText("disc image", Qt::MatchContains);
ui->himd_devices->setCurrentIndex(index); // index of disk image device
dev = (QHiMDDevice *)ui->himd_devices->itemData(index).value<void *>();
dev->setPath(HiMDDirectory);
ui->himd_devices->setItemText(index, QString((dev->name() + " at " + dev->path() )));
open_device(dev);
}
void QHiMDMainWindow::on_upload_button_clicked()
{
upload_to(ui->updir->text());
}
void QHiMDMainWindow::handle_himd_selection_change(const QItemSelection&, const QItemSelection&)
{
bool nonempty = ui->TrackList->selectionModel()->selectedRows(0).length() != 0;
ui->action_Upload->setEnabled(nonempty);
ui->upload_button->setEnabled(nonempty);
}
void QHiMDMainWindow::handle_local_selection_change(const QItemSelection&, const QItemSelection&)
{
QModelIndex index = ui->localScan->currentIndex();
bool download_possible = false;
if(localmodel.fileInfo(index).isDir())
{
ui->updir->setText(localmodel.filePath(index));
settings.setValue("lastUploadDirectory", localmodel.filePath(index));
}
if(localmodel.fileInfo(index).isFile())
download_possible = current_device && current_device->isOpen();
ui->action_Download->setEnabled(download_possible);
ui->download_button->setEnabled(download_possible);
}
void QHiMDMainWindow::device_list_changed(QMDDevicePtrList dplist)
{
QString device;
QMDDevice * dev;
/* close current device if it is removed from device list, just to be sure, should be handled by closed() signal */
if(current_device && current_device->isOpen() && !dplist.contains(current_device))
current_device_closed();
ui->himd_devices->clear();
// add dummy entry for <disconnected>
ui->himd_devices->addItem("<disconnected>");
foreach(dev, dplist)
{
device = QString(dev->deviceType() == NETMD_DEVICE ? dev->name() : dev->name() + " at " + dev->path() );
ui->himd_devices->addItem(device, qVariantFromValue((void *)dev));
}
if(current_device)
ui->himd_devices->setCurrentIndex(dplist.indexOf(current_device) + 1);
else
{
if(dplist.count() > 1) // open first autodetected device
{
ui->himd_devices->setCurrentIndex(2);
open_device(dplist.at(1));
}
}
}
void QHiMDMainWindow::on_himd_devices_activated(QString device)
{
QMDDevice * dev;
int index = ui->himd_devices->findText(device);
if (index == 0) // disconnected
{
current_device_closed();
return;
}
dev = (QMDDevice *)ui->himd_devices->itemData(index).value<void *>();
open_device(dev);
}
void QHiMDMainWindow::current_device_closed()
{
int i;
if(!current_device)
return;
QString browser = current_device->deviceType() == NETMD_DEVICE ? "netmd_browser" : "himd_browser";
QMDTracksModel * mod = (QMDTracksModel *)ui->TrackList->model();
QObject::disconnect(current_device, SIGNAL(closed()), this, SLOT(current_device_closed()));
// save column width for this model first
for(i = 0;i < mod->columnCount(); i++)
settings.setValue(browser + QString::number(i), ui->TrackList->columnWidth(i));
mod->close();
current_device = NULL;
ui->DiscTitle->setText(QString());
ui->himd_devices->setCurrentIndex(0);
set_buttons_enable(1,0,0,0,0,0,1);
}
void QHiMDMainWindow::on_download_button_clicked()
{
/*download_of(localmodel.filePath(ui->localScan->currentIndex()));*/
}
|