MCPcopy Create free account
hub / github.com/audacity/audacity / OnFullScreen

Function OnFullScreen

src/menus/ExtraMenus.cpp:15–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13// Menu handler functions
14
15void OnFullScreen(const CommandContext &context)
16{
17 auto &project = context.project;
18 auto &window = GetProjectFrame( project );
19
20 bool bChecked = !window.wxTopLevelWindow::IsFullScreen();
21 window.wxTopLevelWindow::ShowFullScreen(bChecked);
22
23 ToolManager::Get(project).ModifyToolbarMenus(project);
24}
25
26// Menu definitions
27

Callers

nothing calls this directly

Calls 2

GetFunction · 0.85
ModifyToolbarMenusMethod · 0.80

Tested by

no test coverage detected