]> cygwin.com Git - cygwin-apps/setup.git/blob - threebar.h
2003-02-16 Pavel Tsekov <ptsekov@gmx.net>
[cygwin-apps/setup.git] / threebar.h
1 #ifndef CINSTALL_THREEBAR_H
2 #define CINSTALL_THREEBAR_H
3
4 /*
5 * Copyright (c) 2001, Gary R. Van Sickle.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * A copy of the GNU General Public License can be found at
13 * http://www.gnu.org/
14 *
15 * Written by Gary R. Van Sickle <g.r.vansickle@worldnet.att.net>
16 *
17 */
18
19 // This is the header for the ThreeBarProgressPage class. It is a fairly generic
20 // progress indicator property page with three progress bars.
21
22
23 #include "win32.h"
24 #include "proppage.h"
25
26 #define WM_APP_START_DOWNLOAD WM_APP+0
27 #define WM_APP_DOWNLOAD_THREAD_COMPLETE WM_APP+1
28 #define WM_APP_START_INSTALL WM_APP+2
29 #define WM_APP_INSTALL_THREAD_COMPLETE WM_APP+3
30 #define WM_APP_START_SITE_INFO_DOWNLOAD WM_APP+4
31 #define WM_APP_SITE_INFO_DOWNLOAD_COMPLETE WM_APP+5
32 #define WM_APP_START_SETUP_INI_DOWNLOAD WM_APP+6
33 #define WM_APP_SETUP_INI_DOWNLOAD_COMPLETE WM_APP+7
34 // desktop.h: WM_APP_UNATTENDED_FINISH WM_APP+8
35
36 class ThreeBarProgressPage:public PropertyPage
37 {
38 HWND ins_dialog;
39 HWND ins_action;
40 HWND ins_pkgname;
41 HWND ins_filename;
42 HWND ins_pprogress;
43 HWND ins_iprogress;
44 HWND ins_diskfull;
45 HWND ins_bl_package;
46 HWND ins_bl_total;
47 HWND ins_bl_disk;
48
49 int task;
50
51 void EnableSingleBar (bool enable = true);
52
53 public:
54 ThreeBarProgressPage ()
55 {
56 };
57 virtual ~ ThreeBarProgressPage ()
58 {
59 };
60
61 bool Create ();
62
63 virtual void OnInit ();
64 virtual void OnActivate ();
65 virtual bool OnMessageApp (UINT uMsg, WPARAM wParam, LPARAM lParam);
66 virtual long OnUnattended ()
67 {
68 return -1;
69 };
70
71 void SetText1 (const TCHAR * t);
72 void SetText2 (const TCHAR * t);
73 void SetText3 (const TCHAR * t);
74 void SetText4 (const TCHAR * t);
75
76 void SetBar1 (long progress, long max = 100);
77 void SetBar2 (long progress, long max = 100);
78 void SetBar3 (long progress, long max = 100);
79
80 void SetActivateTask (int t)
81 {
82 task = t;
83 };
84 };
85
86
87 #endif // CINSTALL_THREEBAR_H
This page took 0.036934 seconds and 5 git commands to generate.