| 693 | } |
| 694 | |
| 695 | juce::Rectangle<int> ProcessorClient::getScreenBounds() { |
| 696 | traceScope(); |
| 697 | |
| 698 | std::lock_guard<std::mutex> lock(m_cmdMtx); |
| 699 | |
| 700 | Message<GetScreenBounds> msg(this); |
| 701 | PLD(msg).setNumber(0); |
| 702 | if (!msg.send(m_sockCmdOut.get())) { |
| 703 | logln("getScreenBounds failed: can't send message"); |
| 704 | } |
| 705 | |
| 706 | return m_lastScreenBounds; |
| 707 | } |
| 708 | |
| 709 | void ProcessorClient::setParameterValue(int channel, int paramIdx, float value) { |
| 710 | traceScope(); |