mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 13:23:51 +00:00
[RAPPS] Don't use CDownloadManager outside loaddlg.cpp
This commit is contained in:
parent
2c965f67d5
commit
1807dbfd6d
5 changed files with 79 additions and 66 deletions
|
@ -5,38 +5,16 @@
|
|||
#include <windef.h>
|
||||
#include <atlsimpcoll.h>
|
||||
|
||||
// Download dialog (loaddlg.cpp)
|
||||
class CDowloadingAppsListView;
|
||||
struct DownloadInfo;
|
||||
|
||||
class CDownloadManager
|
||||
{
|
||||
static ATL::CSimpleArray<DownloadInfo> AppsToInstallList;
|
||||
static CDowloadingAppsListView DownloadsListView;
|
||||
|
||||
static VOID Download(const DownloadInfo& DLInfo, BOOL bIsModal = FALSE);
|
||||
static VOID SetProgressMarquee(HWND Item, BOOL Enable);
|
||||
|
||||
public:
|
||||
static INT_PTR CALLBACK DownloadDlgProc(HWND Dlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
static LRESULT CALLBACK DownloadProgressProc(HWND hWnd,
|
||||
UINT uMsg,
|
||||
WPARAM wParam,
|
||||
LPARAM lParam,
|
||||
UINT_PTR uIdSubclass,
|
||||
DWORD_PTR dwRefData);
|
||||
|
||||
static DWORD WINAPI ThreadFunc(LPVOID Context);
|
||||
static BOOL DownloadListOfApplications(const ATL::CSimpleArray<CAvailableApplicationInfo>& AppsList, BOOL bIsModal = FALSE);
|
||||
static BOOL DownloadApplication(CAvailableApplicationInfo* pAppInfo, BOOL bIsModal = FALSE);
|
||||
static VOID DownloadApplicationsDB(LPCWSTR lpUrl);
|
||||
static VOID LaunchDownloadDialog(BOOL);
|
||||
};
|
||||
|
||||
// Settings dialog (settingsdlg.cpp)
|
||||
VOID CreateSettingsDlg(HWND hwnd);
|
||||
|
||||
// About dialog (aboutdlg.cpp)
|
||||
VOID ShowAboutDialog();
|
||||
|
||||
//Main window
|
||||
VOID ShowMainWindow(INT nShowCmd);
|
||||
|
||||
// Download dialogs
|
||||
VOID DownloadApplicationsDB(LPCWSTR lpUrl);
|
||||
BOOL DownloadApplication(CAvailableApplicationInfo* pAppInfo, BOOL bIsModal);
|
||||
BOOL DownloadListOfApplications(const ATL::CSimpleArray<CAvailableApplicationInfo>& AppsList, BOOL bIsModal);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue