Home
last modified time | relevance | path

Searched refs:existingComponentToUpdate (Results 1 – 16 of 16) sorted by relevance

/dports/audio/carla/Carla-2.4.1/source/modules/juce_gui_basics/widgets/
H A Djuce_TableListBox.cpp386 …Box::refreshComponentForRow (int rowNumber, bool rowSelected, Component* existingComponentToUpdate) in refreshComponentForRow() argument
388 if (existingComponentToUpdate == nullptr) in refreshComponentForRow()
389 existingComponentToUpdate = new RowComp (*this); in refreshComponentForRow()
391 static_cast<RowComp*> (existingComponentToUpdate)->update (rowNumber, rowSelected); in refreshComponentForRow()
393 return existingComponentToUpdate; in refreshComponentForRow()
484 …* TableListBoxModel::refreshComponentForCell (int, int, bool, Component* existingComponentToUpdate) in refreshComponentForCell() argument
486 ignoreUnused (existingComponentToUpdate); in refreshComponentForCell()
487 …jassert (existingComponentToUpdate == nullptr); // indicates a failure in the code that recycles t… in refreshComponentForCell()
H A Djuce_TableListBox.h106 Component* existingComponentToUpdate);
314 …hComponentForRow (int rowNumber, bool isRowSelected, Component* existingComponentToUpdate) overrid…
H A Djuce_ListBox.h87 Component* existingComponentToUpdate);
H A Djuce_ListBox.cpp942 Component* ListBoxModel::refreshComponentForRow (int, bool, Component* existingComponentToUpdate) in refreshComponentForRow() argument
944 ignoreUnused (existingComponentToUpdate); in refreshComponentForRow()
945 …jassert (existingComponentToUpdate == nullptr); // indicates a failure in the code that recycles t… in refreshComponentForRow()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_gui_basics/widgets/
H A Djuce_TableListBox.cpp386 …Box::refreshComponentForRow (int rowNumber, bool rowSelected, Component* existingComponentToUpdate) in refreshComponentForRow() argument
388 if (existingComponentToUpdate == nullptr) in refreshComponentForRow()
389 existingComponentToUpdate = new RowComp (*this); in refreshComponentForRow()
391 static_cast<RowComp*> (existingComponentToUpdate)->update (rowNumber, rowSelected); in refreshComponentForRow()
393 return existingComponentToUpdate; in refreshComponentForRow()
484 …* TableListBoxModel::refreshComponentForCell (int, int, bool, Component* existingComponentToUpdate) in refreshComponentForCell() argument
486 ignoreUnused (existingComponentToUpdate); in refreshComponentForCell()
487 …jassert (existingComponentToUpdate == nullptr); // indicates a failure in the code that recycles t… in refreshComponentForCell()
H A Djuce_TableListBox.h106 Component* existingComponentToUpdate);
314 …hComponentForRow (int rowNumber, bool isRowSelected, Component* existingComponentToUpdate) overrid…
H A Djuce_ListBox.h87 Component* existingComponentToUpdate);
H A Djuce_ListBox.cpp942 Component* ListBoxModel::refreshComponentForRow (int, bool, Component* existingComponentToUpdate) in refreshComponentForRow() argument
944 ignoreUnused (existingComponentToUpdate); in refreshComponentForRow()
945 …jassert (existingComponentToUpdate == nullptr); // indicates a failure in the code that recycles t… in refreshComponentForRow()
/dports/devel/juce/JUCE-f37e9a1/extras/Projucer/Source/ComponentEditor/UI/
H A Djucer_ResourceEditorPanel.cpp140 Component* existingComponentToUpdate) in refreshComponentForCell() argument
145 if (existingComponentToUpdate == nullptr) in refreshComponentForCell()
146 existingComponentToUpdate = new ResourceListButton (document); in refreshComponentForCell()
148 ((ResourceListButton*) existingComponentToUpdate)->update (rowNumber); in refreshComponentForCell()
150 return existingComponentToUpdate; in refreshComponentForCell()
H A Djucer_ResourceEditorPanel.h47 …ll (int rowNumber, int columnId, bool isRowSelected, Component* existingComponentToUpdate) overrid…
/dports/audio/carla/Carla-2.4.1/source/modules/juce_gui_basics/filebrowser/
H A Djuce_FileListComponent.cpp238 …tComponent::refreshComponentForRow (int row, bool isSelected, Component* existingComponentToUpdate) in refreshComponentForRow() argument
240 …jassert (existingComponentToUpdate == nullptr || dynamic_cast<ItemComponent*> (existingComponentTo… in refreshComponentForRow()
242 auto comp = static_cast<ItemComponent*> (existingComponentToUpdate); in refreshComponentForRow()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_gui_basics/filebrowser/
H A Djuce_FileListComponent.cpp238 …tComponent::refreshComponentForRow (int row, bool isSelected, Component* existingComponentToUpdate) in refreshComponentForRow() argument
240 …jassert (existingComponentToUpdate == nullptr || dynamic_cast<ItemComponent*> (existingComponentTo… in refreshComponentForRow()
242 auto comp = static_cast<ItemComponent*> (existingComponentToUpdate); in refreshComponentForRow()
/dports/devel/juce/JUCE-f37e9a1/extras/Projucer/Source/Project/UI/
H A Djucer_FileGroupInformationComponent.h89 …ponentForRow (int rowNumber, bool /*isRowSelected*/, Component* existingComponentToUpdate) override in refreshComponentForRow() argument
91 std::unique_ptr<Component> existing (existingComponentToUpdate); in refreshComponentForRow()
97 if (existingComponentToUpdate == nullptr in refreshComponentForRow()
/dports/devel/juce/JUCE-f37e9a1/examples/Plugins/
H A DMidiLoggerPluginDemo.h156 Component* existingComponentToUpdate) override in refreshComponentForCell() argument
158 delete existingComponentToUpdate; in refreshComponentForCell() local
/dports/devel/juce/JUCE-f37e9a1/extras/AudioPluginHost/Source/Plugins/
H A DIOConfigurationWindow.cpp109 Component* existingComponentToUpdate) override in refreshComponentForCell()
111 auto* textButton = dynamic_cast<TextButton*> (existingComponentToUpdate); in refreshComponentForCell()
/dports/devel/juce/JUCE-f37e9a1/examples/GUI/
H A DWidgetsDemo.h990 Component* existingComponentToUpdate) override in refreshComponentForCell() argument
994 jassert (existingComponentToUpdate == nullptr); in refreshComponentForCell()
1000 … auto* ratingsBox = static_cast<RatingColumnCustomComponent*> (existingComponentToUpdate); in refreshComponentForCell()
1012 auto* textLabel = static_cast<EditableTextCustomComponent*> (existingComponentToUpdate); in refreshComponentForCell()