在Display基类中添加SetupUI虚函数 (#1742)

Signed-off-by: jeck.chen <jeck.chen@dbappsecurity.com.cn>
This commit is contained in:
baidxi
2026-02-04 21:03:08 +08:00
committed by GitHub
parent 2b025c4ea6
commit 173eaa7463
4 changed files with 3 additions and 9 deletions

View File

@ -37,7 +37,6 @@ protected:
bool hide_subtitle_ = false; // Control whether to hide chat messages/subtitles
void InitializeLcdThemes();
void SetupUI();
virtual bool Lock(int timeout_ms = 0) override;
virtual void Unlock() override;
@ -51,7 +50,7 @@ public:
virtual void SetChatMessage(const char* role, const char* content) override;
virtual void ClearChatMessages() override;
virtual void SetPreviewImage(std::unique_ptr<LvglImage> image) override;
virtual void SetupUI() override;
// Add theme switching function
virtual void SetTheme(Theme* theme) override;