MCPcopy Create free account
hub / github.com/apohl79/audiogridder / getScreenBounds

Method getScreenBounds

Server/Source/ProcessorClient.cpp:695–707  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

693}
694
695juce::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
709void ProcessorClient::setParameterValue(int channel, int paramIdx, float value) {
710 traceScope();

Callers

nothing calls this directly

Calls 3

setNumberMethod · 0.80
sendMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected