I must implement getNumRows and paintListBoxItem
where's the "implement pure virtual function" button anyway?
can't be hard can it IDE makers? look at base class, look for "= 0" on declarations, ask us if we want inline, impl file or at the end, create a stub!
//Allocation
target = new IRCellTarget* [ins];
//Indexing all coloums
for ( i = 0; i < ins; i++)
target[i] = new IRCellTarget[outs];
for (i = 0; i < ins; i++)
{
for(j = 0; j < outs; j++)
{
target[j][i].setRowCol(j,i);
target[j][i].setBounds(FIRST_CELL_X + i * (cellWidth + 5),FIRST_CELL_Y + j * (cellHeight + 5),cellWidth,cellHeight);
addAndMakeVisible (&target[j][i]);
}
}
Return to General JUCE discussion
Users browsing this forum: No registered users and 4 guests