-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInvisiCalcRes.rc
More file actions
106 lines (92 loc) · 3.46 KB
/
InvisiCalcRes.rc
File metadata and controls
106 lines (92 loc) · 3.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// InvisiCalc resources.
/*
Copyright 2009 by Kevin Pluck
This file is part of InvisiCalc.
InvisiCalc 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 3 of the License, or
(at your option) any later version.
InvisiCalc 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 InvisiCalc. If not, see <http://www.gnu.org/licenses/>.
*/
#include "InvisiCalc.h"
#include <windows.h>
IDI_42 ICON "InvisiCalc.ico"
IDM_CONTEXTMAIN MENUEX DISCARDABLE
BEGIN
POPUP "You'll never see this", IDM_CONTEXTPOPUP
BEGIN
MENUITEM "&Help", IDM_HELP, MFT_STRING, MFS_ENABLED
MENUITEM "&About", IDM_ABOUT, MFT_STRING, MFS_ENABLED
MENUITEM "E&xit", IDM_EXIT, MFT_STRING, MFS_ENABLED
END
END
IDD_ABOUT DIALOG DISCARDABLE 0, 0, 239, 180
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "About InvisiCalc"
FONT 8, "MS Sans Serif"
BEGIN
DEFPUSHBUTTON "&OK",IDOK,174,18,50,14
GROUPBOX INVISICALCVERSION,IDC_STATIC,7,7,225,166
LTEXT
"InvisiCalc is a calculator that watches for mathematical expressions copied to the clipboard. \
InvisiCalc then evaluates them and displays the result in a system tray bubble where it can be copied.\r\n\r\nCopyright 2009 by Kevin Pluck.",
IDC_STATIC,16,18,144,67
PUSHBUTTON APPLINK, IDC_LINK,16,75,144,12
LTEXT
"InvisiCalc 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 3 of the License, or \
(at your option) any later version.\
\n\n\
InvisiCalc 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.",
IDC_STATIC,16,90,210,80
END
IDD_HELP DIALOG DISCARDABLE 0, 0, 239, 300
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "InvisiCalc Help"
FONT 8, "MS Sans Serif"
BEGIN
DEFPUSHBUTTON "&OK",IDOK,174,18,50,14
GROUPBOX "Help",IDC_STATIC,7,7,225,286
LTEXT
"InvisiCalc is a calculator that watches for mathematical expressions copied to the clipboard. \
InvisiCalc then evaluates them and displays the result in a system tray bubble where it can be copied.",
IDC_STATIC,16,18,144,67
LTEXT
"Operators used:\n\r\
\t+ - * /\tAddition Subtraction Multiplication Division\n\r\
\t^\tPower\n\r\
\t%\tmod\n\r\
\t\n\r\
Functions Used:\n\r\
\tsqrt\tSquare Root\n\r\
\texp\tExponential Function\n\r\
\tsin\tSine\n\r\
\tcos\tCosine\n\r\
\ttan\tTangent\n\r\
\tacos\tInverse Cosine\n\r\
\tasin\tInverse Sine\n\r\
\tatan\tInverse Tangent\n\r\
\tsinh\tHyperbolic Sine\n\r\
\tcosh\tHyperbolic Cosine\n\r\
\ttanh\tHyperbolic Tangent\n\r\
\tln\tNatural Logarithm\n\r\
\tlog\tBase 10 Logarithm\n\r\
\t\n\r\
Constants used:\n\r\
\tpi\t3.14159265358979323846\n\r\
\te\t2.71828182845904523536\n\r\
\tc\t299792458\n\r\
\tgamma\t0.57721566490153286060\n\r\
\tphi\t1.61803398874989484820\n\r\
\t",
IDC_STATIC,16,70,210,200
END