Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | #include "resource.h" |
michael@0 | 2 | #include "../../../GuiCommon.rc" |
michael@0 | 3 | |
michael@0 | 4 | #define xSize2 172 |
michael@0 | 5 | #define ySize2 42 |
michael@0 | 6 | #define xSize (xSize2 + marg + marg) |
michael@0 | 7 | #define ySize (ySize2 + marg + marg) |
michael@0 | 8 | |
michael@0 | 9 | #define bYPos (ySize - marg - bYSize) |
michael@0 | 10 | #define bXPos (xSize - marg - bXSize) |
michael@0 | 11 | |
michael@0 | 12 | |
michael@0 | 13 | IDD_DIALOG_PROGRESS DIALOG 0, 0, xSize, ySize MY_MODAL_DIALOG_STYLE |
michael@0 | 14 | CAPTION "Progress" |
michael@0 | 15 | MY_FONT |
michael@0 | 16 | BEGIN |
michael@0 | 17 | PUSHBUTTON "Cancel", IDCANCEL, bXPos, bYPos , bXSize, bYSize |
michael@0 | 18 | CONTROL "Progress1", IDC_PROGRESS1,"msctls_progress32",PBS_SMOOTH | WS_BORDER, |
michael@0 | 19 | marg,marg, xSize2, 14 |
michael@0 | 20 | END |