Home
last modified time | relevance | path

Searched refs:pgMgr_ (Results 1 – 8 of 8) sorted by relevance

/base/update/updater/services/ui/strategy/
Dlogo_strategy.cpp41 pgMgr_[id_]->SetVisible(true); in Show()
42 pgMgr_[id_].As<ImgViewAdapter>()->Start(); in Show()
47 pgMgr_[id_].As<ImgViewAdapter>()->Stop(); in Hide()
48 pgMgr_[id_]->SetVisible(false); in Hide()
53 pgMgr_[id_]->SetVisible(true); in Show()
58 pgMgr_[id_]->SetVisible(false); in Hide()
Dprogress_strategy.cpp46 pgMgr_[id_]->SetVisible(true); in Show()
51 pgMgr_[id_]->SetVisible(false); in Hide()
62 pgMgr_[id_].As<TextLabelAdapter>()->SetText(progress); in ShowProgress()
67 if (!pgMgr_[id_].As<BoxProgressAdapter>()->InitEp()) { in BarProgress()
74 pgMgr_[id_].As<BoxProgressAdapter>()->SetValue(value); in ShowProgress()
Dprogress_strategy.h26 explicit ProgressStrategy(const ComInfo &id) : id_ {id}, pgMgr_ {PageManager::GetInstance()} {} in ProgressStrategy()
34 PageManager &pgMgr_; variable
Dlogo_strategy.h26 explicit LogoStrategy(const ComInfo &id) : id_ {id}, pgMgr_ {PageManager::GetInstance()} {} in LogoStrategy()
33 PageManager &pgMgr_; variable
/base/update/updater/services/ui/control/
Devent_manager.cpp21 EventManager::EventManager() : pgMgr_(PageManager::GetInstance()) in EventManager()
33 if (!pgMgr_.IsValidCom(viewId)) { in Add()
37 auto com = pgMgr_[viewId.pageId][viewId.comId].As(); in Add()
45 if (!pgMgr_.IsValidCom(viewId)) { in Add()
49 auto com = pgMgr_[viewId.pageId][viewId.comId].As(); in Add()
61 if (!pgMgr_.IsValidCom(viewId)) { in Add()
65 auto com = pgMgr_[viewId.pageId][viewId.comId].As(); in Add()
Devent_manager.h40 PageManager &pgMgr_;
/base/update/updater/services/ui/
Dupdater_ui_facade.cpp25 …: strategies_ {UpdaterUiConfig::GetStrategy()}, pgMgr_ {PageManager::GetInstance()}, mode_ {Update… in UpdaterUiFacade()
114 return pgMgr_[it->second.progressPage.progressPageId].IsVisible(); in IsInProgress()
147 pgMgr_[progressPg.progressPageId][progressPg.warningComId]->SetVisible(isShow); in ShowProgressWarning()
160 pgMgr_.ShowPage(it->second.progressPage.progressPageId); in ShowProgressPage()
174 pgMgr_.ShowPage(it->second.resPage.successPageId); in ShowSuccessPage()
187 pgMgr_.ShowPage(it->second.resPage.failPageId); in ShowFailedPage()
198 pgMgr_.ShowPage(it->second.confirmPageId); in ShowFactoryConfirmPage()
203 pgMgr_.ShowMainPage(); in ShowMainpage()
230 pgMgr_[id.pageId][id.comId].As<TextLabelAdapter>()->SetText(tag); in ShowMsg()
235 pgMgr_[id.pageId][id.comId].As<TextLabelAdapter>()->SetText(tag); in ShowMsg()
Dupdater_ui_facade.h63 PageManager &pgMgr_; variable