├── LICENSE ├── README.md └── qml_ui ├── bt ├── BtStrings.qml ├── Tools.qml ├── desktop │ ├── AddTDialog.qml │ ├── AddTMenuItem.qml │ ├── BtDetailsTab.qml │ ├── BtSettings.qml │ ├── DisableSMenuItem.qml │ ├── DownloadsSpeedColumnItem.qml │ ├── ForceReannMenuItem.qml │ ├── IgnoreURatioMenuItem.qml │ ├── IntegrationBanner.qml │ ├── IntegrationSettings.qml │ ├── MaxURatioLabel.qml │ ├── StartPostFinishedDownloadsMenuItem.qml │ └── StopPostFinishedDownloadsMenuItem.qml └── mobile │ ├── AddTMenuItem.qml │ ├── AddTPage.qml │ ├── BtDetailsTab.qml │ ├── BtSettings.qml │ ├── DisableSMenuItem.qml │ ├── ForceReannMenuItem.qml │ ├── IgnoreURatioMenuItem.qml │ └── MaxURatioLabel.qml ├── common ├── BaseBaseErrorLabel.qml ├── CenteredDialog.qml ├── ComponentLoader.qml ├── DragArea.qml ├── MyFontMetrics.qml ├── NClicksTrigger.qml ├── PopupHelper.qml ├── ProgressMap.qml ├── ProgressMapControl.qml ├── Tests │ └── AddManyDownloads.qml ├── Tools │ ├── AcceptableUrlTool.qml │ ├── BuildDownloadTools.qml │ ├── DownloadsInterceptionTools.qml │ ├── DownloadsItemContextMenuTools.qml │ ├── DownloadsItemTools.qml │ ├── DownloadsItemsTools.qml │ ├── DownloadsTools.qml │ ├── DownloadsViewTools.qml │ ├── DownloadsWithMissingFilesTools.qml │ ├── EnvTools.qml │ ├── FileIntegrityTools.qml │ ├── JsTools.qml │ ├── MediaFileReadyToPlayTools.qml │ ├── MergeDownloadsTools.qml │ ├── RenameDownloadFileTools.qml │ ├── SchedulerTools.qml │ ├── ScreenTools.qml │ ├── SelectedDownloadsTools.qml │ ├── ShutdownTools.qml │ ├── SnailTools.qml │ ├── SortTools.qml │ ├── TagsTools.qml │ ├── UiReadyTools.qml │ ├── UiSettingsTools.qml │ ├── UpdateTools.qml │ └── qmldir ├── UiCoreBase.qml ├── WaStackView.qml ├── WaSvgImage.qml └── WindowStateSaver.qml ├── desktop ├── Banners │ ├── BannerStrip.qml │ ├── MainBannersStrip.qml │ ├── PluginsBannersManager.qml │ ├── RemoteBannerManager.qml │ ├── ShutdownBanner.qml │ └── UiUpdatedBanner.qml ├── BaseElements │ ├── AddNewTagMenuItem.qml │ ├── AddTag.qml │ ├── AppDragMoveMouseArea.qml │ ├── BannerCustomButton.qml │ ├── BaseButton.qml │ ├── BaseCheckBox.qml │ ├── BaseComboBox.qml │ ├── BaseContextMenu.qml │ ├── BaseContextMenuItem.qml │ ├── BaseContextMenuSeparator.qml │ ├── BaseErrorLabel.qml │ ├── BaseFilterButton.qml │ ├── BaseHandCursorLabel.qml │ ├── BaseHyperLabel.qml │ ├── BaseLabel.qml │ ├── BaseLabelWithTooltip.qml │ ├── BaseRadioButton.qml │ ├── BaseScrollBar.qml │ ├── BaseSelectableLabel.qml │ ├── BaseStringListArea.qml │ ├── BaseTextArea.qml │ ├── BaseTextField.qml │ ├── BaseToolTip.qml │ ├── BatchDownloadTitle.qml │ ├── BitrateComboBox.qml │ ├── CopyMenu.qml │ ├── CustomButton.qml │ ├── DialogWrappedLabel.qml │ ├── DottedBorder.qml │ ├── DownloadQualityCombobox.qml │ ├── DownloadsItemProgressIndicator.qml │ ├── DownloadsTagMenu.qml │ ├── ElidedLabelWithTooltip.qml │ ├── ExportDownloadsTypeCombobox.qml │ ├── FolderCombobox.qml │ ├── GearButton.qml │ ├── HashAlgorithmCombobox.qml │ ├── ItemActionBtn.qml │ ├── LinkWithIcon.qml │ ├── MainFilterButton.qml │ ├── ModalDimmingEffect.qml │ ├── ModulesCombobox.qml │ ├── PickFileButton.qml │ ├── PreferredFileTypeCombobox.qml │ ├── PreferredVideoQualityCombobox.qml │ ├── ProgressIndicator.qml │ ├── Scheduler.qml │ ├── SchedulerTimeCombobox.qml │ ├── SubtitlesMenu.qml │ ├── TablesHeaderItem.qml │ ├── TagButton.qml │ ├── TagLabel.qml │ ├── TagMenu.qml │ ├── TagPalette.qml │ ├── TagsMenuHelper.qml │ ├── TagsPanelActionButton.qml │ ├── TagsPanelMenu.qml │ ├── ToolBarButton.qml │ ├── ToolBarSeparator.qml │ ├── UpdateDialogSubstrate.qml │ └── V2 │ │ ├── BaseMenuItem_V2.qml │ │ ├── BaseMenuSeparator_V2.qml │ │ ├── BaseMenu_V2.qml │ │ ├── BaseScrollBar_V2.qml │ │ ├── BaseText_V2.qml │ │ ├── BaseToolTip_V2.qml │ │ ├── CheckBox_V2.qml │ │ ├── DottedBorder_V2.qml │ │ ├── ElidedTextWithTooltip_V2.qml │ │ ├── Error_V2.qml │ │ ├── MouseAreaWithHand_V2.qml │ │ ├── ProgressBar_V2.qml │ │ ├── SlimProgressBar_V2.qml │ │ ├── SvgImage_V2.qml │ │ ├── ToolbarFlatButton_V2.qml │ │ ├── checkmark_v2.svg │ │ ├── close.svg │ │ ├── expand_more.svg │ │ ├── folder_open.svg │ │ ├── radio_checked.svg │ │ ├── radio_unchecked.svg │ │ ├── triangle_alert.svg │ │ ├── vertical_collapse_arrow.svg │ │ └── vertical_expand_arrow.svg ├── BottomPanel │ ├── BottomPanel.qml │ ├── ConnectionsTab.qml │ ├── CopyLinkMenu.qml │ ├── DetailsTab.qml │ ├── DragDropBottomPanel.qml │ ├── FilesTab.qml │ ├── GeneralTab.qml │ ├── ProgressTab.qml │ └── StatusItem.qml ├── CheckUpdates.qml ├── Dialogs │ ├── AboutDialog.qml │ ├── AddMirrorDialog.qml │ ├── AntivirusSettingsDialog.qml │ ├── AppMessageDialog.qml │ ├── AuthDialog.qml │ ├── AuthenticationDialog.qml │ ├── BaseDialog.qml │ ├── BaseDialogItem.qml │ ├── BaseStandaloneCapableDialog.qml │ ├── BuildDownloadDialog.qml │ ├── ChangeUrlDialog.qml │ ├── ConfirmDeleteExtraneousFilesDialog.qml │ ├── ConnectToRemoteAppDialog.qml │ ├── ConvertDestinationFilesExistsDialog.qml │ ├── ConvertFilesFailedDialog.qml │ ├── CreatePortableDialog.qml │ ├── CustomizeSoundsDialog.qml │ ├── DeleteDownloadsDialog.qml │ ├── DeleteDownloadsDialogSimple.qml │ ├── DeleteDownloadsFailedDialog.qml │ ├── DialogTitle.qml │ ├── DownloadExpiredDialog.qml │ ├── EditTagDialog.qml │ ├── ExportDownloadsDialog.qml │ ├── ExportSettingsDialog.qml │ ├── FileIntegrityDialog.qml │ ├── FilesExistsDialog.qml │ ├── ImportDialog.qml │ ├── ImportExportFailedDialog.qml │ ├── Linux_2023_09_13_Case_Dialog.qml │ ├── MediaFileReadyToPlayDialog.qml │ ├── MergeDownloadsDialog.qml │ ├── MovingFailedDialog.qml │ ├── MovingFolderDialog.qml │ ├── Mp3ConverterDialog.qml │ ├── Mp4ConverterDialog.qml │ ├── PluginBannerDialog.qml │ ├── PrivacyDialog.qml │ ├── QuitConfirmationDialog.qml │ ├── RemoteResourceChangedDialog.qml │ ├── RenameDownloadFileDialog.qml │ ├── ReportSentDialog.qml │ ├── SchedulerDialog.qml │ ├── SelfTestDialog.qml │ ├── ShutdownDialog.qml │ ├── SslDialog.qml │ ├── StandaloneCapableDialogHostWindow.qml │ ├── StandaloneCapableDialogManager.qml │ ├── StopDownloadDialog.qml │ ├── SubmitBugReportDialog.qml │ ├── TagColorDialog.qml │ ├── TuneAndAddDownloadDialog.qml │ ├── TuneDialogElements │ │ ├── AddDateToFileName.qml │ │ ├── BatchLanguage.qml │ │ ├── BatchVideoQuality.qml │ │ ├── ButtonsBlock.qml │ │ ├── DiskSpace.qml │ │ ├── DownloadsList.qml │ │ ├── FileName.qml │ │ ├── FileType.qml │ │ ├── FilesTree.qml │ │ ├── LanguageSelection.qml │ │ ├── NoResumeSupportBlock.qml │ │ ├── PlayAsap.qml │ │ ├── SaveTo.qml │ │ ├── SchedulerBlock.qml │ │ ├── SchedulerCheckbox.qml │ │ ├── Subtitles.qml │ │ ├── Title.qml │ │ ├── Url.qml │ │ ├── V2 │ │ │ └── alert.svg │ │ └── VideoQuality.qml │ ├── UpdateDialog.qml │ ├── V2 │ │ └── close.svg │ └── WhatsNewDialog.qml ├── DownloadIcon.qml ├── DownloadPageBackground.qml ├── DownloadSpeed.qml ├── DownloadWindow.qml ├── DownloadsPage.qml ├── DownloadsView.qml ├── DownloadsViewHeader.qml ├── DownloadsViewHeaderColumnsWidthCalc.qml ├── DownloadsViewHeaderItem.qml ├── DownloadsViewItem.qml ├── DownloadsViewItemContextMenu.qml ├── DownloadsViewItemContextMenu2.qml ├── DownloadsViewItemMouseArea.qml ├── DownloadsViewItemTags.qml ├── DownloadsViewStatusItem.qml ├── DownloadsWindowsManager.qml ├── FilesTree │ ├── FilesTabTablesHeaderItem.qml │ ├── FilesTree.qml │ └── FilesTreeContextMenu.qml ├── MainFiltersBar.qml ├── MainMenu.qml ├── MainStatusBar.qml ├── MainToolbar.qml ├── MainToolbar_V2.qml ├── MainUiManager.qml ├── NativeMenuBar.qml ├── PluginsPage │ ├── PluginsDepsInstallerView.qml │ ├── PluginsPage.qml │ ├── PluginsUiStrings.qml │ ├── PluginsUpdateUiManager.qml │ ├── PluginsView.qml │ └── PluginsViewItem.qml ├── SearchField.qml ├── SelectedDownloadsDragArea.qml ├── SettingsPage │ ├── AdvancedSettings.qml │ ├── AntivirusComboBox.qml │ ├── AntivirusSettings.qml │ ├── BackupComboBox.qml │ ├── BatteryComboBox.qml │ ├── BrowserButton.qml │ ├── BrowserIntegrationSettings.qml │ ├── BrowserListElement.qml │ ├── DockUploadSpeedSetting.qml │ ├── DownloadFolderComboBox.qml │ ├── GeneralSettings.qml │ ├── LanguageComboBox.qml │ ├── ListEditor.qml │ ├── MacrosMenu.qml │ ├── NetworkSettings.qml │ ├── NetworkSpeedLimitComboBox.qml │ ├── RemoteControlSettings.qml │ ├── RestartRequiredLabel.qml │ ├── RightItemLabel.qml │ ├── SettingsCheckBox.qml │ ├── SettingsCheckBox0.qml │ ├── SettingsGridLabel.qml │ ├── SettingsGroupColumn.qml │ ├── SettingsGroupHeader.qml │ ├── SettingsInputError.qml │ ├── SettingsPage.qml │ ├── SettingsRadioButton.qml │ ├── SettingsSubgroupHeader.qml │ ├── SettingsTextField.qml │ ├── ThemeComboBox.qml │ ├── TrafficLimitsSettings.qml │ ├── TroubleshootingSettings.qml │ ├── TumMaxURatioComboBox.qml │ ├── TumNetworkSpeedLimitComboBox.qml │ ├── TumSettingTextField.qml │ └── V2 │ │ ├── edit.svg │ │ ├── link.svg │ │ └── settings_gear.svg ├── Themes │ ├── DarkTheme.qml │ ├── LightTheme.qml │ └── Theme_V2.qml ├── Tools │ ├── BottomPanelTools.qml │ └── KeyboardItemsFocusTools.qml ├── TumComboBox.qml ├── UiCore.qml ├── V2 │ ├── AllDownloadsCheckBoxButton.qml │ ├── AllDownloadsFilterModeButton.qml │ ├── AllDownloadsFilterModeMenuItem.qml │ ├── AllDownloadsSearchField_V2.qml │ ├── AllDownloadsSortModeButton.qml │ ├── AllDownloadsSortModeMenuItem.qml │ ├── BottomPanel │ │ ├── BottomPanel_V2.qml │ │ ├── FilesTab_V2.qml │ │ ├── GeneralTab_V2.qml │ │ ├── close.svg │ │ ├── content_copy.svg │ │ ├── folder.svg │ │ └── folder_mac.svg │ ├── DownloadProgressBar_V2.qml │ ├── DownloadStatus_V2.qml │ ├── DownloadViewItemActionButton_V2.qml │ ├── DownloadsDropArea_V2.qml │ ├── DownloadsViewHeaderColumnsWidthCalc_V2.qml │ ├── DownloadsViewHeaderItem_V2.qml │ ├── DownloadsViewHeader_V2.qml │ ├── DownloadsViewItemStatus_V2.qml │ ├── DownloadsViewItem_V2.qml │ ├── DownloadsView_V2.qml │ ├── FilesTreeHeader_V2.qml │ ├── FilesTreeItem_V2.qml │ ├── FilesTree_V2.qml │ ├── MainStatusBar_V2.qml │ ├── abort_lo.svg │ ├── arrow_drop_down.svg │ ├── arrow_drop_right.svg │ ├── arrow_drop_up.svg │ ├── arrow_left.svg │ ├── batch_download_icon.svg │ ├── close.svg │ ├── delete.svg │ ├── download_priority_up.svg │ ├── file.svg │ ├── file_move.svg │ ├── filter_icon.svg │ ├── folder.svg │ ├── folder_open.svg │ ├── hourglass.svg │ ├── level_up.svg │ ├── main_menu_btn.svg │ ├── menu_dots.svg │ ├── mouse_drop.svg │ ├── pause.svg │ ├── play.svg │ ├── plus_icon.svg │ ├── priority_down.svg │ ├── priority_up.svg │ ├── repeat.svg │ ├── reverse.svg │ ├── search_icon.svg │ ├── single_download_error.svg │ ├── single_download_folder.svg │ ├── single_download_folder_mac.svg │ ├── single_download_pause.svg │ ├── single_download_play.svg │ ├── single_download_scheduler.svg │ ├── snail_off_dark.svg │ ├── snail_off_light.svg │ ├── snail_on_dark.svg │ ├── snail_on_light.svg │ ├── sort_icon.svg │ ├── trash.svg │ └── trending_up.svg ├── WaitingPage.qml └── main.qml ├── images ├── accept.png ├── add.png ├── arr.svg ├── arrow_back.svg ├── arrow_downward.svg ├── arrow_drop_down.svg ├── arrow_forward.svg ├── arrow_right.svg ├── arrow_upward.svg ├── back.png ├── baseline-more_vert.svg ├── checkbox.svg ├── checked_checkbox.svg ├── checkmark.svg ├── circle-question-mark.svg ├── close-circle.svg ├── close.svg ├── common │ ├── dark │ │ └── attention.svg │ └── light │ │ └── attention.svg ├── delete.svg ├── desktop │ ├── alarm.svg │ ├── arrow_down_list.svg │ ├── arrow_down_sbar.svg │ ├── arrow_dwn.svg │ ├── arrow_up.svg │ ├── arrow_up_list.svg │ ├── arrow_up_sbar.svg │ ├── batch.svg │ ├── batch_download.svg │ ├── checkmark.svg │ ├── chrome_logo.svg │ ├── chrome_logo_qtbug_141382.svg │ ├── clean.svg │ ├── dark │ │ ├── alarm.svg │ │ ├── arrow_down_list.svg │ │ ├── arrow_down_sbar.svg │ │ ├── arrow_up_list.svg │ │ ├── arrow_up_sbar.svg │ │ ├── batch.svg │ │ ├── batch_download.svg │ │ ├── checkbox │ │ │ ├── black │ │ │ │ ├── checked.svg │ │ │ │ ├── indeterminate.svg │ │ │ │ └── unchecked.svg │ │ │ ├── blue │ │ │ │ ├── checked.svg │ │ │ │ ├── indeterminate.svg │ │ │ │ ├── radio │ │ │ │ │ ├── checked.svg │ │ │ │ │ └── unchecked.svg │ │ │ │ └── unchecked.svg │ │ │ └── gray │ │ │ │ ├── checked.svg │ │ │ │ ├── indeterminate.svg │ │ │ │ └── unchecked.svg │ │ ├── checkmark.svg │ │ ├── elements │ │ │ ├── arrow_down.svg │ │ │ ├── arrow_down2.svg │ │ │ ├── arrow_up.svg │ │ │ ├── arrow_up2.svg │ │ │ ├── check_mark.svg │ │ │ ├── close.svg │ │ │ ├── close2.svg │ │ │ ├── dots.svg │ │ │ ├── exclamation.svg │ │ │ ├── filled_circle.svg │ │ │ ├── folder.svg │ │ │ ├── plus.svg │ │ │ ├── snail_off.svg │ │ │ ├── snail_on.svg │ │ │ ├── triangle_down.svg │ │ │ ├── triangle_down2.svg │ │ │ ├── triangle_down3.svg │ │ │ └── triangle_right.svg │ │ ├── file.svg │ │ ├── file_small.svg │ │ ├── folder.svg │ │ ├── folder_green.svg │ │ ├── folder_green_t.svg │ │ ├── header_button.svg │ │ ├── header_button_win.svg │ │ ├── line.gif │ │ ├── line.png │ │ ├── line_small.gif │ │ ├── line_small.png │ │ ├── link.svg │ │ ├── magnet.svg │ │ ├── main_toolbar │ │ │ ├── arrow_left.svg │ │ │ ├── delete.svg │ │ │ ├── delete_check.svg │ │ │ ├── down.svg │ │ │ ├── down_check.svg │ │ │ ├── folder.svg │ │ │ ├── folder_check.svg │ │ │ ├── menu.svg │ │ │ ├── pause_all.svg │ │ │ ├── pause_check.svg │ │ │ ├── play_all.svg │ │ │ ├── play_check.svg │ │ │ ├── plus.svg │ │ │ ├── reverse.svg │ │ │ ├── search.svg │ │ │ ├── search_2.svg │ │ │ ├── up.svg │ │ │ └── up_check.svg │ │ ├── main_toolbar_mac │ │ │ ├── arrow_left.svg │ │ │ ├── delete.svg │ │ │ ├── delete_check.svg │ │ │ ├── down.svg │ │ │ ├── down_check.svg │ │ │ ├── folder.svg │ │ │ ├── folder_check.svg │ │ │ ├── menu.svg │ │ │ ├── pause_all.svg │ │ │ ├── pause_check.svg │ │ │ ├── play_all.svg │ │ │ ├── play_check.svg │ │ │ ├── plus.svg │ │ │ ├── reverse.svg │ │ │ ├── search.svg │ │ │ ├── up.svg │ │ │ └── up_check.svg │ │ ├── pause.svg │ │ ├── pause2.svg │ │ ├── play.svg │ │ ├── play2.svg │ │ ├── progress_clear.svg │ │ ├── progress_fill.svg │ │ ├── restart.svg │ │ ├── user_sort.svg │ │ └── youtube.svg │ ├── edge_logo.svg │ ├── edit_list.svg │ ├── file.svg │ ├── file_small.svg │ ├── firefox_logo.svg │ ├── firefox_logo_qtbug_141382.svg │ ├── folder.svg │ ├── folder_green.svg │ ├── folder_green_t.svg │ ├── header_button.svg │ ├── header_button_win.svg │ ├── light │ │ ├── checkbox │ │ │ ├── black │ │ │ │ ├── checked.svg │ │ │ │ ├── indeterminate.svg │ │ │ │ └── unchecked.svg │ │ │ ├── blue │ │ │ │ ├── checked.svg │ │ │ │ ├── indeterminate.svg │ │ │ │ ├── radio │ │ │ │ │ ├── checked.svg │ │ │ │ │ └── unchecked.svg │ │ │ │ └── unchecked.svg │ │ │ └── gray │ │ │ │ ├── checked.svg │ │ │ │ ├── indeterminate.svg │ │ │ │ └── unchecked.svg │ │ ├── elements │ │ │ ├── arrow_down.svg │ │ │ ├── arrow_down2.svg │ │ │ ├── arrow_up.svg │ │ │ ├── arrow_up2.svg │ │ │ ├── check_mark.svg │ │ │ ├── close.svg │ │ │ ├── close2.svg │ │ │ ├── dots.svg │ │ │ ├── exclamation.svg │ │ │ ├── filled_circle.svg │ │ │ ├── folder.svg │ │ │ ├── plus.svg │ │ │ ├── snail_off.svg │ │ │ ├── snail_on.svg │ │ │ ├── triangle_down.svg │ │ │ ├── triangle_down2.svg │ │ │ ├── triangle_down3.svg │ │ │ └── triangle_right.svg │ │ ├── main_toolbar │ │ │ ├── arrow_left.svg │ │ │ ├── delete.svg │ │ │ ├── delete_check.svg │ │ │ ├── down.svg │ │ │ ├── down_check.svg │ │ │ ├── folder.svg │ │ │ ├── folder_check.svg │ │ │ ├── menu.svg │ │ │ ├── pause_all.svg │ │ │ ├── pause_check.svg │ │ │ ├── play_all.svg │ │ │ ├── play_check.svg │ │ │ ├── plus.svg │ │ │ ├── reverse.svg │ │ │ ├── search.svg │ │ │ ├── search_2.svg │ │ │ ├── up.svg │ │ │ └── up_check.svg │ │ ├── main_toolbar_mac │ │ │ ├── arrow_left.svg │ │ │ ├── delete.svg │ │ │ ├── delete_check.svg │ │ │ ├── down.svg │ │ │ ├── down_check.svg │ │ │ ├── folder.svg │ │ │ ├── folder_check.svg │ │ │ ├── menu.svg │ │ │ ├── pause_all.svg │ │ │ ├── pause_check.svg │ │ │ ├── play_all.svg │ │ │ ├── play_check.svg │ │ │ ├── plus.svg │ │ │ ├── reverse.svg │ │ │ ├── search.svg │ │ │ ├── up.svg │ │ │ └── up_check.svg │ │ └── user_sort.svg │ ├── line.gif │ ├── line.png │ ├── line_small.gif │ ├── line_small.png │ ├── link.svg │ ├── magnet.svg │ ├── menu_arrow.svg │ ├── mode_low.svg │ ├── mode_medium.svg │ ├── mode_snail.svg │ ├── ok_white.svg │ ├── pause.svg │ ├── pause2.svg │ ├── pick_file.svg │ ├── play.svg │ ├── play2.svg │ ├── plugin.svg │ ├── preloading.gif │ ├── priority_down.svg │ ├── priority_down_active.svg │ ├── priority_up.svg │ ├── priority_up_active.svg │ ├── restart.svg │ ├── search_clear_mac.svg │ ├── ssl_warning.svg │ └── youtube.svg ├── download-item │ ├── folder.svg │ ├── pause.svg │ └── start.svg ├── download_folder.svg ├── drawer.png ├── external_link.svg ├── fdmlogo.png ├── file.png ├── flags │ ├── ar_EG.svg │ ├── bg_BG.svg │ ├── bn_BD.svg │ ├── cs_CZ.svg │ ├── da_DK.svg │ ├── de_DE.svg │ ├── el_GR.svg │ ├── en_US.svg │ ├── es_ES.svg │ ├── fa.svg │ ├── fa_IR.svg │ ├── fi_FI.svg │ ├── fr_FR.svg │ ├── hi_IN.svg │ ├── hu_HU.svg │ ├── id_ID.svg │ ├── it_IT.svg │ ├── ja_JP.svg │ ├── ko_KR.svg │ ├── lt_LT.svg │ ├── lv_LV.svg │ ├── my_MM.svg │ ├── nl_NL.svg │ ├── pl_PL.svg │ ├── pt_BR.svg │ ├── ro_RO.svg │ ├── ru_RU.svg │ ├── si_LK.svg │ ├── sl_SI.svg │ ├── sv_SE.svg │ ├── tr_TR.svg │ ├── uk_UA.svg │ ├── vi_VN.svg │ ├── zh_CN.svg │ └── zh_TW.svg ├── folder.png ├── folder.svg ├── folder_dark.png ├── folder_selected.png ├── folder_selected_dark.png ├── gear.svg ├── hamburger.png ├── hamburger.svg ├── hamburger_dark.png ├── low.svg ├── medium.svg ├── menu-right.svg ├── mobile │ ├── about.svg │ ├── add_folder.svg │ ├── arrow.svg │ ├── arrow_back.svg │ ├── arrow_down.svg │ ├── arrow_forward.svg │ ├── arrow_right.svg │ ├── arrow_up.svg │ ├── asc.svg │ ├── browser.svg │ ├── bug_report.svg │ ├── burger.svg │ ├── check.svg │ ├── checkbox.svg │ ├── cross.svg │ ├── dark │ │ ├── infinite_active.gif │ │ ├── infinite_inactive.png │ │ ├── progressmap_clear.svg │ │ └── progressmap_fill.svg │ ├── desc.svg │ ├── error.svg │ ├── fdmlogo.svg │ ├── flag_down.svg │ ├── flag_up.svg │ ├── folder.svg │ ├── help.svg │ ├── light │ │ ├── infinite_active.gif │ │ ├── infinite_inactive.png │ │ ├── progressmap_clear.svg │ │ └── progressmap_fill.svg │ ├── menu.svg │ ├── music_note.svg │ ├── music_off.svg │ ├── open_folder.svg │ ├── pause.svg │ ├── play.svg │ ├── plus.svg │ ├── queue_music.svg │ ├── quit.svg │ ├── rc.svg │ ├── repeat.svg │ ├── scheduler.svg │ ├── search.svg │ ├── select_all.svg │ ├── selected_delete.svg │ ├── selected_pause.svg │ ├── selected_play.svg │ ├── self_test.svg │ ├── settings.svg │ ├── share.svg │ ├── snail.png │ ├── sort_menu.svg │ ├── support.svg │ ├── unknown_extension.svg │ └── unselect_all.svg ├── move-to-folder.svg ├── pause.svg ├── pause_all.png ├── pause_all_dark.png ├── pause_selected.png ├── pause_selected_dark.png ├── play.svg ├── plus.png ├── progress_clear.svg ├── progress_fill.svg ├── refresh.svg ├── reject.png ├── schedule.svg ├── search.png ├── search.svg ├── search_dark.png ├── snail.png ├── start_all.png ├── start_all_dark.png ├── start_selected.png ├── start_selected_dark.png ├── trash.png ├── trash_dark.png ├── trash_selected.png ├── trash_selected_dark.png ├── trayicon.png ├── unchecked_checkbox.svg ├── warning.svg └── warning_yellow.svg ├── mobile ├── AddMirrorPage.qml ├── AuthenticationPage.qml ├── BaseElements │ ├── ActionButton.qml │ ├── BaseCheckBox.qml │ ├── BaseComboBox.qml │ ├── BaseErrorLabel.qml │ ├── BaseFilterButton.qml │ ├── BaseLabel.qml │ ├── BaseMenuItem.qml │ ├── BaseMenuSeparator.qml │ ├── BaseStringListArea.qml │ ├── BaseSwitch.qml │ ├── BaseTextField.qml │ ├── BaseToolBar.qml │ ├── BitrateComboBox.qml │ ├── DialogButton.qml │ ├── DialogTitle.qml │ ├── DownloadIcon.qml │ ├── ExtraToolBar.qml │ ├── ModeButton.qml │ ├── PageHeaderWithBackArrow.qml │ ├── PriorityMenuItem.qml │ ├── ProgressIndicator.qml │ ├── SchedulerButton.qml │ ├── SelectModeBarButton.qml │ ├── TablesHeaderItem.qml │ ├── TimePicker.qml │ ├── ToolBarShadow.qml │ ├── ToolbarBackButton.qml │ ├── ToolbarButton.qml │ ├── ToolbarLabel.qml │ ├── VoteDialog.qml │ └── VoteDialogButton.qml ├── BuildDownloadPage.qml ├── ChangeUrlPage.qml ├── Dialogs │ ├── AboutDialog.qml │ ├── AuthDialog.qml │ ├── BrowserIntroDialog.qml │ ├── ConfirmDeleteExtraneousFilesDialog.qml │ ├── ConnectToRemoteAppDialog.qml │ ├── ConvertDestinationFilesExistsDialog.qml │ ├── ConvertFilesFailedDialog.qml │ ├── CreateFolderDialog.qml │ ├── DeleteDownloadsDialog.qml │ ├── DeleteDownloadsFailedDialog.qml │ ├── DownloadExpiredDialog.qml │ ├── FileManagerSupportDialog.qml │ ├── FilesExistsDialog.qml │ ├── MergeDownloadsDialog.qml │ ├── MobileDataUsageDialog.qml │ ├── MovingFailedDialog.qml │ ├── OsPermissionsDialog.qml │ ├── PrivacyDialog.qml │ ├── QuitConfirmationDialog.qml │ ├── RemoteResourceChangedDialog.qml │ ├── SchedulerDialog.qml │ ├── SelectSortFieldDialog.qml │ ├── SslDialog.qml │ ├── StopDownloadDialog.qml │ ├── SubmitBugReportDialog.qml │ └── TumModeDialog │ │ ├── TumModeBlock.qml │ │ └── TumModeDialog.qml ├── DownloadItemPage │ ├── ConnectionsTab.qml │ ├── DetailsTab.qml │ ├── Files.qml │ ├── GeneralTab.qml │ ├── ItemPageFilterButton.qml │ ├── Page.qml │ └── Toolbar.qml ├── DownloadsPage.qml ├── DownloadsView.qml ├── DownloadsViewItem.qml ├── DownloadsViewItemContextMenu.qml ├── DownloadsViewItemFileInfo.qml ├── DownloadsViewTestModel.qml ├── FileIntegrityPage.qml ├── FilePicker │ ├── FilePicker.qml │ ├── FilePickerPage.qml │ └── FilePickerSortDialog.qml ├── FilesTree │ ├── FilesTabTablesHeaderItem.qml │ ├── FilesTree.qml │ └── FilesTreeContextMenu.qml ├── LeftDrawer.qml ├── MainFilterButton.qml ├── MainFiltersBar.qml ├── MainToolbar.qml ├── MainToolbarStatus.qml ├── Mp3ConverterPage.qml ├── Mp4ConverterPage.qml ├── RenameDownloadFilePage.qml ├── SearchToolbar.qml ├── SelectModeBar.qml ├── SelectModeTopBar.qml ├── SettingsPage │ ├── AdvancedSettings.qml │ ├── BackupSlider.qml │ ├── BatteryComboBox.qml │ ├── DownloadsSettings.qml │ ├── ExistingFileReactionCombobox.qml │ ├── FixedDownloadFolderCombobox.qml │ ├── GeneralSettings.qml │ ├── GeneralSettings2.qml │ ├── InvalidSettingsMessageDialog.qml │ ├── LanguageDialog.qml │ ├── MacrosMenu.qml │ ├── MaxConnectionsWrapper.qml │ ├── MaxURatioComboBox.qml │ ├── MaxURatioComboBoxWrapper.qml │ ├── NetworkSettings.qml │ ├── NetworkSpeedLimitComboBox.qml │ ├── RemoteControlSettings.qml │ ├── RestartRequiredLabel.qml │ ├── SettingsGroupHeader.qml │ ├── SettingsItem.qml │ ├── SettingsPage.qml │ ├── SettingsRadioButton.qml │ ├── SettingsSeparator.qml │ ├── SettingsTextField.qml │ ├── SoundsSettings.qml │ ├── SpeedComboBoxWrapper.qml │ ├── SwitchSetting.qml │ ├── ThemeComboBox.qml │ ├── TrafficLimitsSettings.qml │ ├── TroubleshootingSettings.qml │ ├── TumMaxURatioComboBox.qml │ ├── TumNetworkSpeedLimitComboBox.qml │ └── TumSettingTextField.qml ├── SnailButton.qml ├── Themes │ ├── DarkTheme.qml │ └── LightTheme.qml ├── Tools │ └── AdaptiveTools.qml ├── TuneAndAddDownloadPage.qml ├── VoteBlock.qml ├── WaitingPage.qml └── main.qml └── qt5compat ├── ColorDialog.qml ├── ColorOverlay.qml ├── DropShadow.qml ├── FastBlur.qml ├── FileDialog.qml ├── MessageDialog.qml ├── QTBUG.qml ├── QtRegExpValidator.qml ├── RectangularGlow.qml ├── qt5 ├── ColorDialog.qml ├── ColorOverlay.qml ├── DropShadow.qml ├── FastBlur.qml ├── FileDialogImpl.qml ├── MessageDialog.qml ├── QTBUGImpl.qml ├── QtRegExpValidator.qml ├── RectangularGlow.qml └── blank.qml └── qt6 ├── ColorDialog.qml ├── ColorOverlay.qml ├── DropShadow.qml ├── FastBlur.qml ├── FileDialogImpl.qml ├── MessageDialog.qml ├── QTBUGImpl.qml ├── QtRegExpValidator.qml ├── RectangularGlow.qml └── blank.qml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/README.md -------------------------------------------------------------------------------- /qml_ui/bt/BtStrings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/BtStrings.qml -------------------------------------------------------------------------------- /qml_ui/bt/Tools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/Tools.qml -------------------------------------------------------------------------------- /qml_ui/bt/desktop/AddTDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/desktop/AddTDialog.qml -------------------------------------------------------------------------------- /qml_ui/bt/desktop/AddTMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/desktop/AddTMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/bt/desktop/BtDetailsTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/desktop/BtDetailsTab.qml -------------------------------------------------------------------------------- /qml_ui/bt/desktop/BtSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/desktop/BtSettings.qml -------------------------------------------------------------------------------- /qml_ui/bt/desktop/DisableSMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/desktop/DisableSMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/bt/desktop/DownloadsSpeedColumnItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/desktop/DownloadsSpeedColumnItem.qml -------------------------------------------------------------------------------- /qml_ui/bt/desktop/ForceReannMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/desktop/ForceReannMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/bt/desktop/IgnoreURatioMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/desktop/IgnoreURatioMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/bt/desktop/IntegrationBanner.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/desktop/IntegrationBanner.qml -------------------------------------------------------------------------------- /qml_ui/bt/desktop/IntegrationSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/desktop/IntegrationSettings.qml -------------------------------------------------------------------------------- /qml_ui/bt/desktop/MaxURatioLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/desktop/MaxURatioLabel.qml -------------------------------------------------------------------------------- /qml_ui/bt/mobile/AddTMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/mobile/AddTMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/bt/mobile/AddTPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/mobile/AddTPage.qml -------------------------------------------------------------------------------- /qml_ui/bt/mobile/BtDetailsTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/mobile/BtDetailsTab.qml -------------------------------------------------------------------------------- /qml_ui/bt/mobile/BtSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/mobile/BtSettings.qml -------------------------------------------------------------------------------- /qml_ui/bt/mobile/DisableSMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/mobile/DisableSMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/bt/mobile/ForceReannMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/mobile/ForceReannMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/bt/mobile/IgnoreURatioMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/mobile/IgnoreURatioMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/bt/mobile/MaxURatioLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/bt/mobile/MaxURatioLabel.qml -------------------------------------------------------------------------------- /qml_ui/common/BaseBaseErrorLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/BaseBaseErrorLabel.qml -------------------------------------------------------------------------------- /qml_ui/common/CenteredDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/CenteredDialog.qml -------------------------------------------------------------------------------- /qml_ui/common/ComponentLoader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/ComponentLoader.qml -------------------------------------------------------------------------------- /qml_ui/common/DragArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/DragArea.qml -------------------------------------------------------------------------------- /qml_ui/common/MyFontMetrics.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/MyFontMetrics.qml -------------------------------------------------------------------------------- /qml_ui/common/NClicksTrigger.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/NClicksTrigger.qml -------------------------------------------------------------------------------- /qml_ui/common/PopupHelper.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/PopupHelper.qml -------------------------------------------------------------------------------- /qml_ui/common/ProgressMap.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/ProgressMap.qml -------------------------------------------------------------------------------- /qml_ui/common/ProgressMapControl.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/ProgressMapControl.qml -------------------------------------------------------------------------------- /qml_ui/common/Tests/AddManyDownloads.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tests/AddManyDownloads.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/AcceptableUrlTool.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/AcceptableUrlTool.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/BuildDownloadTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/BuildDownloadTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/DownloadsInterceptionTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/DownloadsInterceptionTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/DownloadsItemContextMenuTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/DownloadsItemContextMenuTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/DownloadsItemTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/DownloadsItemTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/DownloadsItemsTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/DownloadsItemsTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/DownloadsTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/DownloadsTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/DownloadsViewTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/DownloadsViewTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/DownloadsWithMissingFilesTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/DownloadsWithMissingFilesTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/EnvTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/EnvTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/FileIntegrityTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/FileIntegrityTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/JsTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/JsTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/MediaFileReadyToPlayTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/MediaFileReadyToPlayTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/MergeDownloadsTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/MergeDownloadsTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/RenameDownloadFileTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/RenameDownloadFileTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/SchedulerTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/SchedulerTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/ScreenTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/ScreenTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/SelectedDownloadsTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/SelectedDownloadsTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/ShutdownTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/ShutdownTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/SnailTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/SnailTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/SortTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/SortTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/TagsTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/TagsTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/UiReadyTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/UiReadyTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/UiSettingsTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/UiSettingsTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/UpdateTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/UpdateTools.qml -------------------------------------------------------------------------------- /qml_ui/common/Tools/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/Tools/qmldir -------------------------------------------------------------------------------- /qml_ui/common/UiCoreBase.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/UiCoreBase.qml -------------------------------------------------------------------------------- /qml_ui/common/WaStackView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/WaStackView.qml -------------------------------------------------------------------------------- /qml_ui/common/WaSvgImage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/WaSvgImage.qml -------------------------------------------------------------------------------- /qml_ui/common/WindowStateSaver.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/common/WindowStateSaver.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Banners/BannerStrip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Banners/BannerStrip.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Banners/MainBannersStrip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Banners/MainBannersStrip.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Banners/PluginsBannersManager.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Banners/PluginsBannersManager.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Banners/RemoteBannerManager.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Banners/RemoteBannerManager.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Banners/ShutdownBanner.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Banners/ShutdownBanner.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Banners/UiUpdatedBanner.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Banners/UiUpdatedBanner.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/AddNewTagMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/AddNewTagMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/AddTag.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/AddTag.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/AppDragMoveMouseArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/AppDragMoveMouseArea.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BannerCustomButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BannerCustomButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseCheckBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseCheckBox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseComboBox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseContextMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseContextMenu.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseContextMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseContextMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseErrorLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseErrorLabel.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseFilterButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseFilterButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseHandCursorLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseHandCursorLabel.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseHyperLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseHyperLabel.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseLabel.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseLabelWithTooltip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseLabelWithTooltip.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseRadioButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseRadioButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseScrollBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseScrollBar.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseSelectableLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseSelectableLabel.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseStringListArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseStringListArea.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseTextArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseTextArea.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseTextField.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BaseToolTip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BaseToolTip.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BatchDownloadTitle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BatchDownloadTitle.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/BitrateComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/BitrateComboBox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/CopyMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/CopyMenu.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/CustomButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/CustomButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/DialogWrappedLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/DialogWrappedLabel.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/DottedBorder.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/DottedBorder.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/DownloadsTagMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/DownloadsTagMenu.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/ElidedLabelWithTooltip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/ElidedLabelWithTooltip.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/FolderCombobox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/FolderCombobox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/GearButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/GearButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/HashAlgorithmCombobox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/HashAlgorithmCombobox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/ItemActionBtn.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/ItemActionBtn.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/LinkWithIcon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/LinkWithIcon.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/MainFilterButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/MainFilterButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/ModalDimmingEffect.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/ModalDimmingEffect.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/ModulesCombobox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/ModulesCombobox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/PickFileButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/PickFileButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/ProgressIndicator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/ProgressIndicator.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/Scheduler.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/Scheduler.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/SchedulerTimeCombobox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/SchedulerTimeCombobox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/SubtitlesMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/SubtitlesMenu.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/TablesHeaderItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/TablesHeaderItem.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/TagButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/TagButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/TagLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/TagLabel.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/TagMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/TagMenu.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/TagPalette.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/TagPalette.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/TagsMenuHelper.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/TagsMenuHelper.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/TagsPanelActionButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/TagsPanelActionButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/TagsPanelMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/TagsPanelMenu.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/ToolBarButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/ToolBarButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/ToolBarSeparator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/ToolBarSeparator.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/UpdateDialogSubstrate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/UpdateDialogSubstrate.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/BaseMenuItem_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/BaseMenuItem_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/BaseMenu_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/BaseMenu_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/BaseScrollBar_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/BaseScrollBar_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/BaseText_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/BaseText_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/BaseToolTip_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/BaseToolTip_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/CheckBox_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/CheckBox_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/DottedBorder_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/DottedBorder_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/Error_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/Error_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/ProgressBar_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/ProgressBar_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/SlimProgressBar_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/SlimProgressBar_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/SvgImage_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/SvgImage_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/checkmark_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/checkmark_v2.svg -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/close.svg -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/expand_more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/expand_more.svg -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/folder_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/folder_open.svg -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/radio_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/radio_checked.svg -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/radio_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/radio_unchecked.svg -------------------------------------------------------------------------------- /qml_ui/desktop/BaseElements/V2/triangle_alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BaseElements/V2/triangle_alert.svg -------------------------------------------------------------------------------- /qml_ui/desktop/BottomPanel/BottomPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BottomPanel/BottomPanel.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BottomPanel/ConnectionsTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BottomPanel/ConnectionsTab.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BottomPanel/CopyLinkMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BottomPanel/CopyLinkMenu.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BottomPanel/DetailsTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BottomPanel/DetailsTab.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BottomPanel/DragDropBottomPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BottomPanel/DragDropBottomPanel.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BottomPanel/FilesTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BottomPanel/FilesTab.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BottomPanel/GeneralTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BottomPanel/GeneralTab.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BottomPanel/ProgressTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BottomPanel/ProgressTab.qml -------------------------------------------------------------------------------- /qml_ui/desktop/BottomPanel/StatusItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/BottomPanel/StatusItem.qml -------------------------------------------------------------------------------- /qml_ui/desktop/CheckUpdates.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/CheckUpdates.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/AboutDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/AboutDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/AddMirrorDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/AddMirrorDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/AntivirusSettingsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/AntivirusSettingsDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/AppMessageDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/AppMessageDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/AuthDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/AuthDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/AuthenticationDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/AuthenticationDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/BaseDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/BaseDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/BaseDialogItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/BaseDialogItem.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/BaseStandaloneCapableDialog.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.12 2 | 3 | BaseDialog 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/BuildDownloadDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/BuildDownloadDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/ChangeUrlDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/ChangeUrlDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/ConnectToRemoteAppDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/ConnectToRemoteAppDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/ConvertFilesFailedDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/ConvertFilesFailedDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/CreatePortableDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/CreatePortableDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/CustomizeSoundsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/CustomizeSoundsDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/DeleteDownloadsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/DeleteDownloadsDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/DeleteDownloadsDialogSimple.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/DeleteDownloadsDialogSimple.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/DeleteDownloadsFailedDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/DeleteDownloadsFailedDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/DialogTitle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/DialogTitle.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/DownloadExpiredDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/DownloadExpiredDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/EditTagDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/EditTagDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/ExportDownloadsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/ExportDownloadsDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/ExportSettingsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/ExportSettingsDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/FileIntegrityDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/FileIntegrityDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/FilesExistsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/FilesExistsDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/ImportDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/ImportDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/ImportExportFailedDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/ImportExportFailedDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/MediaFileReadyToPlayDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/MediaFileReadyToPlayDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/MergeDownloadsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/MergeDownloadsDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/MovingFailedDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/MovingFailedDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/MovingFolderDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/MovingFolderDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/Mp3ConverterDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/Mp3ConverterDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/Mp4ConverterDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/Mp4ConverterDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/PluginBannerDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/PluginBannerDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/PrivacyDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/PrivacyDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/QuitConfirmationDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/QuitConfirmationDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/RemoteResourceChangedDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/RemoteResourceChangedDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/RenameDownloadFileDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/RenameDownloadFileDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/ReportSentDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/ReportSentDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/SchedulerDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/SchedulerDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/SelfTestDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/SelfTestDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/ShutdownDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/ShutdownDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/SslDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/SslDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/StopDownloadDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/StopDownloadDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/SubmitBugReportDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/SubmitBugReportDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/TagColorDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/TagColorDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/TuneAndAddDownloadDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/TuneAndAddDownloadDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/TuneDialogElements/FileName.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/TuneDialogElements/FileName.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/TuneDialogElements/FileType.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/TuneDialogElements/FileType.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/TuneDialogElements/PlayAsap.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/TuneDialogElements/PlayAsap.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/TuneDialogElements/SaveTo.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/TuneDialogElements/SaveTo.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/TuneDialogElements/Title.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/TuneDialogElements/Title.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/TuneDialogElements/Url.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/TuneDialogElements/Url.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/TuneDialogElements/V2/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/TuneDialogElements/V2/alert.svg -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/UpdateDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/UpdateDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/V2/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/V2/close.svg -------------------------------------------------------------------------------- /qml_ui/desktop/Dialogs/WhatsNewDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Dialogs/WhatsNewDialog.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadIcon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadIcon.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadPageBackground.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadPageBackground.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadSpeed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadSpeed.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadWindow.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadsPage.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadsView.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadsViewHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadsViewHeader.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadsViewHeaderColumnsWidthCalc.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadsViewHeaderColumnsWidthCalc.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadsViewHeaderItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadsViewHeaderItem.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadsViewItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadsViewItem.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadsViewItemContextMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadsViewItemContextMenu.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadsViewItemContextMenu2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadsViewItemContextMenu2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadsViewItemMouseArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadsViewItemMouseArea.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadsViewItemTags.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadsViewItemTags.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadsViewStatusItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadsViewStatusItem.qml -------------------------------------------------------------------------------- /qml_ui/desktop/DownloadsWindowsManager.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/DownloadsWindowsManager.qml -------------------------------------------------------------------------------- /qml_ui/desktop/FilesTree/FilesTabTablesHeaderItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/FilesTree/FilesTabTablesHeaderItem.qml -------------------------------------------------------------------------------- /qml_ui/desktop/FilesTree/FilesTree.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/FilesTree/FilesTree.qml -------------------------------------------------------------------------------- /qml_ui/desktop/FilesTree/FilesTreeContextMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/FilesTree/FilesTreeContextMenu.qml -------------------------------------------------------------------------------- /qml_ui/desktop/MainFiltersBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/MainFiltersBar.qml -------------------------------------------------------------------------------- /qml_ui/desktop/MainMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/MainMenu.qml -------------------------------------------------------------------------------- /qml_ui/desktop/MainStatusBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/MainStatusBar.qml -------------------------------------------------------------------------------- /qml_ui/desktop/MainToolbar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/MainToolbar.qml -------------------------------------------------------------------------------- /qml_ui/desktop/MainToolbar_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/MainToolbar_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/MainUiManager.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/MainUiManager.qml -------------------------------------------------------------------------------- /qml_ui/desktop/NativeMenuBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/NativeMenuBar.qml -------------------------------------------------------------------------------- /qml_ui/desktop/PluginsPage/PluginsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/PluginsPage/PluginsPage.qml -------------------------------------------------------------------------------- /qml_ui/desktop/PluginsPage/PluginsUiStrings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/PluginsPage/PluginsUiStrings.qml -------------------------------------------------------------------------------- /qml_ui/desktop/PluginsPage/PluginsUpdateUiManager.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/PluginsPage/PluginsUpdateUiManager.qml -------------------------------------------------------------------------------- /qml_ui/desktop/PluginsPage/PluginsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/PluginsPage/PluginsView.qml -------------------------------------------------------------------------------- /qml_ui/desktop/PluginsPage/PluginsViewItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/PluginsPage/PluginsViewItem.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SearchField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SearchField.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SelectedDownloadsDragArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SelectedDownloadsDragArea.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/AdvancedSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/AdvancedSettings.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/AntivirusComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/AntivirusComboBox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/AntivirusSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/AntivirusSettings.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/BackupComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/BackupComboBox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/BatteryComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/BatteryComboBox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/BrowserButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/BrowserButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/BrowserListElement.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/BrowserListElement.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/DockUploadSpeedSetting.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/DockUploadSpeedSetting.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/DownloadFolderComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/DownloadFolderComboBox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/GeneralSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/GeneralSettings.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/LanguageComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/LanguageComboBox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/ListEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/ListEditor.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/MacrosMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/MacrosMenu.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/NetworkSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/NetworkSettings.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/RemoteControlSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/RemoteControlSettings.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/RestartRequiredLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/RestartRequiredLabel.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/RightItemLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/RightItemLabel.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/SettingsCheckBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/SettingsCheckBox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/SettingsCheckBox0.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/SettingsCheckBox0.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/SettingsGridLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/SettingsGridLabel.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/SettingsGroupColumn.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/SettingsGroupColumn.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/SettingsGroupHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/SettingsGroupHeader.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/SettingsInputError.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/SettingsInputError.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/SettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/SettingsPage.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/SettingsRadioButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/SettingsRadioButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/SettingsSubgroupHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/SettingsSubgroupHeader.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/SettingsTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/SettingsTextField.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/ThemeComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/ThemeComboBox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/TrafficLimitsSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/TrafficLimitsSettings.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/TumMaxURatioComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/TumMaxURatioComboBox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/TumSettingTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/TumSettingTextField.qml -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/V2/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/V2/edit.svg -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/V2/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/V2/link.svg -------------------------------------------------------------------------------- /qml_ui/desktop/SettingsPage/V2/settings_gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/SettingsPage/V2/settings_gear.svg -------------------------------------------------------------------------------- /qml_ui/desktop/Themes/DarkTheme.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Themes/DarkTheme.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Themes/LightTheme.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Themes/LightTheme.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Themes/Theme_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Themes/Theme_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Tools/BottomPanelTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Tools/BottomPanelTools.qml -------------------------------------------------------------------------------- /qml_ui/desktop/Tools/KeyboardItemsFocusTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/Tools/KeyboardItemsFocusTools.qml -------------------------------------------------------------------------------- /qml_ui/desktop/TumComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/TumComboBox.qml -------------------------------------------------------------------------------- /qml_ui/desktop/UiCore.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/UiCore.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/AllDownloadsCheckBoxButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/AllDownloadsCheckBoxButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/AllDownloadsFilterModeButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/AllDownloadsFilterModeButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/AllDownloadsFilterModeMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/AllDownloadsFilterModeMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/AllDownloadsSearchField_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/AllDownloadsSearchField_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/AllDownloadsSortModeButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/AllDownloadsSortModeButton.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/AllDownloadsSortModeMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/AllDownloadsSortModeMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/BottomPanel/BottomPanel_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/BottomPanel/BottomPanel_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/BottomPanel/FilesTab_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/BottomPanel/FilesTab_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/BottomPanel/GeneralTab_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/BottomPanel/GeneralTab_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/BottomPanel/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/BottomPanel/close.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/BottomPanel/content_copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/BottomPanel/content_copy.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/BottomPanel/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/BottomPanel/folder.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/BottomPanel/folder_mac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/BottomPanel/folder_mac.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/DownloadProgressBar_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/DownloadProgressBar_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/DownloadStatus_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/DownloadStatus_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/DownloadsDropArea_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/DownloadsDropArea_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/DownloadsViewHeaderColumnsWidthCalc_V2.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2 | 3 | Item 4 | { 5 | property var header: null 6 | } 7 | -------------------------------------------------------------------------------- /qml_ui/desktop/V2/DownloadsViewHeaderItem_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/DownloadsViewHeaderItem_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/DownloadsViewHeader_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/DownloadsViewHeader_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/DownloadsViewItemStatus_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/DownloadsViewItemStatus_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/DownloadsViewItem_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/DownloadsViewItem_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/DownloadsView_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/DownloadsView_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/FilesTreeHeader_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/FilesTreeHeader_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/FilesTreeItem_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/FilesTreeItem_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/FilesTree_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/FilesTree_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/MainStatusBar_V2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/MainStatusBar_V2.qml -------------------------------------------------------------------------------- /qml_ui/desktop/V2/abort_lo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/abort_lo.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/arrow_drop_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/arrow_drop_down.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/arrow_drop_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/arrow_drop_right.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/arrow_drop_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/arrow_drop_up.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/arrow_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/arrow_left.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/batch_download_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/batch_download_icon.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/close.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/delete.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/download_priority_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/download_priority_up.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/file.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/file_move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/file_move.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/filter_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/filter_icon.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/folder.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/folder_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/folder_open.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/hourglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/hourglass.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/level_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/level_up.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/main_menu_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/main_menu_btn.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/menu_dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/menu_dots.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/mouse_drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/mouse_drop.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/pause.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/play.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/plus_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/plus_icon.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/priority_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/priority_down.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/priority_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/priority_up.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/repeat.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/reverse.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/search_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/search_icon.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/single_download_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/single_download_error.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/single_download_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/single_download_folder.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/single_download_folder_mac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/single_download_folder_mac.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/single_download_pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/single_download_pause.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/single_download_play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/single_download_play.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/single_download_scheduler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/single_download_scheduler.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/snail_off_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/snail_off_dark.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/snail_off_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/snail_off_light.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/snail_on_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/snail_on_dark.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/snail_on_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/snail_on_light.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/sort_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/sort_icon.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/trash.svg -------------------------------------------------------------------------------- /qml_ui/desktop/V2/trending_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/V2/trending_up.svg -------------------------------------------------------------------------------- /qml_ui/desktop/WaitingPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/WaitingPage.qml -------------------------------------------------------------------------------- /qml_ui/desktop/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/desktop/main.qml -------------------------------------------------------------------------------- /qml_ui/images/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/accept.png -------------------------------------------------------------------------------- /qml_ui/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/add.png -------------------------------------------------------------------------------- /qml_ui/images/arr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/arr.svg -------------------------------------------------------------------------------- /qml_ui/images/arrow_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/arrow_back.svg -------------------------------------------------------------------------------- /qml_ui/images/arrow_downward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/arrow_downward.svg -------------------------------------------------------------------------------- /qml_ui/images/arrow_drop_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/arrow_drop_down.svg -------------------------------------------------------------------------------- /qml_ui/images/arrow_forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/arrow_forward.svg -------------------------------------------------------------------------------- /qml_ui/images/arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/arrow_right.svg -------------------------------------------------------------------------------- /qml_ui/images/arrow_upward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/arrow_upward.svg -------------------------------------------------------------------------------- /qml_ui/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/back.png -------------------------------------------------------------------------------- /qml_ui/images/baseline-more_vert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/baseline-more_vert.svg -------------------------------------------------------------------------------- /qml_ui/images/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/checkbox.svg -------------------------------------------------------------------------------- /qml_ui/images/checked_checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/checked_checkbox.svg -------------------------------------------------------------------------------- /qml_ui/images/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/checkmark.svg -------------------------------------------------------------------------------- /qml_ui/images/circle-question-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/circle-question-mark.svg -------------------------------------------------------------------------------- /qml_ui/images/close-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/close-circle.svg -------------------------------------------------------------------------------- /qml_ui/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/close.svg -------------------------------------------------------------------------------- /qml_ui/images/common/dark/attention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/common/dark/attention.svg -------------------------------------------------------------------------------- /qml_ui/images/common/light/attention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/common/light/attention.svg -------------------------------------------------------------------------------- /qml_ui/images/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/delete.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/alarm.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/arrow_down_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/arrow_down_list.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/arrow_down_sbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/arrow_down_sbar.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/arrow_dwn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/arrow_dwn.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/arrow_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/arrow_up.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/arrow_up_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/arrow_up_list.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/arrow_up_sbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/arrow_up_sbar.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/batch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/batch.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/batch_download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/batch_download.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/checkmark.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/chrome_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/chrome_logo.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/chrome_logo_qtbug_141382.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/chrome_logo_qtbug_141382.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/clean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/clean.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/alarm.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/arrow_down_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/arrow_down_list.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/arrow_down_sbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/arrow_down_sbar.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/arrow_up_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/arrow_up_list.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/arrow_up_sbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/arrow_up_sbar.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/batch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/batch.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/batch_download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/batch_download.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/checkmark.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/arrow_down.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/arrow_down2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/arrow_down2.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/arrow_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/arrow_up.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/arrow_up2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/arrow_up2.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/check_mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/check_mark.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/close.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/close2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/close2.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/dots.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/exclamation.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/folder.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/plus.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/snail_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/snail_off.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/elements/snail_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/elements/snail_on.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/file.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/file_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/file_small.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/folder.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/folder_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/folder_green.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/folder_green_t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/folder_green_t.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/header_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/header_button.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/header_button_win.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/header_button_win.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/line.gif -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/line.png -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/line_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/line_small.gif -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/line_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/line_small.png -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/link.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/magnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/magnet.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/main_toolbar/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/main_toolbar/delete.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/main_toolbar/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/main_toolbar/down.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/main_toolbar/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/main_toolbar/folder.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/main_toolbar/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/main_toolbar/menu.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/main_toolbar/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/main_toolbar/plus.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/main_toolbar/reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/main_toolbar/reverse.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/main_toolbar/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/main_toolbar/search.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/main_toolbar/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/main_toolbar/up.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/main_toolbar_mac/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/main_toolbar_mac/up.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/pause.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/pause2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/pause2.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/play.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/play2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/play2.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/progress_clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/progress_clear.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/progress_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/progress_fill.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/restart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/restart.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/user_sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/user_sort.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/dark/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/dark/youtube.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/edge_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/edge_logo.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/edit_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/edit_list.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/file.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/file_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/file_small.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/firefox_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/firefox_logo.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/firefox_logo_qtbug_141382.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/firefox_logo_qtbug_141382.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/folder.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/folder_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/folder_green.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/folder_green_t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/folder_green_t.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/header_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/header_button.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/header_button_win.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/header_button_win.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/elements/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/elements/arrow_down.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/elements/arrow_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/elements/arrow_up.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/elements/arrow_up2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/elements/arrow_up2.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/elements/check_mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/elements/check_mark.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/elements/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/elements/close.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/elements/close2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/elements/close2.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/elements/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/elements/dots.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/elements/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/elements/folder.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/elements/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/elements/plus.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/elements/snail_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/elements/snail_off.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/elements/snail_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/elements/snail_on.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/main_toolbar/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/main_toolbar/delete.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/main_toolbar/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/main_toolbar/down.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/main_toolbar/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/main_toolbar/folder.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/main_toolbar/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/main_toolbar/menu.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/main_toolbar/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/main_toolbar/plus.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/main_toolbar/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/main_toolbar/search.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/main_toolbar/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/main_toolbar/up.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/main_toolbar_mac/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/main_toolbar_mac/up.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/light/user_sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/light/user_sort.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/line.gif -------------------------------------------------------------------------------- /qml_ui/images/desktop/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/line.png -------------------------------------------------------------------------------- /qml_ui/images/desktop/line_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/line_small.gif -------------------------------------------------------------------------------- /qml_ui/images/desktop/line_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/line_small.png -------------------------------------------------------------------------------- /qml_ui/images/desktop/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/link.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/magnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/magnet.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/menu_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/menu_arrow.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/mode_low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/mode_low.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/mode_medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/mode_medium.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/mode_snail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/mode_snail.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/ok_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/ok_white.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/pause.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/pause2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/pause2.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/pick_file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/pick_file.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/play.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/play2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/play2.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/plugin.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/preloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/preloading.gif -------------------------------------------------------------------------------- /qml_ui/images/desktop/priority_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/priority_down.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/priority_down_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/priority_down_active.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/priority_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/priority_up.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/priority_up_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/priority_up_active.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/restart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/restart.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/search_clear_mac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/search_clear_mac.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/ssl_warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/ssl_warning.svg -------------------------------------------------------------------------------- /qml_ui/images/desktop/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/desktop/youtube.svg -------------------------------------------------------------------------------- /qml_ui/images/download-item/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/download-item/folder.svg -------------------------------------------------------------------------------- /qml_ui/images/download-item/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/download-item/pause.svg -------------------------------------------------------------------------------- /qml_ui/images/download-item/start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/download-item/start.svg -------------------------------------------------------------------------------- /qml_ui/images/download_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/download_folder.svg -------------------------------------------------------------------------------- /qml_ui/images/drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/drawer.png -------------------------------------------------------------------------------- /qml_ui/images/external_link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/external_link.svg -------------------------------------------------------------------------------- /qml_ui/images/fdmlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/fdmlogo.png -------------------------------------------------------------------------------- /qml_ui/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/file.png -------------------------------------------------------------------------------- /qml_ui/images/flags/ar_EG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/ar_EG.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/bg_BG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/bg_BG.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/bn_BD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/bn_BD.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/cs_CZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/cs_CZ.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/da_DK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/da_DK.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/de_DE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/de_DE.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/el_GR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/el_GR.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/en_US.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/en_US.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/es_ES.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/es_ES.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/fa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/fa.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/fa_IR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/fa_IR.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/fi_FI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/fi_FI.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/fr_FR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/fr_FR.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/hi_IN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/hi_IN.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/hu_HU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/hu_HU.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/id_ID.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/id_ID.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/it_IT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/it_IT.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/ja_JP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/ja_JP.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/ko_KR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/ko_KR.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/lt_LT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/lt_LT.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/lv_LV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/lv_LV.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/my_MM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/my_MM.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/nl_NL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/nl_NL.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/pl_PL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/pl_PL.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/pt_BR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/pt_BR.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/ro_RO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/ro_RO.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/ru_RU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/ru_RU.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/si_LK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/si_LK.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/sl_SI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/sl_SI.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/sv_SE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/sv_SE.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/tr_TR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/tr_TR.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/uk_UA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/uk_UA.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/vi_VN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/vi_VN.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/zh_CN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/zh_CN.svg -------------------------------------------------------------------------------- /qml_ui/images/flags/zh_TW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/flags/zh_TW.svg -------------------------------------------------------------------------------- /qml_ui/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/folder.png -------------------------------------------------------------------------------- /qml_ui/images/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/folder.svg -------------------------------------------------------------------------------- /qml_ui/images/folder_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/folder_dark.png -------------------------------------------------------------------------------- /qml_ui/images/folder_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/folder_selected.png -------------------------------------------------------------------------------- /qml_ui/images/folder_selected_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/folder_selected_dark.png -------------------------------------------------------------------------------- /qml_ui/images/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/gear.svg -------------------------------------------------------------------------------- /qml_ui/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/hamburger.png -------------------------------------------------------------------------------- /qml_ui/images/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/hamburger.svg -------------------------------------------------------------------------------- /qml_ui/images/hamburger_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/hamburger_dark.png -------------------------------------------------------------------------------- /qml_ui/images/low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/low.svg -------------------------------------------------------------------------------- /qml_ui/images/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/medium.svg -------------------------------------------------------------------------------- /qml_ui/images/menu-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/menu-right.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/about.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/add_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/add_folder.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/arrow.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/arrow_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/arrow_back.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/arrow_down.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/arrow_forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/arrow_forward.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/arrow_right.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/arrow_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/arrow_up.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/asc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/asc.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/browser.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/bug_report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/bug_report.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/burger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/burger.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/check.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/checkbox.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/cross.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/dark/infinite_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/dark/infinite_active.gif -------------------------------------------------------------------------------- /qml_ui/images/mobile/dark/infinite_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/dark/infinite_inactive.png -------------------------------------------------------------------------------- /qml_ui/images/mobile/dark/progressmap_clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/dark/progressmap_clear.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/dark/progressmap_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/dark/progressmap_fill.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/desc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/desc.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/error.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/fdmlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/fdmlogo.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/flag_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/flag_down.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/flag_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/flag_up.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/folder.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/help.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/light/infinite_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/light/infinite_active.gif -------------------------------------------------------------------------------- /qml_ui/images/mobile/light/infinite_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/light/infinite_inactive.png -------------------------------------------------------------------------------- /qml_ui/images/mobile/light/progressmap_clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/light/progressmap_clear.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/light/progressmap_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/light/progressmap_fill.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/menu.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/music_note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/music_note.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/music_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/music_off.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/open_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/open_folder.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/pause.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/play.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/plus.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/queue_music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/queue_music.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/quit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/quit.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/rc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/rc.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/repeat.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/scheduler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/scheduler.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/search.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/select_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/select_all.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/selected_delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/selected_delete.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/selected_pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/selected_pause.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/selected_play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/selected_play.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/self_test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/self_test.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/settings.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/share.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/snail.png -------------------------------------------------------------------------------- /qml_ui/images/mobile/sort_menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/sort_menu.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/support.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/support.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/unknown_extension.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/unknown_extension.svg -------------------------------------------------------------------------------- /qml_ui/images/mobile/unselect_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/mobile/unselect_all.svg -------------------------------------------------------------------------------- /qml_ui/images/move-to-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/move-to-folder.svg -------------------------------------------------------------------------------- /qml_ui/images/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/pause.svg -------------------------------------------------------------------------------- /qml_ui/images/pause_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/pause_all.png -------------------------------------------------------------------------------- /qml_ui/images/pause_all_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/pause_all_dark.png -------------------------------------------------------------------------------- /qml_ui/images/pause_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/pause_selected.png -------------------------------------------------------------------------------- /qml_ui/images/pause_selected_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/pause_selected_dark.png -------------------------------------------------------------------------------- /qml_ui/images/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/play.svg -------------------------------------------------------------------------------- /qml_ui/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/plus.png -------------------------------------------------------------------------------- /qml_ui/images/progress_clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/progress_clear.svg -------------------------------------------------------------------------------- /qml_ui/images/progress_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/progress_fill.svg -------------------------------------------------------------------------------- /qml_ui/images/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/refresh.svg -------------------------------------------------------------------------------- /qml_ui/images/reject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/reject.png -------------------------------------------------------------------------------- /qml_ui/images/schedule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/schedule.svg -------------------------------------------------------------------------------- /qml_ui/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/search.png -------------------------------------------------------------------------------- /qml_ui/images/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/search.svg -------------------------------------------------------------------------------- /qml_ui/images/search_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/search_dark.png -------------------------------------------------------------------------------- /qml_ui/images/snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/snail.png -------------------------------------------------------------------------------- /qml_ui/images/start_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/start_all.png -------------------------------------------------------------------------------- /qml_ui/images/start_all_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/start_all_dark.png -------------------------------------------------------------------------------- /qml_ui/images/start_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/start_selected.png -------------------------------------------------------------------------------- /qml_ui/images/start_selected_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/start_selected_dark.png -------------------------------------------------------------------------------- /qml_ui/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/trash.png -------------------------------------------------------------------------------- /qml_ui/images/trash_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/trash_dark.png -------------------------------------------------------------------------------- /qml_ui/images/trash_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/trash_selected.png -------------------------------------------------------------------------------- /qml_ui/images/trash_selected_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/trash_selected_dark.png -------------------------------------------------------------------------------- /qml_ui/images/trayicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/trayicon.png -------------------------------------------------------------------------------- /qml_ui/images/unchecked_checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/unchecked_checkbox.svg -------------------------------------------------------------------------------- /qml_ui/images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/warning.svg -------------------------------------------------------------------------------- /qml_ui/images/warning_yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/images/warning_yellow.svg -------------------------------------------------------------------------------- /qml_ui/mobile/AddMirrorPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/AddMirrorPage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/AuthenticationPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/AuthenticationPage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/ActionButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/ActionButton.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/BaseCheckBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/BaseCheckBox.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/BaseComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/BaseComboBox.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/BaseErrorLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/BaseErrorLabel.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/BaseFilterButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/BaseFilterButton.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/BaseLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/BaseLabel.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/BaseMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/BaseMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/BaseMenuSeparator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/BaseMenuSeparator.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/BaseStringListArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/BaseStringListArea.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/BaseSwitch.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/BaseSwitch.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/BaseTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/BaseTextField.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/BaseToolBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/BaseToolBar.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/BitrateComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/BitrateComboBox.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/DialogButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/DialogButton.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/DialogTitle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/DialogTitle.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/DownloadIcon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/DownloadIcon.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/ExtraToolBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/ExtraToolBar.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/ModeButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/ModeButton.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/PriorityMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/PriorityMenuItem.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/ProgressIndicator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/ProgressIndicator.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/SchedulerButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/SchedulerButton.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/SelectModeBarButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/SelectModeBarButton.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/TablesHeaderItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/TablesHeaderItem.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/TimePicker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/TimePicker.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/ToolBarShadow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/ToolBarShadow.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/ToolbarBackButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/ToolbarBackButton.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/ToolbarButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/ToolbarButton.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/ToolbarLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/ToolbarLabel.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/VoteDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/VoteDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BaseElements/VoteDialogButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BaseElements/VoteDialogButton.qml -------------------------------------------------------------------------------- /qml_ui/mobile/BuildDownloadPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/BuildDownloadPage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/ChangeUrlPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/ChangeUrlPage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/AboutDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/AboutDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/AuthDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/AuthDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/BrowserIntroDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/BrowserIntroDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/ConnectToRemoteAppDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/ConnectToRemoteAppDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/ConvertFilesFailedDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/ConvertFilesFailedDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/CreateFolderDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/CreateFolderDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/DeleteDownloadsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/DeleteDownloadsDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/DownloadExpiredDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/DownloadExpiredDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/FileManagerSupportDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/FileManagerSupportDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/FilesExistsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/FilesExistsDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/MergeDownloadsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/MergeDownloadsDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/MobileDataUsageDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/MobileDataUsageDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/MovingFailedDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/MovingFailedDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/OsPermissionsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/OsPermissionsDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/PrivacyDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/PrivacyDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/QuitConfirmationDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/QuitConfirmationDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/SchedulerDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/SchedulerDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/SelectSortFieldDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/SelectSortFieldDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/SslDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/SslDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/StopDownloadDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/StopDownloadDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Dialogs/SubmitBugReportDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Dialogs/SubmitBugReportDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/DownloadItemPage/ConnectionsTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/DownloadItemPage/ConnectionsTab.qml -------------------------------------------------------------------------------- /qml_ui/mobile/DownloadItemPage/DetailsTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/DownloadItemPage/DetailsTab.qml -------------------------------------------------------------------------------- /qml_ui/mobile/DownloadItemPage/Files.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/DownloadItemPage/Files.qml -------------------------------------------------------------------------------- /qml_ui/mobile/DownloadItemPage/GeneralTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/DownloadItemPage/GeneralTab.qml -------------------------------------------------------------------------------- /qml_ui/mobile/DownloadItemPage/Page.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/DownloadItemPage/Page.qml -------------------------------------------------------------------------------- /qml_ui/mobile/DownloadItemPage/Toolbar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/DownloadItemPage/Toolbar.qml -------------------------------------------------------------------------------- /qml_ui/mobile/DownloadsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/DownloadsPage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/DownloadsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/DownloadsView.qml -------------------------------------------------------------------------------- /qml_ui/mobile/DownloadsViewItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/DownloadsViewItem.qml -------------------------------------------------------------------------------- /qml_ui/mobile/DownloadsViewItemContextMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/DownloadsViewItemContextMenu.qml -------------------------------------------------------------------------------- /qml_ui/mobile/DownloadsViewItemFileInfo.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/DownloadsViewItemFileInfo.qml -------------------------------------------------------------------------------- /qml_ui/mobile/DownloadsViewTestModel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/DownloadsViewTestModel.qml -------------------------------------------------------------------------------- /qml_ui/mobile/FileIntegrityPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/FileIntegrityPage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/FilePicker/FilePicker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/FilePicker/FilePicker.qml -------------------------------------------------------------------------------- /qml_ui/mobile/FilePicker/FilePickerPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/FilePicker/FilePickerPage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/FilePicker/FilePickerSortDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/FilePicker/FilePickerSortDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/FilesTree/FilesTree.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/FilesTree/FilesTree.qml -------------------------------------------------------------------------------- /qml_ui/mobile/FilesTree/FilesTreeContextMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/FilesTree/FilesTreeContextMenu.qml -------------------------------------------------------------------------------- /qml_ui/mobile/LeftDrawer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/LeftDrawer.qml -------------------------------------------------------------------------------- /qml_ui/mobile/MainFilterButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/MainFilterButton.qml -------------------------------------------------------------------------------- /qml_ui/mobile/MainFiltersBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/MainFiltersBar.qml -------------------------------------------------------------------------------- /qml_ui/mobile/MainToolbar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/MainToolbar.qml -------------------------------------------------------------------------------- /qml_ui/mobile/MainToolbarStatus.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/MainToolbarStatus.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Mp3ConverterPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Mp3ConverterPage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Mp4ConverterPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Mp4ConverterPage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/RenameDownloadFilePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/RenameDownloadFilePage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SearchToolbar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SearchToolbar.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SelectModeBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SelectModeBar.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SelectModeTopBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SelectModeTopBar.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/AdvancedSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/AdvancedSettings.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/BackupSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/BackupSlider.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/BatteryComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/BatteryComboBox.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/DownloadsSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/DownloadsSettings.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/GeneralSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/GeneralSettings.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/GeneralSettings2.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/GeneralSettings2.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/LanguageDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/LanguageDialog.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/MacrosMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/MacrosMenu.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/MaxURatioComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/MaxURatioComboBox.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/NetworkSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/NetworkSettings.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/RestartRequiredLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/RestartRequiredLabel.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/SettingsGroupHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/SettingsGroupHeader.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/SettingsItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/SettingsItem.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/SettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/SettingsPage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/SettingsRadioButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/SettingsRadioButton.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/SettingsSeparator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/SettingsSeparator.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/SettingsTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/SettingsTextField.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/SoundsSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/SoundsSettings.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/SpeedComboBoxWrapper.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/SpeedComboBoxWrapper.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/SwitchSetting.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/SwitchSetting.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/ThemeComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/ThemeComboBox.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/TumMaxURatioComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/TumMaxURatioComboBox.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SettingsPage/TumSettingTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SettingsPage/TumSettingTextField.qml -------------------------------------------------------------------------------- /qml_ui/mobile/SnailButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/SnailButton.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Themes/DarkTheme.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Themes/DarkTheme.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Themes/LightTheme.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Themes/LightTheme.qml -------------------------------------------------------------------------------- /qml_ui/mobile/Tools/AdaptiveTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/Tools/AdaptiveTools.qml -------------------------------------------------------------------------------- /qml_ui/mobile/TuneAndAddDownloadPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/TuneAndAddDownloadPage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/VoteBlock.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/VoteBlock.qml -------------------------------------------------------------------------------- /qml_ui/mobile/WaitingPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/WaitingPage.qml -------------------------------------------------------------------------------- /qml_ui/mobile/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/mobile/main.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/ColorDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/ColorDialog.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/ColorOverlay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/ColorOverlay.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/DropShadow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/DropShadow.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/FastBlur.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/FastBlur.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/FileDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/FileDialog.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/MessageDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/MessageDialog.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/QTBUG.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/QTBUG.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/QtRegExpValidator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/QtRegExpValidator.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/RectangularGlow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/RectangularGlow.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt5/ColorDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt5/ColorDialog.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt5/ColorOverlay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt5/ColorOverlay.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt5/DropShadow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt5/DropShadow.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt5/FastBlur.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt5/FastBlur.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt5/FileDialogImpl.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt5/FileDialogImpl.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt5/MessageDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt5/MessageDialog.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt5/QTBUGImpl.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt5/QTBUGImpl.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt5/QtRegExpValidator.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.0 2 | 3 | RegExpValidator 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt5/RectangularGlow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt5/RectangularGlow.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt5/blank.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.0 2 | 3 | Item { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt6/ColorDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt6/ColorDialog.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt6/ColorOverlay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt6/ColorOverlay.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt6/DropShadow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt6/DropShadow.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt6/FastBlur.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt6/FastBlur.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt6/FileDialogImpl.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt6/FileDialogImpl.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt6/MessageDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt6/MessageDialog.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt6/QTBUGImpl.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt6/QTBUGImpl.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt6/QtRegExpValidator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt6/QtRegExpValidator.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt6/RectangularGlow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeDownloadManagerTeam/fdm-qml-ui/HEAD/qml_ui/qt5compat/qt6/RectangularGlow.qml -------------------------------------------------------------------------------- /qml_ui/qt5compat/qt6/blank.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.0 2 | 3 | Item { 4 | 5 | } 6 | --------------------------------------------------------------------------------