TUT/src/tui_view.h

15 lines
349 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include "ics_parser.h"
#include <vector>
// 运行 ncurses TUI展示给定事件列表
// 当 events 为空时,在界面上提示“未来一个月暂无活动”
void run_tui(const std::vector<IcsEvent> &events);
// 运行 ncurses TUI for the portal
int run_portal_tui();
// 显示启动画面
void display_splash_screen();