ValidatableTextEditor.h (1610B)
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 ValidatableTextEditor 23 : public juce::TextEditor 24 , public juce::Value::Listener 25 { 26 public: 27 explicit ValidatableTextEditor(const juce::String& componentName = juce::String()); 28 ~ValidatableTextEditor(); 29 30 void valueChanged(juce::Value& value) override; 31 juce::String getTooltip() override; 32 33 void focusGained(juce::Component::FocusChangeType focusChangeType) override; 34 35 juce::Value& getValidationValue(); 36 juce::Value& getErrorMessageValue(); 37 38 enum ColourIds 39 { 40 errorOutlineColor = 0x00000000, 41 }; 42 43 private: 44 void refreshComponent(bool isValid); 45 juce::Value validationValue; 46 juce::Value errorMessageValue; 47 48 juce::String valueOnFocusGained; 49 50 JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(ValidatableTextEditor); 51 }; 52 } // namespace AK::WwiseTransfer