mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 22:23:29 -07:00
Added TraceLoggerEnums.h with ButtonIds enum for calculator modes
This commit is contained in:
parent
d8cb5c82a8
commit
977a39a01f
1 changed files with 61 additions and 0 deletions
61
src/CalcViewModel/TraceLoggerEnums.h
Normal file
61
src/CalcViewModel/TraceLoggerEnums.h
Normal file
|
@ -0,0 +1,61 @@
|
|||
#pragma once
|
||||
namespace CalculatorApp
|
||||
{
|
||||
public enum TraceLoggerButtonIdEnum
|
||||
{
|
||||
ZeroButton,
|
||||
OneButton,
|
||||
TwoButton,
|
||||
ThreeButton,
|
||||
FourButton,
|
||||
FiveButton,
|
||||
SixButton,
|
||||
SevenButton,
|
||||
EightButton,
|
||||
NineButton,
|
||||
DecimalButton,
|
||||
NegateButton,
|
||||
EqualsButton,
|
||||
PlusButton,
|
||||
MinusButton,
|
||||
MultiplyButton,
|
||||
DivideButton,
|
||||
BackspaceButton,
|
||||
ClearButton,
|
||||
ClearEntryButton,
|
||||
PercentButton,
|
||||
SquareRootButton,
|
||||
XPower2Button,
|
||||
XPower3Button,
|
||||
InvertButton,
|
||||
SinButton,
|
||||
CosButton,
|
||||
TanButton,
|
||||
InvsinButton,
|
||||
InvcosButton,
|
||||
InvtanButton,
|
||||
SinhButton,
|
||||
CoshButton,
|
||||
TanhButton,
|
||||
InvsinhButton,
|
||||
InvcoshButton,
|
||||
InvtanhButton,
|
||||
LogBase10Button,
|
||||
ExpButton,
|
||||
ModButton,
|
||||
LogBaseEButton,
|
||||
DmsButton,
|
||||
DegreesButton,
|
||||
OpenParenthesisButton,
|
||||
CloseParenthesisButton,
|
||||
FactorialButton,
|
||||
PowerOf10Button,
|
||||
PowerOfEButton,
|
||||
ShiftButton,
|
||||
PiButton,
|
||||
YSquareRootButton,
|
||||
PowerButton,
|
||||
|
||||
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue