Is anything required to get a Quartz callback besides registering for it? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T11:33:45Zhttp://stackoverflow.com/feeds/question/958281http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/958281/is-anything-required-to-get-a-quartz-callback-besides-registering-for-it0Is anything required to get a Quartz callback besides registering for it?Andrew Lusk2009-06-05T21:44:08Z2009-07-01T17:41:05Z
<p>I'm trying to use <code>CGDisplayRegisterReconfigurationCallback</code> to get display reconfiguration events in Quartz on Mac OS X. Here's the super-simple code:</p>
<pre><code>void CB(CGDirectDisplayID display,
CGDisplayChangeSummaryFlags flags,
void *userInfo) {
std::cout << "In callback!" << std::endl;
}
int main (int argc, char * const argv[]) {
std::cout << CGDisplayRegisterReconfigurationCallback(CB, NULL) << std::endl;
std::cout << "Registered callback, sleeping..." << std::endl;
sleep(10000000);
return 0;
}
</code></pre>
<p>However, the callback isn't getting called when I plug/unplug monitors, etc. <code>CGDisplayRegisterReconfigurationCallback</code> returns success.</p>
<p>'new to os x development' would be an overstatement of my background knowledge here. Do I need to instantiate something like a quartz event loop to get callbacks to work?</p>