ReaWwise

REAPER extension
Log | Files | Refs | Submodules

Splitter.h (1127B)


      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 #pragma once
     17 
     18 #include <juce_gui_basics/juce_gui_basics.h>
     19 
     20 namespace AK::WwiseTransfer
     21 {
     22 	class Splitter : public juce::ToggleButton
     23 	{
     24 	public:
     25 		Splitter() = default;
     26 
     27 		void paintButton(juce::Graphics& g, bool shouldDrawButtonAsHighlighted, bool shouldDrawButtonAsDown) override;
     28 
     29 	private:
     30 		JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(Splitter);
     31 	};
     32 } // namespace AK::WwiseTransfer