mirror of
https://github.com/m1ngsama/TUT.git
synced 2025-12-24 10:51:46 +00:00
15 lines
349 B
C++
15 lines
349 B
C++
#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();
|
||
|