OutputLogComponent.h (1172B)
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 "Core/Logger.h" 19 #include "Core/WaapiClient.h" 20 21 #include <juce_gui_basics/juce_gui_basics.h> 22 23 namespace AK::WwiseTransfer 24 { 25 class OutputLogComponent 26 : public juce::TextEditor 27 , public Logger::IListener 28 { 29 public: 30 OutputLogComponent(); 31 32 void onLogMessage(const juce::String& logMessage); 33 34 private: 35 JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(OutputLogComponent); 36 }; 37 } // namespace AK::WwiseTransfer