| 117 | } |
| 118 | |
| 119 | void AdvSceneSwitcher::LoadUI() |
| 120 | { |
| 121 | DisplayMissingDataDirWarning(); |
| 122 | DisplayMissingDependencyWarning(); |
| 123 | DisplayCorruptedInstallWarning(); |
| 124 | |
| 125 | SetupGeneralTab(); |
| 126 | SetupTitleTab(); |
| 127 | SetupExecutableTab(); |
| 128 | SetupRegionTab(); |
| 129 | SetupPauseTab(); |
| 130 | SetupSequenceTab(); |
| 131 | SetupTransitionsTab(); |
| 132 | SetupIdleTab(); |
| 133 | SetupRandomTab(); |
| 134 | SetupMediaTab(); |
| 135 | SetupFileTab(); |
| 136 | SetupTimeTab(); |
| 137 | SetupAudioTab(); |
| 138 | SetupVideoTab(); |
| 139 | SetupSceneGroupTab(); |
| 140 | SetupMacroTab(); |
| 141 | SetupOtherTabs(ui->tabWidget); |
| 142 | |
| 143 | SetDeprecationWarnings(); |
| 144 | SetTabOrder(ui->tabWidget); |
| 145 | SetCurrentTab(ui->tabWidget); |
| 146 | RestoreWindowGeo(); |
| 147 | |
| 148 | loading = false; |
| 149 | } |
| 150 | |
| 151 | bool AdvSceneSwitcher::eventFilter(QObject *obj, QEvent *event) |
| 152 | { |
nothing calls this directly
no test coverage detected