* Added IGraphAnalyzer * Key Graph Features called and getting returned to the client. To do put all strings into the Equation object * Updated UpdateKeyGraphFeatures to add function analysis data to all properties in Equation object * Update KGF when variables are updated * Key graph features ui started * Added MathRichEditBox and started hooking up key graph features to the UI * Updated EquationViewModel to include parity and periodicity * Updated key graph features to update the EquationViewModel * updated key graph features to display more values * Key graph features populating uing MathRichEdit mode * moved KeyGraphFeatures control to GraphingCalculator.xaml * Use MathML formatting instead of MathRichEdit for strings passed back from the engine * cleaned up project targeting and equation.h comments * Updated equation edit box to populate for KeyGraphFeatures * Fixed vcxproj files to have the correct targeting and certificates. KGF Title strings moved to x:Uid instead of the code behind * Updated per PR feedback * Update MathRichEditBox to detect if the string is a mathml string and use the appropriate set method to set the text * fixed the issue where parity, periodicity and monotonicity could be set with an old value if the next one is empty * KGF control UI adjustments and error handling * Error control updates * Error handling added when analysis fails * fixed alignment on rich edit boxes * Add monotonicity direction into the mathml string and only have 1 richeditbox * Set hover state on KGF EquationEditBox to change button opacity and fixed spacing in Monotonicity RichEditBox * remove sideload package certificate info VS added * updated logic for setting error strings to be in the viewmodel * Updated KeyGraphFeatures to populate dynamically using a ListView and TemplateSelector * Update periodicity to not show if it isn't supported * Fixed issue where y-intercept was using the x-intercept value * Remove ItemsControl ItemsContainerStyle * Updated per pr feedback. Fixed bug where analysis error would not reset * Update MathRichEdit box to remove selection when focus is lost * Updated mathrichedit to get LAF access for Dev, Release and Graphing projects * Remove OnLostFocus in MathRichEdit, Change KGF ItemsControl back to ListView * Clean up styles for KGF and ensure the match the comps * Moved formatoptions logic to the Grapher constructor and reverted LineColor.Text resource that was mistakenly taken out * Add copyright header to KGF Files * fixed issue where asymptote values were not populating * Disable KGF button when there is no equation. Fixed issue where equation populated in a new equationtextbox after the previous one was deleted * Removed formatoptions testing lines used for debugging
105 lines
2.6 KiB
C++
105 lines
2.6 KiB
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#ifndef GRAPHINGAPI
|
|
#ifdef GRAPHING_ENGINE_IMPL
|
|
#define GRAPHINGAPI __declspec(dllexport)
|
|
#else
|
|
#define GRAPHINGAPI __declspec(dllimport)
|
|
#endif
|
|
#endif
|
|
|
|
namespace Graphing
|
|
{
|
|
struct NonCopyable
|
|
{
|
|
NonCopyable() = default;
|
|
virtual ~NonCopyable() = default;
|
|
|
|
NonCopyable(NonCopyable const&) = delete;
|
|
NonCopyable& operator=(NonCopyable const&) = delete;
|
|
};
|
|
|
|
struct NonMoveable
|
|
{
|
|
NonMoveable() = default;
|
|
virtual ~NonMoveable() = default;
|
|
|
|
NonMoveable(NonMoveable&&) = delete;
|
|
NonMoveable& operator=(NonMoveable&&) = delete;
|
|
};
|
|
|
|
struct IExpression
|
|
{
|
|
virtual ~IExpression() = default;
|
|
|
|
virtual unsigned int GetExpressionID() const = 0;
|
|
virtual bool IsEmptySet() const = 0;
|
|
};
|
|
|
|
struct IVariable
|
|
{
|
|
virtual ~IVariable() = default;
|
|
|
|
virtual int GetVariableID() const = 0;
|
|
virtual const std::wstring& GetVariableName() = 0;
|
|
};
|
|
|
|
struct IExpressible
|
|
{
|
|
virtual ~IExpressible() = default;
|
|
|
|
virtual std::shared_ptr< IExpression > GetExpression() const = 0;
|
|
};
|
|
|
|
class Color
|
|
{
|
|
private:
|
|
// Each color channel is given an 8 bit space in a 32 bit uint32_t.
|
|
// The format is (RRGGBBAA). As an example,
|
|
// Red is FF0000FF (4,278,190,335)
|
|
static constexpr uint8_t redChannelShift = 24;
|
|
static constexpr uint8_t greenChannelShift = 16;
|
|
static constexpr uint8_t blueChannelShift = 8;
|
|
static constexpr uint8_t alphaChannelShift = 0;
|
|
|
|
public:
|
|
uint8_t R;
|
|
uint8_t G;
|
|
uint8_t B;
|
|
uint8_t A;
|
|
|
|
Color::Color(uint8_t r, uint8_t g, uint8_t b, uint8_t a) noexcept
|
|
: R{ r }, G{ g }, B{ b }, A{ a }
|
|
{}
|
|
|
|
Color::Color(uint8_t r, uint8_t g, uint8_t b) noexcept
|
|
: Color{ r, g, b, 0xFF }
|
|
{}
|
|
|
|
Color::Color() noexcept
|
|
: Color{ 0, 0, 0 }
|
|
{}
|
|
|
|
|
|
explicit Color(uint32_t value) noexcept
|
|
: Color{
|
|
static_cast<uint8_t>(value >> redChannelShift),
|
|
static_cast<uint8_t>(value >> greenChannelShift),
|
|
static_cast<uint8_t>(value >> blueChannelShift),
|
|
static_cast<uint8_t>(value >> alphaChannelShift)
|
|
}
|
|
{
|
|
}
|
|
|
|
explicit operator uint32_t() const
|
|
{
|
|
return (A << alphaChannelShift)
|
|
| (R << redChannelShift)
|
|
| (G << greenChannelShift)
|
|
| (B << blueChannelShift);
|
|
}
|
|
};
|
|
}
|