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 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
|
/* This file is part of the KDE project
Copyright (C) 2002 by Patrick Charbonnier <pch@freeshell.org>
Based On Caitoo v.0.7.3 (c) 1998 - 2000, Matej Koss
Copyright (C) 2002 Carsten Pfeiffer <pfeiffer@kde.org>
Copyright (C) 2006 - 2008 Urs Wolfer <uwolfer @ kde.org>
Copyright (C) 2006 Dario Massarin <nekkar@libero.it>
Copyright (C) 2008 - 2011 Lukas Appelhans <l.appelhans@gmx.de>
Copyright (C) 2009 - 2010 Matthias Fuchs <mat69@gmx.net>
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 of the License, or (at your option) any later version.
*/
#include "mainwindow.h"
#include "conf/autopastemodel.h"
#include "conf/preferencesdialog.h"
#include "core/kget.h"
#include "core/transfergrouphandler.h"
#include "core/transferhandler.h"
#include "core/transfertreemodel.h"
#include "core/transfertreeselectionmodel.h"
#include "core/verifier.h"
#include "settings.h"
#include "ui/droptarget.h"
#include "ui/groupsettingsdialog.h"
#include "ui/history/transferhistory.h"
#include "ui/linkview/kget_linkview.h"
#include "ui/metalinkcreator/metalinkcreator.h"
#include "ui/newtransferdialog.h"
#include "ui/transfersettingsdialog.h"
#include "ui/viewscontainer.h"
#ifdef DO_KGET_TEST
#include "tests/testkget.h"
#endif
#include "kget_debug.h"
#include <QDebug>
#include <KActionMenu>
#include <KIO/JobUiDelegateFactory>
#include <KIO/OpenUrlJob>
#include <KIconDialog>
#include <KLocalizedString>
#include <KMessageBox>
#include <KNotifyConfigWidget>
#include <KSelectAction>
#include <KStandardActions>
#include <QApplication>
#include <QClipboard>
#include <QFileDialog>
#include <QIcon>
#include <QInputDialog>
#include <QKeySequence>
#include <QMenuBar>
#include <QSessionManager>
#include <QStandardPaths>
#include <QTimer>
#ifdef DO_KGET_TEST
#include <QTest>
#endif
MainWindow::MainWindow(bool showMainwindow, bool startWithoutAnimation, bool doTesting, QWidget *parent)
: KXmlGuiWindow(parent)
, m_drop(nullptr)
, m_dock(nullptr)
, clipboardTimer(nullptr)
, m_startWithoutAnimation(startWithoutAnimation)
, m_doTesting(doTesting) /*,
m_webinterface(nullptr)*/
{
// do not quit the app when it has been minimized to system tray and a new transfer dialog
// gets opened and closed again.
qApp->setQuitOnLastWindowClosed(false);
setAttribute(Qt::WA_DeleteOnClose, false);
// create the model
m_kget = KGet::self(this);
m_viewsContainer = new ViewsContainer(this);
// create actions
setupActions();
setupGUI(ToolBar | Keys | Save | Create);
setCentralWidget(m_viewsContainer);
// restore position, size and visibility
move(Settings::mainPosition());
setPlainCaption(i18n("KGet"));
init();
if (Settings::showMain() && showMainwindow)
show();
else
hide();
}
MainWindow::~MainWindow()
{
// Save the user's transfers
KGet::save();
slotSaveMyself();
// reset konqueror integration (necessary if user enabled / disabled temporarily integration from tray)
slotKonquerorIntegration(Settings::konquerorIntegration());
// the following call saves options set in above dtors
Settings::self()->save();
delete m_drop;
delete m_kget;
}
QSize MainWindow::sizeHint() const
{
return QSize(738, 380);
}
int MainWindow::transfersPercent()
{
int percent = 0;
int activeTransfers = 0;
foreach (const TransferHandler *handler, KGet::allTransfers()) {
if (handler->status() == Job::Running) {
activeTransfers++;
percent += handler->percent();
}
}
if (activeTransfers > 0) {
return percent / activeTransfers;
} else {
return -1;
}
}
void MainWindow::setupActions()
{
QAction *newDownloadAction = actionCollection()->addAction("new_download");
newDownloadAction->setText(i18n("&New Download..."));
newDownloadAction->setIcon(QIcon::fromTheme("document-new"));
// newDownloadAction->setHelpText(i18n("Opens a dialog to add a transfer to the list"));
actionCollection()->setDefaultShortcut(newDownloadAction, QKeySequence(Qt::CTRL | Qt::Key_N));
connect(newDownloadAction, &QAction::triggered, this, &MainWindow::slotNewTransfer);
QAction *openAction = actionCollection()->addAction("import_transfers");
openAction->setText(i18n("&Import Transfers..."));
openAction->setIcon(QIcon::fromTheme("document-open"));
// openAction->setHelpText(i18n("Imports a list of transfers"));
actionCollection()->setDefaultShortcut(openAction, QKeySequence(Qt::CTRL | Qt::Key_I));
connect(openAction, &QAction::triggered, this, &MainWindow::slotImportTransfers);
QAction *exportAction = actionCollection()->addAction("export_transfers");
exportAction->setText(i18n("&Export Transfers List..."));
exportAction->setIcon(QIcon::fromTheme("document-export"));
// exportAction->setHelpText(i18n("Exports the current transfers into a file"));
actionCollection()->setDefaultShortcut(exportAction, QKeySequence(Qt::CTRL | Qt::Key_E));
connect(exportAction, &QAction::triggered, this, &MainWindow::slotExportTransfers);
QAction *createMetalinkAction = actionCollection()->addAction("create_metalink");
createMetalinkAction->setText(i18n("&Create a Metalink..."));
createMetalinkAction->setIcon(QIcon::fromTheme("journal-new"));
// createMetalinkAction->setHelpText(i18n("Creates or modifies a metalink and saves it on disk"));
connect(createMetalinkAction, &QAction::triggered, this, &MainWindow::slotCreateMetalink);
QAction *priorityTop = actionCollection()->addAction("priority_top");
priorityTop->setText(i18n("Top Priority"));
priorityTop->setIcon(QIcon::fromTheme("arrow-up-double"));
// priorityTop->setHelpText(i18n("Download selected transfer first"));
actionCollection()->setDefaultShortcut(priorityTop, QKeySequence(Qt::CTRL | Qt::Key_PageUp));
connect(priorityTop, &QAction::triggered, this, &MainWindow::slotPriorityTop);
QAction *priorityBottom = actionCollection()->addAction("priority_bottom");
priorityBottom->setText(i18n("Least Priority"));
priorityBottom->setIcon(QIcon::fromTheme("arrow-down-double"));
// priorityBottom->setHelpText(i18n("Download selected transfer last"));
actionCollection()->setDefaultShortcut(priorityBottom, QKeySequence(Qt::CTRL | Qt::Key_PageDown));
connect(priorityBottom, &QAction::triggered, this, &MainWindow::slotPriorityBottom);
QAction *priorityUp = actionCollection()->addAction("priority_up");
priorityUp->setText(i18n("Increase Priority"));
priorityUp->setIcon(QIcon::fromTheme("arrow-up"));
// priorityUp->setHelpText(i18n("Increase priority for selected transfer"));
actionCollection()->setDefaultShortcut(priorityUp, QKeySequence(Qt::CTRL | Qt::Key_Up));
connect(priorityUp, &QAction::triggered, this, &MainWindow::slotPriorityUp);
QAction *priorityDown = actionCollection()->addAction("priority_down");
priorityDown->setText(i18n("Decrease Priority"));
priorityDown->setIcon(QIcon::fromTheme("arrow-down"));
// priorityDown->setHelpText(i18n("Decrease priority for selected transfer"));
actionCollection()->setDefaultShortcut(priorityDown, QKeySequence(Qt::CTRL | Qt::Key_Down));
connect(priorityDown, &QAction::triggered, this, &MainWindow::slotPriorityDown);
// FIXME: Not needed maybe because the normal delete already deletes groups?
QAction *deleteGroupAction = actionCollection()->addAction("delete_groups");
deleteGroupAction->setText(i18nc("@action", "Delete Group"));
deleteGroupAction->setIcon(QIcon::fromTheme("edit-delete"));
// deleteGroupAction->setHelpText(i18n("Delete selected group"));
connect(deleteGroupAction, &QAction::triggered, this, &MainWindow::slotDeleteGroup);
QAction *renameGroupAction = actionCollection()->addAction("rename_groups");
renameGroupAction->setText(i18nc("@action", "Rename Group..."));
renameGroupAction->setIcon(QIcon::fromTheme("edit-rename"));
connect(renameGroupAction, &QAction::triggered, this, &MainWindow::slotRenameGroup);
QAction *setIconGroupAction = actionCollection()->addAction("seticon_groups");
setIconGroupAction->setText(i18n("Set Icon..."));
setIconGroupAction->setIcon(QIcon::fromTheme("preferences-desktop-icons"));
// setIconGroupAction->setHelpText(i18n("Select a custom icon for the selected group"));
connect(setIconGroupAction, &QAction::triggered, this, &MainWindow::slotSetIconGroup);
m_autoPasteAction = new KToggleAction(QIcon::fromTheme("edit-paste"), i18n("Auto-Paste Mode"), actionCollection());
actionCollection()->addAction("auto_paste", m_autoPasteAction);
m_autoPasteAction->setChecked(Settings::autoPaste());
m_autoPasteAction->setWhatsThis(
i18n("<b>Auto paste</b> button toggles the auto-paste mode "
"on and off.\nWhen set, KGet will periodically scan "
"the clipboard for URLs and paste them automatically."));
connect(m_autoPasteAction, &QAction::triggered, this, &MainWindow::slotToggleAutoPaste);
m_konquerorIntegration = new KToggleAction(QIcon::fromTheme("konqueror"), i18n("Use KGet as Konqueror Download Manager"), actionCollection());
actionCollection()->addAction("konqueror_integration", m_konquerorIntegration);
connect(m_konquerorIntegration, &QAction::triggered, this, &MainWindow::slotTrayKonquerorIntegration);
m_konquerorIntegration->setChecked(Settings::konquerorIntegration());
// local - Destroys all sub-windows and exits
KStandardActions::quit(this, &MainWindow::slotQuit, actionCollection());
// local - Standard configure actions
KStandardActions::preferences(this, &MainWindow::slotPreferences, actionCollection());
KStandardActions::configureNotifications(this, &MainWindow::slotConfigureNotifications, actionCollection());
m_menubarAction = KStandardAction::showMenubar(this, &MainWindow::slotShowMenubar, actionCollection());
m_menubarAction->setChecked(!menuBar()->isHidden());
// Transfer related actions
actionCollection()->addAction(KStandardActions::SelectAll, "select_all", m_viewsContainer, &ViewsContainer::selectAll);
QAction *deleteSelectedAction = actionCollection()->addAction("delete_selected_download");
deleteSelectedAction->setText(i18nc("delete selected transfer item", "Remove Selected"));
deleteSelectedAction->setIcon(QIcon::fromTheme("edit-delete"));
// deleteSelectedAction->setHelpText(i18n("Removes selected transfer and deletes files from disk if it's not finished"));
actionCollection()->setDefaultShortcut(deleteSelectedAction, QKeySequence(Qt::Key_Delete));
connect(deleteSelectedAction, &QAction::triggered, this, &MainWindow::slotDeleteSelected);
QAction *deleteAllFinishedAction = actionCollection()->addAction("delete_all_finished");
deleteAllFinishedAction->setText(i18nc("delete all finished transfers", "Remove All Finished"));
deleteAllFinishedAction->setIcon(QIcon::fromTheme("edit-clear-list"));
// deleteAllFinishedAction->setHelpText(i18n("Removes all finished transfers and leaves all files on disk"));
connect(deleteAllFinishedAction, &QAction::triggered, this, &MainWindow::slotDeleteFinished);
QAction *deleteSelectedIncludingFilesAction = actionCollection()->addAction("delete_selected_download_including_files");
deleteSelectedIncludingFilesAction->setText(i18nc("delete selected transfer item and files", "Remove Selected and Delete Files"));
deleteSelectedIncludingFilesAction->setIcon(QIcon::fromTheme("edit-delete"));
// deleteSelectedIncludingFilesAction->setHelpText(i18n("Removes selected transfer and deletes files from disk in any case"));
connect(deleteSelectedIncludingFilesAction, &QAction::triggered, this, &MainWindow::slotDeleteSelectedIncludingFiles);
QAction *redownloadSelectedAction = actionCollection()->addAction("redownload_selected_download");
redownloadSelectedAction->setText(i18nc("redownload selected transfer item", "Redownload Selected"));
redownloadSelectedAction->setIcon(QIcon::fromTheme("view-refresh"));
connect(redownloadSelectedAction, &QAction::triggered, this, &MainWindow::slotRedownloadSelected);
QAction *startAllAction = actionCollection()->addAction("start_all_download");
startAllAction->setText(i18n("Start All"));
startAllAction->setIcon(QIcon::fromTheme("media-seek-forward"));
// startAllAction->setHelpText(i18n("Starts / resumes all transfers"));
actionCollection()->setDefaultShortcut(startAllAction, QKeySequence(Qt::CTRL | Qt::Key_R));
connect(startAllAction, &QAction::triggered, this, &MainWindow::slotStartAllDownload);
QAction *startSelectedAction = actionCollection()->addAction("start_selected_download");
startSelectedAction->setText(i18n("Start Selected"));
startSelectedAction->setIcon(QIcon::fromTheme("media-playback-start"));
// startSelectedAction->setHelpText(i18n("Starts / resumes selected transfer"));
connect(startSelectedAction, &QAction::triggered, this, &MainWindow::slotStartSelectedDownload);
QAction *stopAllAction = actionCollection()->addAction("stop_all_download");
stopAllAction->setText(i18n("Pause All"));
stopAllAction->setIcon(QIcon::fromTheme("media-playback-pause"));
// stopAllAction->setHelpText(i18n("Pauses all transfers"));
actionCollection()->setDefaultShortcut(stopAllAction, QKeySequence(Qt::CTRL | Qt::Key_P));
connect(stopAllAction, &QAction::triggered, this, &MainWindow::slotStopAllDownload);
QAction *stopSelectedAction = actionCollection()->addAction("stop_selected_download");
stopSelectedAction->setText(i18n("Stop Selected"));
stopSelectedAction->setIcon(QIcon::fromTheme("media-playback-pause"));
// stopSelectedAction->setHelpText(i18n("Pauses selected transfer"));
connect(stopSelectedAction, &QAction::triggered, this, &MainWindow::slotStopSelectedDownload);
auto *startActionMenu = new KActionMenu(QIcon::fromTheme("media-playback-start"), i18n("Start"), actionCollection());
actionCollection()->addAction("start_menu", startActionMenu);
startActionMenu->setPopupMode(QToolButton::DelayedPopup);
startActionMenu->addAction(startSelectedAction);
startActionMenu->addAction(startAllAction);
connect(startActionMenu, &QAction::triggered, this, &MainWindow::slotStartDownload);
auto *stopActionMenu = new KActionMenu(QIcon::fromTheme("media-playback-pause"), i18n("Pause"), actionCollection());
actionCollection()->addAction("stop_menu", stopActionMenu);
stopActionMenu->setPopupMode(QToolButton::DelayedPopup);
stopActionMenu->addAction(stopSelectedAction);
stopActionMenu->addAction(stopAllAction);
connect(stopActionMenu, &QAction::triggered, this, &MainWindow::slotStopDownload);
QAction *openDestAction = actionCollection()->addAction("transfer_open_dest");
openDestAction->setText(i18n("Open Destination"));
openDestAction->setIcon(QIcon::fromTheme("document-open"));
connect(openDestAction, &QAction::triggered, this, &MainWindow::slotTransfersOpenDest);
QAction *openFileAction = actionCollection()->addAction("transfer_open_file");
openFileAction->setText(i18n("Open File"));
openFileAction->setIcon(QIcon::fromTheme("document-open"));
connect(openFileAction, &QAction::triggered, this, &MainWindow::slotTransfersOpenFile);
QAction *showDetailsAction = new KToggleAction(QIcon::fromTheme("document-properties"), i18n("Show Details"), actionCollection());
actionCollection()->addAction("transfer_show_details", showDetailsAction);
connect(showDetailsAction, &QAction::triggered, this, &MainWindow::slotTransfersShowDetails);
QAction *copyUrlAction = actionCollection()->addAction("transfer_copy_source_url");
copyUrlAction->setText(i18n("Copy URL to Clipboard"));
copyUrlAction->setIcon(QIcon::fromTheme("edit-copy"));
connect(copyUrlAction, &QAction::triggered, this, &MainWindow::slotTransfersCopySourceUrl);
QAction *transferHistoryAction = actionCollection()->addAction("transfer_history");
transferHistoryAction->setText(i18n("&Transfer History"));
transferHistoryAction->setIcon(QIcon::fromTheme("view-history"));
actionCollection()->setDefaultShortcut(transferHistoryAction, QKeySequence(Qt::CTRL | Qt::Key_H));
connect(transferHistoryAction, &QAction::triggered, this, &MainWindow::slotTransferHistory);
QAction *transferGroupSettingsAction = actionCollection()->addAction("transfer_group_settings");
transferGroupSettingsAction->setText(i18n("&Group Settings"));
transferGroupSettingsAction->setIcon(QIcon::fromTheme("preferences-system"));
actionCollection()->setDefaultShortcut(transferGroupSettingsAction, QKeySequence(Qt::CTRL | Qt::Key_G));
connect(transferGroupSettingsAction, &QAction::triggered, this, &MainWindow::slotTransferGroupSettings);
QAction *transferSettingsAction = actionCollection()->addAction("transfer_settings");
transferSettingsAction->setText(i18n("&Transfer Settings"));
transferSettingsAction->setIcon(QIcon::fromTheme("preferences-system"));
actionCollection()->setDefaultShortcut(transferSettingsAction, QKeySequence(Qt::CTRL | Qt::Key_T));
connect(transferSettingsAction, &QAction::triggered, this, &MainWindow::slotTransferSettings);
QAction *listLinksAction = actionCollection()->addAction("import_links");
listLinksAction->setText(i18n("Import &Links..."));
listLinksAction->setIcon(QIcon::fromTheme("view-list-text"));
actionCollection()->setDefaultShortcut(listLinksAction, QKeySequence(Qt::CTRL | Qt::Key_L));
connect(listLinksAction, &QAction::triggered, this, &MainWindow::slotShowListLinks);
// create the download finished actions which can be displayed in the toolbar
auto *downloadFinishedActions = new KSelectAction(i18n("After downloads finished action"), this); // TODO maybe with name??
actionCollection()->addAction("download_finished_actions", downloadFinishedActions);
// downloadFinishedActions->setHelpText(i18n("Choose an action that is executed after all downloads have been finished."));
QAction *noAction = downloadFinishedActions->addAction(i18n("No Action"));
connect(noAction, &QAction::triggered, this, &MainWindow::slotDownloadFinishedActions);
downloadFinishedActions->addAction(noAction);
QAction *quitAction = downloadFinishedActions->addAction(i18n("Quit KGet"));
quitAction->setData(KGet::Quit);
connect(quitAction, &QAction::triggered, this, &MainWindow::slotDownloadFinishedActions);
downloadFinishedActions->addAction(quitAction);
QAction *shutdownAction = downloadFinishedActions->addAction(i18n("Turn Off Computer"));
shutdownAction->setData(KGet::Shutdown);
connect(shutdownAction, &QAction::triggered, this, &MainWindow::slotDownloadFinishedActions);
downloadFinishedActions->addAction(shutdownAction);
QAction *hibernateAction = downloadFinishedActions->addAction(i18n("Hibernate Computer"));
hibernateAction->setData(KGet::Hibernate);
connect(hibernateAction, &QAction::triggered, this, &MainWindow::slotDownloadFinishedActions);
downloadFinishedActions->addAction(hibernateAction);
QAction *suspendAction = downloadFinishedActions->addAction(i18n("Suspend Computer"));
suspendAction->setData(KGet::Suspend);
connect(suspendAction, &QAction::triggered, this, &MainWindow::slotDownloadFinishedActions);
downloadFinishedActions->addAction(suspendAction);
if (Settings::afterFinishActionEnabled()) {
downloadFinishedActions->setCurrentItem(Settings::afterFinishAction() + 1);
} else {
downloadFinishedActions->setCurrentItem(0);
}
}
void MainWindow::slotDownloadFinishedActions()
{
auto *action = static_cast<QAction *>(QObject::sender());
bool ok;
const int type = action->data().toInt(&ok);
if (ok) {
Settings::self()->setAfterFinishAction(type);
}
// only after finish actions have a number assigned
Settings::self()->setAfterFinishActionEnabled(ok);
Settings::self()->save();
slotNewConfig();
}
void MainWindow::init()
{
// Here we import the user's transfers.
KGet::load(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + QStringLiteral("/transfers.kgt"));
if (Settings::enableSystemTray()) {
m_dock = new Tray(this);
}
// enable dropping
setAcceptDrops(true);
// enable hide toolbar
setStandardToolBarMenuEnabled(true);
// session management stuff
auto disableSessionManagement = [](QSessionManager &sm) {
sm.setRestartHint(QSessionManager::RestartNever);
};
QObject::connect(qApp, &QGuiApplication::saveStateRequest, disableSessionManagement);
// set auto-resume in kioslaverc (is there a cleaner way?)
KConfig cfg("kioslaverc", KConfig::NoGlobals);
cfg.group(QString()).writeEntry("AutoResume", true);
cfg.sync();
// DropTarget
m_drop = new DropTarget(this);
if (Settings::firstRun()) {
if (KMessageBox::questionTwoActions(this,
i18n("This is the first time you have run KGet.\n"
"Would you like to enable KGet as the download manager for Konqueror?"),
i18n("Konqueror Integration"),
KGuiItem(i18n("Enable")),
KGuiItem(i18n("Do Not Enable")))
== KMessageBox::PrimaryAction) {
Settings::setKonquerorIntegration(true);
m_konquerorIntegration->setChecked(Settings::konquerorIntegration());
slotKonquerorIntegration(true);
}
m_drop->setDropTargetVisible(false);
// reset the FirstRun config option
Settings::setFirstRun(false);
}
if (Settings::showDropTarget() && !m_startWithoutAnimation)
m_drop->setDropTargetVisible(true);
// auto paste stuff
lastClipboard = QApplication::clipboard()->text(QClipboard::Clipboard).trimmed();
clipboardTimer = new QTimer(this);
connect(clipboardTimer, &QTimer::timeout, this, &MainWindow::slotCheckClipboard);
if (Settings::autoPaste())
clipboardTimer->start(1000);
/*if (Settings::webinterfaceEnabled())
m_webinterface = new HttpServer(this);*///TODO: Port to KF5
if (Settings::speedLimit()) {
KGet::setGlobalDownloadLimit(Settings::globalDownloadLimit());
KGet::setGlobalUploadLimit(Settings::globalUploadLimit());
} else {
KGet::setGlobalDownloadLimit(0);
KGet::setGlobalUploadLimit(0);
}
connect(KGet::model(), &TransferTreeModel::transfersAddedEvent, this, &MainWindow::slotUpdateTitlePercent);
connect(KGet::model(), &TransferTreeModel::transfersRemovedEvent, this, &MainWindow::slotUpdateTitlePercent);
connect(KGet::model(), &TransferTreeModel::transfersChangedEvent, this, &MainWindow::slotTransfersChanged);
connect(KGet::model(), &TransferTreeModel::groupsChangedEvent, this, &MainWindow::slotGroupsChanged);
#ifdef DO_KGET_TEST
if (m_doTesting) {
// Unit testing
TestKGet unitTest;
QTest::qExec(&unitTest);
}
#endif
}
void MainWindow::slotToggleDropTarget()
{
m_drop->setDropTargetVisible(!m_drop->isVisible());
}
void MainWindow::slotNewTransfer()
{
NewTransferDialogHandler::showNewTransferDialog(QUrl());
}
void MainWindow::slotImportTransfers()
{
QString filename = QFileDialog::getOpenFileName(nullptr,
i18nc("@title:window", "Open File"),
QString(),
i18n("All Openable Files") + " (*.kgt *.metalink *.meta4 *.torrent)");
if (filename.endsWith(QLatin1String(".kgt"))) {
KGet::load(filename);
return;
}
if (!filename.isEmpty())
KGet::addTransfer(QUrl(filename));
}
void MainWindow::slotUpdateTitlePercent()
{
int percent = transfersPercent();
if (percent != -1) {
setPlainCaption(i18nc("window title including overall download progress in percent", "KGet - %1%", percent));
} else {
setPlainCaption(i18n("KGet"));
}
}
void MainWindow::slotTransfersChanged(QMap<TransferHandler *, Transfer::ChangesFlags> transfers)
{
QMapIterator<TransferHandler *, Transfer::ChangesFlags> it(transfers);
// QList<TransferHandler *> finishedTransfers;
bool update = false;
while (it.hasNext()) {
it.next();
// TransferHandler * transfer = it.key();
Transfer::ChangesFlags transferFlags = it.value();
if (transferFlags & Transfer::Tc_Percent || transferFlags & Transfer::Tc_Status) {
update = true;
break;
}
// qCDebug(KGET_DEBUG) << it.key() << ": " << it.value() << endl;
}
if (update)
slotUpdateTitlePercent();
}
void MainWindow::slotGroupsChanged(QMap<TransferGroupHandler *, TransferGroup::ChangesFlags> groups)
{
bool update = false;
foreach (const TransferGroup::ChangesFlags &groupFlags, groups) {
if (groupFlags & TransferGroup::Gc_Percent) {
update = true;
break;
}
}
if (update)
slotUpdateTitlePercent();
}
void MainWindow::slotQuit()
{
if (KGet::schedulerRunning()) {
if (KMessageBox::warningTwoActions(this,
i18n("Some transfers are still running.\n"
"Are you sure you want to close KGet?"),
i18n("Confirm Quit"),
KStandardGuiItem::quit(),
KStandardGuiItem::cancel(),
"ExitWithActiveTransfers")
== KMessageBox::SecondaryAction)
return;
}
Settings::self()->save();
m_isQuitting = true;
qApp->quit();
}
void MainWindow::slotPreferences()
{
// never reuse the preference dialog, to make sure its settings are always reloaded
auto *dialog = new PreferencesDialog(this, Settings::self());
dialog->setAttribute(Qt::WA_DeleteOnClose);
// keep us informed when the user changes settings
connect(dialog, &KConfigDialog::settingsChanged, this, &MainWindow::slotNewConfig);
dialog->show();
}
void MainWindow::slotExportTransfers()
{
const QString filename = QFileDialog::getSaveFileName(this,
i18nc("@title:window", "Export Transfers"),
QString(),
i18n("KGet Transfer List") + " (*.kgt);;" + i18n("Text File") + " (*.txt)");
if (!filename.isEmpty()) {
const bool plain = !filename.endsWith(QLatin1String(".kgt"));
KGet::save(filename, plain);
}
}
void MainWindow::slotCreateMetalink()
{
auto *dialog = new MetalinkCreator(this);
dialog->setAttribute(Qt::WA_DeleteOnClose);
dialog->show();
}
void MainWindow::slotDeleteGroup()
{
QList<TransferGroupHandler *> groups = KGet::selectedTransferGroups();
if (groups.count() != KGet::allTransferGroups().count()) {
KGet::delGroups(groups);
}
}
void MainWindow::slotRenameGroup()
{
bool ok = true;
QString groupName;
foreach (TransferGroupHandler *it, KGet::selectedTransferGroups()) {
groupName = QInputDialog::getText(this, i18n("Enter Group Name"), i18n("Group name:"), QLineEdit::Normal, it->name(), &ok);
if (ok)
it->setName(groupName);
}
}
void MainWindow::slotSetIconGroup()
{
KIconDialog dialog(this);
QString iconName = dialog.getIcon();
TransferTreeSelectionModel *selModel = KGet::selectionModel();
QModelIndexList indexList = selModel->selectedRows();
if (!iconName.isEmpty()) {
foreach (TransferGroupHandler *group, KGet::selectedTransferGroups()) {
group->setIconName(iconName);
}
}
// Q_EMIT dataChanged(indexList.first(),indexList.last());
}
void MainWindow::slotStartDownload()
{
if (KGet::selectedTransfers().size() == 0 && KGet::selectedTransferGroups().size() == 0) {
slotStartAllDownload();
} else {
slotStartSelectedDownload();
}
}
void MainWindow::slotStartAllDownload()
{
KGet::setSchedulerRunning(true);
}
void MainWindow::slotStartSelectedDownload()
{
KGet::setSuspendScheduler(true);
foreach (TransferHandler *transfer, KGet::selectedTransfers()) {
transfer->start();
}
foreach (TransferGroupHandler *group, KGet::selectedTransferGroups()) {
group->start();
}
KGet::setSuspendScheduler(false);
}
void MainWindow::slotStopDownload()
{
if (KGet::selectedTransfers().size() == 0 && KGet::selectedTransferGroups().size() == 0) {
slotStopAllDownload();
} else {
slotStopSelectedDownload();
}
}
void MainWindow::slotStopAllDownload()
{
KGet::setSchedulerRunning(false);
// This line ensures that each transfer is stopped. In the handler class
// the policy of the transfer will be correctly set to None
foreach (TransferHandler *it, KGet::allTransfers())
it->stop();
}
void MainWindow::slotStopSelectedDownload()
{
KGet::setSuspendScheduler(true);
foreach (TransferHandler *transfer, KGet::selectedTransfers()) {
transfer->stop();
}
foreach (TransferGroupHandler *group, KGet::selectedTransferGroups()) {
group->stop();
}
KGet::setSuspendScheduler(false);
}
void MainWindow::slotDeleteSelected()
{
foreach (TransferHandler *it, KGet::selectedTransfers()) {
if (it->status() != Job::Finished && it->status() != Job::FinishedKeepAlive) {
if (KMessageBox::warningTwoActions(this,
i18np("Are you sure you want to delete the selected transfer?",
"Are you sure you want to delete the selected transfers?",
KGet::selectedTransfers().count()),
i18n("Confirm transfer delete"),
KStandardGuiItem::remove(),
KStandardGuiItem::cancel())
== KMessageBox::SecondaryAction) {
return;
}
break;
}
}
const QList<TransferHandler *> selectedTransfers = KGet::selectedTransfers();
if (!selectedTransfers.isEmpty()) {
foreach (TransferHandler *it, selectedTransfers) {
m_viewsContainer->closeTransferDetails(it); // TODO make it take QList?
}
KGet::delTransfers(KGet::selectedTransfers());
} else {
// no transfers selected, delete groups if any are selected
slotDeleteGroup();
}
}
void MainWindow::slotDeleteSelectedIncludingFiles()
{
const QList<TransferHandler *> selectedTransfers = KGet::selectedTransfers();
if (!selectedTransfers.isEmpty()) {
if (KMessageBox::warningTwoActions(this,
i18np("Are you sure you want to delete the selected transfer including files?",
"Are you sure you want to delete the selected transfers including files?",
selectedTransfers.count()),
i18n("Confirm transfer delete"),
KStandardGuiItem::remove(),
KStandardGuiItem::cancel())
== KMessageBox::SecondaryAction) {
return;
}
foreach (TransferHandler *it, selectedTransfers) {
m_viewsContainer->closeTransferDetails(it); // TODO make it take QList?
}
KGet::delTransfers(KGet::selectedTransfers(), KGet::DeleteFiles);
} else {
// no transfers selected, delete groups if any are selected
slotDeleteGroup();
}
}
void MainWindow::slotRedownloadSelected()
{
foreach (TransferHandler *it, KGet::selectedTransfers()) {
KGet::redownloadTransfer(it);
}
}
void MainWindow::slotPriorityTop()
{
QList<TransferHandler *> selected = KGet::selectedTransfers();
TransferHandler *after = nullptr;
TransferGroupHandler *group = nullptr;
foreach (TransferHandler *transfer, selected) {
if (!transfer) {
continue;
}
// previous transfer was not of the same group, so after has to be reset as the group
if (!group || (group != transfer->group())) {
after = nullptr;
group = transfer->group();
}
KGet::model()->moveTransfer(transfer, group, after);
after = transfer;
}
}
void MainWindow::slotPriorityBottom()
{
QList<TransferHandler *> selected = KGet::selectedTransfers();
QList<TransferHandler *> groupTransfers;
TransferHandler *after = nullptr;
TransferGroupHandler *group = nullptr;
foreach (TransferHandler *transfer, selected) {
if (!transfer) {
continue;
}
// previous transfer was not of the same group, so after has to be reset as the group
if (!group || (group != transfer->group())) {
group = transfer->group();
groupTransfers = group->transfers();
if (groupTransfers.isEmpty()) {
after = nullptr;
} else {
after = groupTransfers.last();
}
}
KGet::model()->moveTransfer(transfer, group, after);
after = transfer;
}
}
void MainWindow::slotPriorityUp()
{
QList<TransferHandler *> selected = KGet::selectedTransfers();
QList<TransferHandler *> groupTransfers;
TransferHandler *after = nullptr;
int newIndex = -1;
TransferGroupHandler *group = nullptr;
foreach (TransferHandler *transfer, selected) {
if (!transfer) {
continue;
}
// previous transfer was not of the same group, so group has to be reset
if (!group || (group != transfer->group())) {
group = transfer->group();
groupTransfers = group->transfers();
}
after = nullptr;
if (!groupTransfers.isEmpty()) {
int index = groupTransfers.indexOf(transfer);
// do not move higher than the first place
if (index > 0) {
// if only Transfers at the top are select do not change their order
if ((index - 1) != newIndex) {
newIndex = index - 1;
if (newIndex - 1 >= 0) {
after = groupTransfers[newIndex - 1];
}
// keep the list with the actual movements synchronized
groupTransfers.move(index, newIndex);
KGet::model()->moveTransfer(transfer, group, after);
} else {
newIndex = index;
}
} else {
newIndex = 0;
}
}
}
}
void MainWindow::slotPriorityDown()
{
QList<TransferHandler *> selected = KGet::selectedTransfers();
QList<TransferHandler *> groupTransfers;
int newIndex = -1;
TransferGroupHandler *group = nullptr;
for (int i = selected.count() - 1; i >= 0; --i) {
TransferHandler *transfer = selected[i];
if (!transfer) {
continue;
}
// previous transfer was not of the same group, so group has to be reset
if (!group || (group != transfer->group())) {
group = transfer->group();
groupTransfers = group->transfers();
}
if (!groupTransfers.isEmpty()) {
int index = groupTransfers.indexOf(transfer);
// do not move lower than the last place
if ((index != -1) && (index + 1 < groupTransfers.count())) {
// if only Transfers at the top are select do not change their order
if ((index + 1) != newIndex) {
newIndex = index + 1;
TransferHandler *after = groupTransfers[newIndex];
// keep the list with the actual movements synchronized
groupTransfers.move(index, newIndex);
KGet::model()->moveTransfer(transfer, group, after);
} else {
newIndex = index;
}
} else {
newIndex = index;
}
}
}
}
void MainWindow::slotTransfersOpenDest()
{
QStringList openedDirs;
foreach (TransferHandler *it, KGet::selectedTransfers()) {
QString directory = it->dest().adjusted(QUrl::RemoveFilename).toString();
if (!openedDirs.contains(directory)) {
auto job = new KIO::OpenUrlJob(QUrl(directory), this);
job->setUiDelegate(KIO::createDefaultJobUiDelegate(KJobUiDelegate::AutoHandlingEnabled, this));
job->start();
openedDirs.append(directory);
}
}
}
void MainWindow::slotTransfersOpenFile()
{
const auto tranfers = KGet::selectedTransfers();
for (TransferHandler *it : tranfers) {
auto job = new KIO::OpenUrlJob(it->dest(), this);
job->setUiDelegate(KIO::createDefaultJobUiDelegate(KJobUiDelegate::AutoHandlingEnabled, this));
job->start();
}
}
void MainWindow::slotTransfersShowDetails()
{
foreach (TransferHandler *it, KGet::selectedTransfers()) {
m_viewsContainer->showTransferDetails(it);
}
}
void MainWindow::slotTransfersCopySourceUrl()
{
foreach (TransferHandler *it, KGet::selectedTransfers()) {
QString sourceurl = it->source().url();
QClipboard *cb = QApplication::clipboard();
cb->setText(sourceurl, QClipboard::Selection);
cb->setText(sourceurl, QClipboard::Clipboard);
}
}
void MainWindow::slotDeleteFinished()
{
foreach (TransferHandler *it, KGet::finishedTransfers()) {
m_viewsContainer->closeTransferDetails(it);
}
KGet::delTransfers(KGet::finishedTransfers());
}
void MainWindow::slotConfigureNotifications()
{
KNotifyConfigWidget::configure(this);
}
void MainWindow::slotSaveMyself()
{
// save last parameters ..
Settings::setMainPosition(pos());
// .. and write config to disk
Settings::self()->save();
}
void MainWindow::slotNewToolbarConfig()
{
createGUI();
}
void MainWindow::slotNewConfig()
{
// Update here properties modified in the config dialog and not
// parsed often by the code. When clicking Ok or Apply of
// PreferencesDialog, this function is called.
if (m_drop)
m_drop->setDropTargetVisible(Settings::showDropTarget(), false);
if (Settings::enableSystemTray() && !m_dock) {
m_dock = new Tray(this);
} else if (!Settings::enableSystemTray() && m_dock) {
setVisible(true);
delete m_dock;
m_dock = nullptr;
}
slotKonquerorIntegration(Settings::konquerorIntegration());
m_konquerorIntegration->setChecked(Settings::konquerorIntegration());
if (clipboardTimer) {
if (Settings::autoPaste())
clipboardTimer->start(1000);
else
clipboardTimer->stop();
}
m_autoPasteAction->setChecked(Settings::autoPaste());
/*if (Settings::webinterfaceEnabled() && !m_webinterface) {
m_webinterface = new HttpServer(this);
} else if (m_webinterface && !Settings::webinterfaceEnabled()) {
delete m_webinterface;
m_webinterface = nullptr;
} else if (m_webinterface) {
m_webinterface->settingsChanged();
}*///TODO: Port to KF5
if (Settings::speedLimit()) {
KGet::setGlobalDownloadLimit(Settings::globalDownloadLimit());
KGet::setGlobalUploadLimit(Settings::globalUploadLimit());
} else {
KGet::setGlobalDownloadLimit(0);
KGet::setGlobalUploadLimit(0);
}
KGet::settingsChanged();
}
void MainWindow::slotToggleAutoPaste()
{
bool autoPaste = !Settings::autoPaste();
Settings::setAutoPaste(autoPaste);
if (autoPaste)
clipboardTimer->start(1000);
else
clipboardTimer->stop();
m_autoPasteAction->setChecked(autoPaste);
}
void MainWindow::slotCheckClipboard()
{
const QString clipData = QApplication::clipboard()->text(QClipboard::Clipboard).trimmed();
if (clipData != lastClipboard) {
lastClipboard = clipData;
if (lastClipboard.isEmpty())
return;
const QUrl url = QUrl(lastClipboard);
if (url.isValid() && !url.scheme().isEmpty() && !url.path().isEmpty() && !url.host().isEmpty() && !url.isLocalFile()) {
bool add = false;
const QString urlString = url.url();
// check the combined whitelist and blacklist
const QList<int> types = Settings::autoPasteTypes();
const QList<int> syntaxes = Settings::autoPastePatternSyntaxes();
const QStringList patterns = Settings::autoPastePatterns();
for (int i = 0; i < types.count(); ++i) {
QRegularExpression regex;
if (syntaxes[i] == AutoPasteModel::Wildcard) {
regex = QRegularExpression::fromWildcard(patterns[i]);
} else {
regex = QRegularExpression(patterns[i]);
}
if (!Settings::autoPasteCaseSensitive()) {
regex.setPatternOptions(QRegularExpression::CaseInsensitiveOption);
}
QRegularExpression rx(QRegularExpression::anchoredPattern(patterns[i]));
if (rx.match(urlString).hasMatch()) {
add = (types[i] == AutoPasteModel::Include);
break;
}
}
if (add) {
KGet::addTransfer(url);
}
}
}
}
void MainWindow::slotTrayKonquerorIntegration(bool enable)
{
slotKonquerorIntegration(enable);
if (!enable && Settings::konquerorIntegration()) {
KGet::showNotification("notification",
i18n("KGet has been temporarily disabled as download manager for Konqueror. "
"If you want to disable it forever, go to Settings->Advanced and disable \"Use "
"as download manager for Konqueror\"."),
"dialog-info");
/*KMessageBox::information(this,
i18n("KGet has been temporarily disabled as download manager for Konqueror. "
"If you want to disable it forever, go to Settings->Advanced and disable \"Use "
"as download manager for Konqueror\"."),
i18n("Konqueror Integration disabled"),
"KonquerorIntegrationDisabled");*/
}
}
void MainWindow::slotKonquerorIntegration(bool konquerorIntegration)
{
KConfig cfgKonqueror("konquerorrc", KConfig::NoGlobals);
cfgKonqueror.group("HTML Settings").writeEntry("DownloadManager", QString(konquerorIntegration ? "kget" : QString()));
cfgKonqueror.sync();
}
void MainWindow::slotShowMenubar()
{
if (m_menubarAction->isChecked())
menuBar()->show();
else
menuBar()->hide();
}
void MainWindow::setSystemTrayDownloading(bool running)
{
qCDebug(KGET_DEBUG);
if (m_dock)
m_dock->setDownloading(running);
}
void MainWindow::slotTransferHistory()
{
auto *history = new TransferHistory();
history->exec();
}
void MainWindow::slotTransferGroupSettings()
{
qCDebug(KGET_DEBUG);
QList<TransferGroupHandler *> list = KGet::selectedTransferGroups();
foreach (TransferGroupHandler *group, list) {
QPointer<GroupSettingsDialog> settings = new GroupSettingsDialog(this, group);
settings->exec();
delete settings;
}
}
void MainWindow::slotTransferSettings()
{
qCDebug(KGET_DEBUG);
QList<TransferHandler *> list = KGet::selectedTransfers();
foreach (TransferHandler *transfer, list) {
QPointer<TransferSettingsDialog> settings = new TransferSettingsDialog(this, transfer);
settings->exec();
delete settings;
}
}
/** slots for link list **/
void MainWindow::slotShowListLinks()
{
auto *link_view = new KGetLinkView(this);
link_view->importUrl();
link_view->show();
}
void MainWindow::slotImportUrl(const QString &url)
{
auto *link_view = new KGetLinkView(this);
link_view->importUrl(url);
link_view->show();
}
/** widget events **/
void MainWindow::closeEvent(QCloseEvent *e)
{
// if the event comes from out the application (close event) we decide between close or hide
// if the event comes from the application (system shutdown) we say goodbye
if (e->spontaneous()) {
e->ignore();
if (!Settings::enableSystemTray())
slotQuit();
else
hide();
}
}
void MainWindow::hideEvent(QHideEvent *)
{
if (!m_isQuitting)
Settings::setShowMain(false);
}
void MainWindow::showEvent(QShowEvent *)
{
Settings::setShowMain(true);
}
void MainWindow::dragEnterEvent(QDragEnterEvent *event)
{
event->setAccepted(event->mimeData()->hasUrls());
}
void MainWindow::dropEvent(QDropEvent *event)
{
QList<QUrl> list = event->mimeData()->urls();
if (!list.isEmpty()) {
if (list.count() == 1 && list.first().url().endsWith(QLatin1String(".kgt"))) {
int msgBoxResult = KMessageBox::questionTwoActionsCancel(this,
i18n("The dropped file is a KGet Transfer List"),
"KGet",
KGuiItem(i18n("&Download"), QIcon::fromTheme("document-save")),
KGuiItem(i18n("&Load transfer list"), QIcon::fromTheme("list-add")),
KStandardGuiItem::cancel());
if (msgBoxResult == KMessageBox::PrimaryAction) // Download
NewTransferDialogHandler::showNewTransferDialog(list.first());
if (msgBoxResult == KMessageBox::SecondaryAction) // Load
KGet::load(list.first().url());
} else {
if (list.count() == 1)
NewTransferDialogHandler::showNewTransferDialog(list.first());
else
NewTransferDialogHandler::showNewTransferDialog(list);
}
} else {
NewTransferDialogHandler::showNewTransferDialog(QUrl());
}
}
#include "moc_mainwindow.cpp"
|