ReaWwise

REAPER extension
Log | Files | Refs | Submodules

SimpleListBox.cpp (2300B)


      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 "SimpleListBox.h"
     17 
     18 namespace AK::WwiseTransfer
     19 {
     20 	SimpleListBoxModel::SimpleListBoxModel(const std::vector<juce::String>& items)
     21 		: items(items)
     22 		, selectedRowValue(juce::var(0))
     23 	{
     24 	}
     25 
     26 	int SimpleListBoxModel::getNumRows()
     27 	{
     28 		return items.size();
     29 	}
     30 
     31 	void SimpleListBoxModel::paintListBoxItem(int rowNumber, juce::Graphics& g, int width, int height, bool rowIsSelected)
     32 	{
     33 		if(rowIsSelected)
     34 			g.fillAll(juce::LookAndFeel::getDefaultLookAndFeel().findColour(juce::TextEditor::highlightColourId));
     35 
     36 		g.setColour(juce::Colours::white);
     37 		g.setFont(height * 0.7f);
     38 
     39 		if(rowNumber < items.size())
     40 		{
     41 			g.drawText(items.at(rowNumber), 5, 0, width, height,
     42 				juce::Justification::centredLeft, true);
     43 		}
     44 	}
     45 
     46 	void SimpleListBoxModel::listBoxItemClicked(int row, const juce::MouseEvent&)
     47 	{
     48 		selectedRowValue = row;
     49 	}
     50 
     51 	juce::Value& SimpleListBoxModel::getSelectedRowValue()
     52 	{
     53 		return selectedRowValue;
     54 	}
     55 
     56 	SimpleListBox::SimpleListBox(const std::vector<juce::String>& items)
     57 		: model(items)
     58 	{
     59 		model.getSelectedRowValue().addListener(this);
     60 
     61 		setModel(&model);
     62 	}
     63 
     64 	SimpleListBox::~SimpleListBox()
     65 	{
     66 		model.getSelectedRowValue().removeListener(this);
     67 	}
     68 
     69 	juce::Value& SimpleListBox::getSelectedRowValue()
     70 	{
     71 		return model.getSelectedRowValue();
     72 	}
     73 
     74 	void SimpleListBox::valueChanged(juce::Value& value)
     75 	{
     76 		auto& selectedRowValue = model.getSelectedRowValue();
     77 
     78 		if(value.refersToSameSourceAs(selectedRowValue) && selectedRowValue != getSelectedRow())
     79 			selectRow(selectedRowValue.getValue());
     80 	}
     81 } // namespace AK::WwiseTransfer