/
makani
/
strongdc
Обзор
Документация
Войти
/
makani
/
strongdc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
windows/DownloadPage.cpp
134 строки
5 KB
BigMuscle
changed default URL to client profiles
24 июл 2008, 02:35
24 июл 2008, 02:35
881e23c
Код
Авторство
О чём код?
/* * Copyright (C) 2001-2006 Jacek Sieka, arnetheduck on gmail point com * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "stdafx.h" #include "../client/DCPlusPlus.h" #include "../client/SettingsManager.h" #include "Resource.h" #include "DownloadPage.h" #include "WinUtil.h" #include "PublicHubsListDlg.h" PropPage::TextItem DownloadPage::texts[] = { { IDC_SETTINGS_DIRECTORIES, ResourceManager::SETTINGS_DIRECTORIES }, { IDC_SETTINGS_DOWNLOAD_DIRECTORY, ResourceManager::SETTINGS_DOWNLOAD_DIRECTORY }, { IDC_BROWSEDIR, ResourceManager::BROWSE_ACCEL }, { IDC_SETTINGS_UNFINISHED_DOWNLOAD_DIRECTORY, ResourceManager::SETTINGS_UNFINISHED_DOWNLOAD_DIRECTORY }, { IDC_BROWSETEMPDIR, ResourceManager::BROWSE }, { IDC_SETTINGS_DOWNLOAD_LIMITS, ResourceManager::SETTINGS_DOWNLOAD_LIMITS }, { IDC_SETTINGS_DOWNLOADS_MAX, ResourceManager::SETTINGS_DOWNLOADS_MAX }, { IDC_SETTINGS_FILES_MAX, ResourceManager::SETTINGS_FILES_MAX }, { IDC_EXTRA_DOWNLOADS_MAX, ResourceManager::SETTINGS_STRONGDC_EXTRA_DOWNLOADS }, { IDC_SETTINGS_DOWNLOADS_SPEED_PAUSE, ResourceManager::SETTINGS_DOWNLOADS_SPEED_PAUSE }, { IDC_SETTINGS_SPEEDS_NOT_ACCURATE, ResourceManager::SETTINGS_SPEEDS_NOT_ACCURATE }, { IDC_SETTINGS_PUBLIC_HUB_LIST, ResourceManager::SETTINGS_PUBLIC_HUB_LIST }, { IDC_SETTINGS_PUBLIC_HUB_LIST_URL, ResourceManager::SETTINGS_PUBLIC_HUB_LIST_URL }, { IDC_SETTINGS_LIST_CONFIG, ResourceManager::SETTINGS_CONFIGURE_HUB_LISTS }, { IDC_SETTINGS_PUBLIC_HUB_LIST_HTTP_PROXY, ResourceManager::SETTINGS_PUBLIC_HUB_LIST_HTTP_PROXY }, { 0, ResourceManager::SETTINGS_AUTO_AWAY } }; PropPage::Item DownloadPage::items[] = { { IDC_TEMP_DOWNLOAD_DIRECTORY, SettingsManager::TEMP_DOWNLOAD_DIRECTORY, PropPage::T_STR }, { IDC_DOWNLOADDIR, SettingsManager::DOWNLOAD_DIRECTORY, PropPage::T_STR }, { IDC_DOWNLOADS, SettingsManager::DOWNLOAD_SLOTS, PropPage::T_INT }, { IDC_FILES, SettingsManager::FILE_SLOTS, PropPage::T_INT }, { IDC_MAXSPEED, SettingsManager::MAX_DOWNLOAD_SPEED, PropPage::T_INT }, { IDC_EXTRA_DOWN_SLOT, SettingsManager::EXTRA_DOWNLOAD_SLOTS, PropPage::T_INT }, { IDC_PROXY, SettingsManager::HTTP_PROXY, PropPage::T_STR }, { 0, 0, PropPage::T_END } }; LRESULT DownloadPage::onInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) { PropPage::translate((HWND)(*this), texts); PropPage::read((HWND)*this, items); CUpDownCtrl spin; spin.Attach(GetDlgItem(IDC_FILESPIN)); spin.SetRange32(0, 100); spin.Detach(); spin.Attach(GetDlgItem(IDC_SLOTSSPIN)); spin.SetRange32(0, 100); spin.Detach(); spin.Attach(GetDlgItem(IDC_SPEEDSPIN)); spin.SetRange32(0, 10000); spin.Detach(); spin.Attach(GetDlgItem(IDC_EXTRASLOTSSPIN)); spin.SetRange32(0, 100); spin.Detach(); // Do specialized reading here return TRUE; } void DownloadPage::write() { PropPage::write((HWND)*this, items); const string& s = SETTING(DOWNLOAD_DIRECTORY); if(s.length() > 0 && s[s.length() - 1] != '\\') { SettingsManager::getInstance()->set(SettingsManager::DOWNLOAD_DIRECTORY, s + '\\'); } const string& t = SETTING(TEMP_DOWNLOAD_DIRECTORY); if(t.length() > 0 && t[t.length() - 1] != '\\') { SettingsManager::getInstance()->set(SettingsManager::TEMP_DOWNLOAD_DIRECTORY, t + '\\'); } } LRESULT DownloadPage::onClickedBrowseDir(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/) { tstring dir = Text::toT(SETTING(DOWNLOAD_DIRECTORY)); if(WinUtil::browseDirectory(dir, m_hWnd)) { // Adjust path string if(dir.size() > 0 && dir[dir.size() - 1] != '\\') dir += '\\'; SetDlgItemText(IDC_DOWNLOADDIR, dir.c_str()); } return 0; } LRESULT DownloadPage::onClickedBrowseTempDir(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/) { tstring dir = Text::toT(SETTING(TEMP_DOWNLOAD_DIRECTORY)); if(WinUtil::browseDirectory(dir, m_hWnd)) { // Adjust path string if(dir.size() > 0 && dir[dir.size() - 1] != '\\') dir += '\\'; SetDlgItemText(IDC_TEMP_DOWNLOAD_DIRECTORY, dir.c_str()); } return 0; } LRESULT DownloadPage::onClickedListConfigure(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/) { PublicHubListDlg dlg; dlg.DoModal(m_hWnd); return 0; } /** * @file * $Id$ */