mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-03 22:22:33 -06:00
@@ -97,6 +97,7 @@ namespace
|
||||
ENABLE_SPEED_WIDGET,
|
||||
#ifndef Q_OS_MACOS
|
||||
ENABLE_ICONS_IN_MENUS,
|
||||
USE_ATTACHED_ADD_NEW_TORRENT_DIALOG,
|
||||
#endif
|
||||
// embedded tracker
|
||||
TRACKER_STATUS,
|
||||
@@ -323,6 +324,7 @@ void AdvancedSettings::saveAdvancedSettings() const
|
||||
pref->setSpeedWidgetEnabled(m_checkBoxSpeedWidgetEnabled.isChecked());
|
||||
#ifndef Q_OS_MACOS
|
||||
pref->setIconsInMenusEnabled(m_checkBoxIconsInMenusEnabled.isChecked());
|
||||
pref->setAddNewTorrentDialogAttached(m_checkBoxAttachedAddNewTorrentDialog.isChecked());
|
||||
#endif
|
||||
|
||||
// Tracker
|
||||
@@ -835,6 +837,9 @@ void AdvancedSettings::loadAdvancedSettings()
|
||||
// Enable icons in menus
|
||||
m_checkBoxIconsInMenusEnabled.setChecked(pref->iconsInMenusEnabled());
|
||||
addRow(ENABLE_ICONS_IN_MENUS, tr("Enable icons in menus"), &m_checkBoxIconsInMenusEnabled);
|
||||
|
||||
m_checkBoxAttachedAddNewTorrentDialog.setChecked(pref->isAddNewTorrentDialogAttached());
|
||||
addRow(USE_ATTACHED_ADD_NEW_TORRENT_DIALOG, tr("Attach \"Add new torrent\" dialog to main window"), &m_checkBoxAttachedAddNewTorrentDialog);
|
||||
#endif
|
||||
// Tracker State
|
||||
m_checkBoxTrackerStatus.setChecked(session->isTrackerEnabled());
|
||||
|
||||
@@ -108,6 +108,7 @@ private:
|
||||
|
||||
#ifndef Q_OS_MACOS
|
||||
QCheckBox m_checkBoxIconsInMenusEnabled;
|
||||
QCheckBox m_checkBoxAttachedAddNewTorrentDialog;
|
||||
#endif
|
||||
|
||||
#if defined(Q_OS_MACOS) || defined(Q_OS_WIN)
|
||||
|
||||
@@ -225,12 +225,19 @@ bool GUIAddTorrentManager::processTorrent(const QString &source
|
||||
if (!hasMetadata)
|
||||
btSession()->downloadMetadata(torrentDescr);
|
||||
|
||||
#ifdef Q_OS_MACOS
|
||||
const bool attached = false;
|
||||
#else
|
||||
const bool attached = Preferences::instance()->isAddNewTorrentDialogAttached();
|
||||
#endif
|
||||
|
||||
// By not setting a parent to the "AddNewTorrentDialog", all those dialogs
|
||||
// will be displayed on top and will not overlap with the main window.
|
||||
auto *dlg = new AddNewTorrentDialog(torrentDescr, params, nullptr);
|
||||
auto *dlg = new AddNewTorrentDialog(torrentDescr, params, (attached ? app()->mainWindow() : nullptr));
|
||||
// Qt::Window is required to avoid showing only two dialog on top (see #12852).
|
||||
// Also improves the general convenience of adding multiple torrents.
|
||||
dlg->setWindowFlags(Qt::Window);
|
||||
if (!attached)
|
||||
dlg->setWindowFlags(Qt::Window);
|
||||
|
||||
dlg->setAttribute(Qt::WA_DeleteOnClose);
|
||||
m_dialogs[infoHash] = dlg;
|
||||
|
||||
@@ -80,7 +80,33 @@ inline QHash<QString, UIThemeColor> defaultUIThemeColors()
|
||||
{u"TransferList.StoppedUploading"_s, {Color::Primer::Light::doneFg, Color::Primer::Dark::doneFg}},
|
||||
{u"TransferList.Moving"_s, {Color::Primer::Light::successFg, Color::Primer::Dark::successFg}},
|
||||
{u"TransferList.MissingFiles"_s, {Color::Primer::Light::dangerFg, Color::Primer::Dark::dangerFg}},
|
||||
{u"TransferList.Error"_s, {Color::Primer::Light::dangerFg, Color::Primer::Dark::dangerFg}}
|
||||
{u"TransferList.Error"_s, {Color::Primer::Light::dangerFg, Color::Primer::Dark::dangerFg}},
|
||||
|
||||
{u"Palette.Window"_s, {{}, {}}},
|
||||
{u"Palette.WindowText"_s, {{}, {}}},
|
||||
{u"Palette.Base"_s, {{}, {}}},
|
||||
{u"Palette.AlternateBase"_s, {{}, {}}},
|
||||
{u"Palette.Text"_s, {{}, {}}},
|
||||
{u"Palette.ToolTipBase"_s, {{}, {}}},
|
||||
{u"Palette.ToolTipText"_s, {{}, {}}},
|
||||
{u"Palette.BrightText"_s, {{}, {}}},
|
||||
{u"Palette.Highlight"_s, {{}, {}}},
|
||||
{u"Palette.HighlightedText"_s, {{}, {}}},
|
||||
{u"Palette.Button"_s, {{}, {}}},
|
||||
{u"Palette.ButtonText"_s, {{}, {}}},
|
||||
{u"Palette.Link"_s, {{}, {}}},
|
||||
{u"Palette.LinkVisited"_s, {{}, {}}},
|
||||
{u"Palette.Light"_s, {{}, {}}},
|
||||
{u"Palette.Midlight"_s, {{}, {}}},
|
||||
{u"Palette.Mid"_s, {{}, {}}},
|
||||
{u"Palette.Dark"_s, {{}, {}}},
|
||||
{u"Palette.Shadow"_s, {{}, {}}},
|
||||
{u"Palette.WindowTextDisabled"_s, {{}, {}}},
|
||||
{u"Palette.TextDisabled"_s, {{}, {}}},
|
||||
{u"Palette.ToolTipTextDisabled"_s, {{}, {}}},
|
||||
{u"Palette.BrightTextDisabled"_s, {{}, {}}},
|
||||
{u"Palette.HighlightedTextDisabled"_s, {{}, {}}},
|
||||
{u"Palette.ButtonTextDisabled"_s, {{}, {}}}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user