#include "OSSpecific.h" #include "ui_OSSpecific.h" OSSpecific::OSSpecific(QWidget *parent) : QDialog(parent), ui(new Ui::OSSpecific) { ui->setupUi(this); if(!QIcon::fromTheme(QStringLiteral("dialog-warning")).isNull()) setWindowIcon(QIcon::fromTheme(QStringLiteral("dialog-warning"))); updateText(); #if defined(ULTRACOPIER_PLUGIN_ALL_IN_ONE) || defined(ULTRACOPIER_MODE_SUPERCOPIER) setMinimumWidth(0); ui->widgetStyle->setVisible(false); #endif updateGeometry(); adjustSize(); } OSSpecific::~OSSpecific() { delete ui; } void OSSpecific::updateText() { QString text; #if defined(Q_OS_LINUX) text=tr("The replacement of default copy/move system is not supported by the file manager (Dolphin, Nautilus, ...).
Ask the developer of your file manager to support it.
You need do the copy/move manually."); #elif defined(Q_OS_WIN32) text=tr("Reboot the system if previously had similar software installed (like Teracopy, Supercopier or an earlier version of Ultracopier)."); #elif defined(Q_OS_MAC) text=tr("The replacement of default copy/move system is not supported and blocked by finder of Mac OS X.
You need do the copy/move manually by right clicking on the system tray icon near the clock (not the dock icon)."); #else text=tr("The replacement of default copy/move system should be not supported by the file manager.
Ask to the developer to support it.
You need do the copy/move manually."); #endif #ifdef ULTRACOPIER_MODE_SUPERCOPIER text+=QStringLiteral("
")+tr("Consider Supercopier as deprecated, prefer Ultracopier"); #endif ui->label->setText(text); } void OSSpecific::changeEvent(QEvent *e) { QDialog::changeEvent(e); switch (e->type()) { case QEvent::LanguageChange: ui->retranslateUi(this); updateText(); break; default: break; } } bool OSSpecific::dontShowAgain() { return ui->dontShowAgain->isChecked(); } QString OSSpecific::theme() { #if defined(ULTRACOPIER_PLUGIN_ALL_IN_ONE) || defined(ULTRACOPIER_MODE_SUPERCOPIER) return "classic"; #else switch (ui->comboBox->currentIndex()) { default: case 0: return "classic"; case 1: return "modern"; case 2: return "supercopier"; } #endif } void OSSpecific::on_pushButton_clicked() { close(); } void OSSpecific::on_comboBox_currentIndexChanged(int index) { switch(index) { default: case 0: ui->themePreview->setPixmap(QPixmap(":/ultracopier-oxygen.png")); break; case 1: ui->themePreview->setPixmap(QPixmap(":/ultracopier-oxygen2.png")); break; case 2: ui->themePreview->setPixmap(QPixmap(":/ultracopier-supercopier.png")); break; } }