CustomDrawableButton.cpp (1365B)
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 "CustomDrawableButton.h" 17 18 namespace AK::WwiseTransfer 19 { 20 namespace CustomDrawableButtonConstants 21 { 22 constexpr int margin = 2; 23 } 24 25 CustomDrawableButton::CustomDrawableButton(const juce::String& buttonName, std::unique_ptr<juce::Drawable> drawableValue) 26 : juce::DrawableButton(buttonName, juce::DrawableButton::ButtonStyle::ImageOnButtonBackground) 27 , drawable(std::move(drawableValue)) 28 { 29 setImages(drawable.get()); 30 } 31 32 juce::Rectangle<float> CustomDrawableButton::getImageBounds() const 33 { 34 return getLocalBounds().reduced(CustomDrawableButtonConstants::margin).toFloat(); 35 } 36 } // namespace AK::WwiseTransfer