ReaWwise

REAPER extension
Log | Files | Refs | Submodules

Splitter.cpp (1873B)


      1 /*----------------------------------------------------------------------------------------
      2 
      3 Copyright (c) 2023 AUDIOKINETIC Inc.
      4 
      5 This file is licensed to use under the license available at:
      6 https://github.com/audiokinetic/ReaWwise/blob/main/License.txt (the "License").
      7 You may not use this file except in compliance with the License.
      8 
      9 Unless required by applicable law or agreed to in writing, software distributed
     10 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
     11 CONDITIONS OF ANY KIND, either express or implied.  See the License for the
     12 specific language governing permissions and limitations under the License.
     13 
     14 ----------------------------------------------------------------------------------------*/
     15 
     16 #include "Splitter.h"
     17 
     18 namespace AK::WwiseTransfer
     19 {
     20 	namespace SplitterConstants
     21 	{
     22 		constexpr int padding = 2;
     23 		constexpr int lineHeight = 2;
     24 		constexpr int lineCenterOffset = 1;
     25 	} // namespace SplitterConstants
     26 
     27 	void Splitter::paintButton(juce::Graphics& g, bool shouldDrawButtonAsHighlighted, bool shouldDrawButtonAsDown)
     28 	{
     29 		using namespace SplitterConstants;
     30 
     31 		auto area = getLocalBounds();
     32 		auto triangleArea = area.removeFromRight(area.getHeight());
     33 
     34 		g.setColour(getLookAndFeel().findColour(juce::GroupComponent::outlineColourId));
     35 
     36 		juce::Path path;
     37 		if(getToggleState())
     38 			path.addTriangle(triangleArea.getCentre().withX(triangleArea.getX()).toFloat(), triangleArea.getTopRight().toFloat(), triangleArea.getBottomRight().toFloat());
     39 		else
     40 			path.addTriangle(triangleArea.getBottomLeft().toFloat(), triangleArea.getCentre().withY(triangleArea.getY()).toFloat(), triangleArea.getBottomRight().toFloat());
     41 
     42 		g.fillPath(path);
     43 
     44 		auto lineRect = juce::Rectangle(area.getX(), area.getCentreY() - lineCenterOffset, area.getWidth() - padding, lineHeight);
     45 
     46 		g.fillRect(lineRect);
     47 	}
     48 } // namespace AK::WwiseTransfer