ReaWwise

REAPER extension
Log | Files | Refs | Submodules

SimpleListBox.h (1762B)


      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 SimpleListBoxModel
     23 		: public juce::ListBoxModel
     24 	{
     25 	public:
     26 		SimpleListBoxModel(const std::vector<juce::String>& items);
     27 
     28 		int getNumRows() override;
     29 		void paintListBoxItem(int rowNumber, juce::Graphics& g, int width, int height, bool rowIsSelected) override;
     30 		void listBoxItemClicked(int row, const juce::MouseEvent&) override;
     31 		juce::Value& getSelectedRowValue();
     32 
     33 	private:
     34 		const std::vector<juce::String>& items;
     35 		juce::Value selectedRowValue;
     36 
     37 		JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(SimpleListBoxModel);
     38 	};
     39 
     40 	class SimpleListBox
     41 		: public juce::ListBox
     42 		, public juce::Value::Listener
     43 	{
     44 	public:
     45 		SimpleListBox(const std::vector<juce::String>& items);
     46 		~SimpleListBox();
     47 
     48 		juce::Value& getSelectedRowValue();
     49 		void valueChanged(juce::Value& value) override;
     50 
     51 	private:
     52 		SimpleListBoxModel model;
     53 
     54 		JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(SimpleListBox);
     55 	};
     56 } // namespace AK::WwiseTransfer