/* ============================================================================== callReportView.h Created: 5 Dec 2019 8:22:21pm Author: Ryan Andrews ============================================================================== */ #pragma once #include "../JuceLibraryCode/JuceHeader.h" #include "topLeft.h" #include "topRightSect.h" #include "reportedFault.h" #include "partsSect.h" #include "bottomSect.h" //============================================================================== /* */ class callReportView : public Component { public: callReportView(); ~callReportView(); void paint (Graphics&) override; void resized() override; private: Font formTitle; Label formLabel; topLeftSect topLeft; topRightSect topRight; reportedFault reportedFault; partsSect partSection; bottomSect bottomSection; JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (callReportView) };