1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 |
PANEL_TYPE_SETTINGS = 1
PANEL_TYPE_CONTROLS = 2
if newState == SCENE_FRAGMENT_SHOWING then
elseif newState == SCENE_FRAGMENT_HIDING then
elseif newState == SCENE_FRAGMENT_HIDDEN then
-- We may hide this scene while one of these panels is active, and disabling share features.
-- To undo that, just re-enable them here. This assumes that there aren't multiple reasons to disable share features.
if DoesPlatformSupportDisablingShareFeatures ( ) and ZO_SharedOptions . DoesPanelDisableShareFeatures ( self . currentPanel ) then
end
end
end )
CALLBACK_MANAGER : RegisterCallback ( "OnEditAccountEmailKeyboardDialogClosed" , function ( ) self : UpdatePanelVisibility ( self . currentPanel ) end )
if OPTIONS_WINDOW_FRAGMENT : IsShowing ( ) and not self : AreDeferredSettingsForPanelLoading ( self . currentPanel ) then
if system == SETTING_TYPE_ACCOUNT and settingId == ACCOUNT_SETTING_ACCOUNT_EMAIL and result == ACCOUNT_EMAIL_REQUEST_RESULT_SUCCESS_EMAIL_UPDATED then
end
end
end
EVENT_MANAGER : RegisterForEvent ( "KeyboardOptions" , EVENT_DEFERRED_SETTING_REQUEST_COMPLETED , OnDeferredSettingRequestCompleted )
end
panelType = panelType or PANEL_TYPE_SETTINGS
local id = panelIdOrString
_G [ panelIdOrString ] = id
end
-- SelectionCallback calls expect to place in a control as the first argument even if not used by this callback.
else
end
end
end
local panelData =
{
}
if panelType == PANEL_TYPE_SETTINGS then
else
end
end
local IS_KEYBOARD_CONTROL = true
local USE_SELECTED = nil
-- Catch events...callbacks set in the xml
end
end
-- Put the control in the panel table
-- Panel doesn't exist yet, so create it
end
-- Add the control to the right panel list
-- Update visible state
end
end
-- Hide the old panel
if oldPanel then
for index = 1 , # oldPanel do
end
end
end
self . emptyPanelLabel : SetText ( zo_strformat ( SI_INTERFACE_OPTIONS_SETTINGS_PANEL_UNAVAILABLE , panelName ) )
-- Determine if the panel requires deferred loading
local readyToShowPanel = true
if isDeferredLoading then
readyToShowPanel = false
end
end
if readyToShowPanel then
end
end
if panelControls then
return true
end
end
end
return false
end
if IsSettingDeferred ( data . system , data . settingId ) and IsDeferredSettingLoading ( data . system , data . settingId ) then
return true
end
end
return false
end
local isDeferredLoading = false
isDeferredLoading = true
end
end
return isDeferredLoading
end
if DoesPlatformSupportDisablingShareFeatures ( ) and ZO_SharedOptions . DoesPanelDisableShareFeatures ( panelId ) then
end
-- Show the new panel
local cameraPreviewMode = panelId == SETTING_PANEL_CAMERA
self . control : GetNamedChild ( "ToggleFirstPersonButton" ) : SetHidden ( panelId ~= SETTING_PANEL_CAMERA ) -- only in camera panel
self . control : GetNamedChild ( "ResetToDefaultButton" ) : SetHidden ( panelId == SETTING_PANEL_ACCOUNT ) -- everywhere but account panel
end
end
end
end
if IsSettingDeferred ( data . system , data . settingId ) and not IsDeferredSettingLoaded ( data . system , data . settingId ) then
end
end
end
if panelControls then
-- Determine the visibility of each control on the panel
-- Since the controls are also headers and the like, we need to check if any
-- settings controls are showing so we don't end up showing just headers
local hasAnyVisibleSetting = false
hasAnyVisibleSetting = true
end
end
if hasAnyVisibleSetting then
-- Set anchors in separate loop in case controls in panel are not processed in the order they appear on the screen.
-- If the previous element can be dynamically hidden, then we need to update our anchors to reflect its hidden state
-- TODO: headers are still visible, even when every setting
-- under that header isn't. We should keep track when a setting is
-- visible underneath a header, and then for any header with 0
-- visible settings, we should mark them as not visible
-- like any other setting control.
end
else
control : SetAnchor ( control . originalPoint , relTo , control . originalRelativePoint , control . originalOffsetX , control . originalOffsetY )
end
end
end
end
else
end
end
-- Update the panel settings with the new values (may have changed if they are tied to another setting that changed...e.g. ui scale)
end
end
if controls then
end
end
end
if controls then
if saveOptions == SAVE_CURRENT_VALUES then
end
end
end
end
end
end
end
end
-- Pass SAVE_CURRENT_VALUES in the first parameter to save the updated values (can't click cancel to restore afterwards).
-- Pass DONT_SAVE_CURRENT_VALUES to update the values, but not save them (cancel will restore the previous values).
end
end
{
controlType = OPTIONS_SECTION_TITLE ,
}
end
end
--keep this around for backwards compatibility
end
end
end
end |