MCPcopy Create free account
hub / github.com/Tom94/tev / HelpWindow

Class HelpWindow

include/tev/HelpWindow.h:33–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31namespace tev {
32
33class HelpWindow final : public nanogui::Window {
34public:
35 HelpWindow(nanogui::Widget* parent, std::weak_ptr<Ipc> ipc, std::function<void()> closeCallback);
36
37 bool keyboard_event(int key, int scancode, int action, int modifiers) override;
38
39 static std::string COMMAND;
40 static std::string ALT;
41
42private:
43 std::function<void()> mCloseCallback;
44 nanogui::TabWidget* mTabWidget = nullptr;
45 nanogui::VScrollPanel* mScrollPanel = nullptr;
46 nanogui::VScrollPanel* mAboutScrollPanel = nullptr;
47};
48
49} // namespace tev

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected