MCPcopy Create free account
hub / github.com/cmauri/eviacam / SetEntryInTaskBar

Method SetEntryInTaskBar

wxutil/wxappbar.cpp:328–344  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

326}
327
328void WXAppBar::SetEntryInTaskBar (bool v)
329{
330#if defined(__WXMSW__)
331 // TODO
332 (void)(v); // Remove warning
333 //assert (false);
334#elif defined(__WXGTK__)
335 // Get X11 handle for our window
336 GtkWindow *gtkWindow= (GtkWindow *) GetHandle();
337 assert (gtkWindow);
338 if (!gtkWindow) return;
339
340 gtk_window_set_skip_taskbar_hint (gtkWindow, (v? FALSE : TRUE));
341#else
342 assert (false);
343#endif
344}
345
346void WXAppBar::SetEntryInPager (bool v)
347{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected