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
|
/* ============================================================
*
* This file is a part of digiKam project
* https://www.digikam.org
*
* Date : 04-10-2009
* Description : main widget of the import dialog
*
* Copyright (C) 2009 by Johannes Wienke <languitar at semipol dot de>
* Copyright (C) 2011-2022 by Gilles Caulier <caulier dot gilles at gmail dot 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, 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.
*
* ============================================================ */
#include "ftimportwidget.h"
// Qt includes
#include <QApplication>
#include <QPushButton>
#include <QBoxLayout>
#include <QPointer>
// KDE includes
#include <klocalizedstring.h>
// Local includes
#include "dfiledialog.h"
namespace DigikamGenericFileTransferPlugin
{
class Q_DECL_HIDDEN FTImportWidget::Private
{
public:
explicit Private()
{
imageList = nullptr;
uploadWidget = nullptr;
importSearchBtn = nullptr;
}
DItemsList* imageList;
QWidget* uploadWidget;
QPushButton* importSearchBtn;
};
FTImportWidget::FTImportWidget(QWidget* const parent, DInfoInterface* const iface)
: QWidget(parent),
d (new Private)
{
d->importSearchBtn = new QPushButton(i18n("Select import location..."), this);
d->importSearchBtn->setIcon(QIcon::fromTheme(QLatin1String("folder-remote")));
// setup image list
d->imageList = new DItemsList(this);
d->imageList->setObjectName(QLatin1String("FTImport ImagesList"));
d->imageList->setAllowRAW(true);
d->imageList->setIface(iface);
d->imageList->listView()->setColumnEnabled(DItemsListView::Thumbnail, false);
d->imageList->setControlButtons(DItemsList::Remove | DItemsList::MoveUp | DItemsList::MoveDown | DItemsList::Clear);
d->imageList->listView()->setWhatsThis(i18n("This is the list of images to import "
"into the current album."));
// setup upload widget
d->uploadWidget = iface->uploadWidget(this);
// layout dialog
QVBoxLayout* const layout = new QVBoxLayout(this);
layout->addWidget(d->importSearchBtn);
layout->addWidget(d->imageList);
layout->addWidget(d->uploadWidget);
layout->setContentsMargins(QMargins());
layout->setSpacing(QApplication::style()->pixelMetric(QStyle::PM_DefaultLayoutSpacing));
connect(d->importSearchBtn, SIGNAL(clicked(bool)),
this, SLOT(slotShowImportDialogClicked(bool)));
}
FTImportWidget::~FTImportWidget()
{
delete d;
}
void FTImportWidget::slotShowImportDialogClicked(bool checked)
{
Q_UNUSED(checked);
// TODO : store and restore previous session url from rc file
QPointer<DFileDialog> importDlg = new DFileDialog(this, i18n("Select items to import..."),
QString(),
i18n("All Files (*)"));
importDlg->setAcceptMode(QFileDialog::AcceptOpen);
importDlg->setFileMode(QFileDialog::ExistingFiles);
importDlg->exec();
if (importDlg && importDlg->hasAcceptedUrls())
{
d->imageList->slotAddImages(importDlg->selectedUrls());
}
delete importDlg;
}
DItemsList* FTImportWidget::imagesList() const
{
return d->imageList;
}
QWidget* FTImportWidget::uploadWidget() const
{
return d->uploadWidget;
}
QList<QUrl> FTImportWidget::sourceUrls() const
{
return d->imageList->imageUrls();
}
} // namespace DigikamGenericFileTransferPlugin
|