AboutComponent.h (1542B)
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 "Theme/CustomLookAndFeel.h" 19 20 #include <juce_gui_basics/juce_gui_basics.h> 21 22 namespace AK::WwiseTransfer 23 { 24 class AboutComponent : public juce::Component 25 { 26 public: 27 AboutComponent(const juce::String& applicationName); 28 ~AboutComponent() override; 29 30 void resized() override; 31 void paint(juce::Graphics& g); 32 33 private: 34 CustomLookAndFeel lookAndFeel; 35 36 juce::Label titleLabel; 37 juce::Label versionLabel; 38 juce::Label copyrightLabel; 39 40 juce::String copyRightSymbol; 41 42 juce::HyperlinkButton documentationLink; 43 juce::HyperlinkButton releaseNotesLink; 44 juce::HyperlinkButton licensingLink; 45 46 juce::TooltipWindow tooltipWindow; 47 48 std::unique_ptr<juce::Drawable> wwiseIcon; 49 50 JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(AboutComponent) 51 }; 52 } // namespace AK::WwiseTransfer