ReaWwise

REAPER extension
Log | Files | Refs | Submodules

CustomDrawableButton.h (1218B)


      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 CustomDrawableButton
     23 		: public juce::DrawableButton
     24 	{
     25 	public:
     26 		CustomDrawableButton(const juce::String& buttonName, std::unique_ptr<juce::Drawable> drawable);
     27 
     28 		juce::Rectangle<float> getImageBounds() const override;
     29 
     30 	private:
     31 		std::unique_ptr<juce::Drawable> drawable;
     32 
     33 		JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CustomDrawableButton)
     34 	};
     35 } // namespace AK::WwiseTransfer