Advertisement
Guest User

Untitled

a guest
Jun 19th, 2013
2,843
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. @interface SBVolumeSliderRow : PTSSliderRow
  2. {
  3. }
  4.  
  5. - (void)setValue:(id)arg1;
  6. - (id)value;
  7.  
  8. @end
  9.  
  10. @interface SBPrototypeController : NSObject <SBVolumePressBandit, _UISettingsKeyObserver>
  11. {
  12. SBRootSettings *_rootSettings; // 4881112 = 0x4a7ad8
  13. UIWindow *_settingsWindow; // 4881116 = 0x4a7adc
  14. PTSettingsController *_settingsController; // 4881120 = 0x4a7ae0
  15. BOOL _showingSettings; // 4881124 = 0x4a7ae4
  16. }
  17.  
  18. + (id)sharedInstance;
  19. + (void)reloadDefaults;
  20. - (void)_updatePreventingLockover;
  21. - (void)_configureForDefaults;
  22. - (void)_tearDownSettingsWindow;
  23. - (struct CGRect)_offscreenFrame;
  24. - (void)_hideSettings;
  25. - (void)_showSettings;
  26. - (void)settings:(id)arg1 changedValueForKey:(id)arg2;
  27. - (void)handleVolumeDecrease;
  28. - (void)handleVolumeIncrease;
  29. - (BOOL)isShowingSettingsUI;
  30. - (id)rootSettings;
  31. - (void)dealloc;
  32. - (id)init;
  33.  
  34. @end
  35.  
  36. @interface SBRootSettings : _UISettings
  37. {
  38. BOOL _preventLockover; // 4881180 = 0x4a7b1c
  39. BOOL _slowSpringAnimations; // 4881184 = 0x4a7b20
  40. SBAppParallaxSettings *_parallaxSettings; // 4881128 = 0x4a7ae8
  41. SBDockSettings *_dockSettings; // 4881132 = 0x4a7aec
  42. SBFolderSettings *_folderSettings; // 4881136 = 0x4a7af0
  43. SBRootZoomSettings *_rootZoomSettings; // 4881140 = 0x4a7af4
  44. SBControlCenterSettings *_controlCenterSettings; // 4881144 = 0x4a7af8
  45. SBAppSliderSettings *_appSliderSettings; // 4881148 = 0x4a7afc
  46. SBLockScreenSettings *_lockScreenSettings; // 4881152 = 0x4a7b00
  47. SBCarDisplaySettings *_carDisplaySettings; // 4881156 = 0x4a7b04
  48. SBLockScreenTestPluginSettings *_lockScreenTestPluginSettings; // 4881160 = 0x4a7b08
  49. SBCloseBoxSettings *_closeBoxSettings; // 4881164 = 0x4a7b0c
  50. SBFadeAnimationSettings *_fadeAnimationSettings; // 4881168 = 0x4a7b10
  51. SBAlertItemsSettings *_alertItemsSettings; // 4881172 = 0x4a7b14
  52. SBNotificationCenterSettings *_notificationCenterSettings; // 4881176 = 0x4a7b18
  53. }
  54.  
  55. + (id)settingsControllerModule;
  56. @property BOOL slowSpringAnimations; // @synthesize slowSpringAnimations=_slowSpringAnimations;
  57. @property BOOL preventLockover; // @synthesize preventLockover=_preventLockover;
  58. @property(retain) SBNotificationCenterSettings *notificationCenterSettings; // @synthesize notificationCenterSettings=_notificationCenterSettings;
  59. @property(retain) SBAlertItemsSettings *alertItemsSettings; // @synthesize alertItemsSettings=_alertItemsSettings;
  60. @property(retain) SBFadeAnimationSettings *fadeAnimationSettings; // @synthesize fadeAnimationSettings=_fadeAnimationSettings;
  61. @property(retain) SBCloseBoxSettings *closeBoxSettings; // @synthesize closeBoxSettings=_closeBoxSettings;
  62. @property(retain) SBLockScreenTestPluginSettings *lockScreenTestPluginSettings; // @synthesize lockScreenTestPluginSettings=_lockScreenTestPluginSettings;
  63. @property(retain) SBCarDisplaySettings *carDisplaySettings; // @synthesize carDisplaySettings=_carDisplaySettings;
  64. @property(retain) SBLockScreenSettings *lockScreenSettings; // @synthesize lockScreenSettings=_lockScreenSettings;
  65. @property(retain) SBAppSliderSettings *appSliderSettings; // @synthesize appSliderSettings=_appSliderSettings;
  66. @property(retain) SBControlCenterSettings *controlCenterSettings; // @synthesize controlCenterSettings=_controlCenterSettings;
  67. @property(retain) SBRootZoomSettings *rootZoomSettings; // @synthesize rootZoomSettings=_rootZoomSettings;
  68. @property(retain) SBFolderSettings *folderSettings; // @synthesize folderSettings=_folderSettings;
  69. @property(retain) SBDockSettings *dockSettings; // @synthesize dockSettings=_dockSettings;
  70. @property(retain) SBAppParallaxSettings *parallaxSettings; // @synthesize parallaxSettings=_parallaxSettings;
  71.  
  72. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement