├── Assets ├── banner.png ├── full_square.png ├── glyph.png └── icon.png ├── Atria.plist ├── Changes.md ├── Chariz.md ├── LICENSE ├── Prefs ├── Resources │ ├── Customization.plist │ ├── Editor.plist │ ├── Editor │ │ ├── alpha.png │ │ ├── bg.png │ │ ├── columns.png │ │ ├── corner_radius.png │ │ ├── hs.png │ │ ├── iconScale.png │ │ ├── inset_bottom.png │ │ ├── inset_left.png │ │ ├── inset_right.png │ │ ├── inset_top.png │ │ ├── intensity.png │ │ ├── offsetX.png │ │ ├── offsetY.png │ │ ├── offset_left.png │ │ ├── offset_top.png │ │ ├── pagedot.png │ │ ├── rows.png │ │ ├── spacing_x.png │ │ ├── spacing_y.png │ │ ├── textSize.png │ │ ├── welcome.png │ │ ├── widgetIconScale.png │ │ ├── widgetXOffset.png │ │ └── widgetYOffset.png │ ├── General.plist │ ├── Info.plist │ ├── PageLabels.plist │ ├── ProfilePictures │ │ ├── Alpha_Stream.jpg │ │ ├── Atria Beta Testers.jpg │ │ ├── cakePhone.jpg │ │ └── ren.jpg │ ├── Root.plist │ ├── full.png │ ├── gear.png │ ├── gear@2x.png │ ├── gear@3x.png │ ├── glyph.png │ ├── icon.png │ ├── icon@2x.png │ ├── icon@3x.png │ ├── paint.png │ ├── paint@2x.png │ ├── paint@3x.png │ ├── sliders.png │ ├── sliders@2x.png │ ├── sliders@3x.png │ ├── text.png │ ├── text@2x.png │ └── text@3x.png ├── layout │ └── Library │ │ └── PreferenceLoader │ │ └── Preferences │ │ └── AtriaPrefs.plist └── src │ ├── ARIChildListController.h │ ├── ARIChildListController.m │ ├── ARIHeaderCell.h │ ├── ARIHeaderCell.m │ ├── ARIListController.h │ ├── ARIListController.m │ ├── ARIRootListController.h │ ├── ARIRootListController.m │ ├── ARITwitterCell.h │ └── ARITwitterCell.m ├── README.md ├── layout └── DEBIAN │ └── control └── src ├── Editor ├── ARIEditingControlsView.h ├── ARIEditingControlsView.m ├── ARIEditingMainView.h ├── ARIEditingMainView.m ├── ARISettingCell.h ├── ARISettingCell.m ├── ARISettingCollectionViewHost.h └── ARISettingCollectionViewHost.m ├── Hooks ├── AppLibrary.xm ├── DockView.xm ├── GridLayout.xm ├── Helper.xm ├── IconState.xm ├── IconView.xm ├── MainLayout.xm ├── PageDots.xm └── Shared.h ├── Manager ├── ARIEditManager.h ├── ARIEditManager.m ├── ARITweakManager.h └── ARITweakManager.m ├── Options ├── ARIOption.h └── ARIOption.m └── UI ├── ARIBackgroundView.h ├── ARIBackgroundView.m ├── ARIDynamicView.h ├── ARIDynamicView.m ├── Effect ├── ARIFadeEffectView.h └── ARIFadeEffectView.m ├── Label ├── ARILabelView.h ├── ARILabelView.m ├── ARIPageLabelView.h ├── ARIPageLabelView.m ├── ARIWelcomeLabelView.h └── ARIWelcomeLabelView.m └── Splash ├── ARISplashViewController.h └── ARISplashViewController.m /Assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Assets/banner.png -------------------------------------------------------------------------------- /Assets/full_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Assets/full_square.png -------------------------------------------------------------------------------- /Assets/glyph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Assets/glyph.png -------------------------------------------------------------------------------- /Assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Assets/icon.png -------------------------------------------------------------------------------- /Atria.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Atria.plist -------------------------------------------------------------------------------- /Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Changes.md -------------------------------------------------------------------------------- /Chariz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Chariz.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/LICENSE -------------------------------------------------------------------------------- /Prefs/Resources/Customization.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Customization.plist -------------------------------------------------------------------------------- /Prefs/Resources/Editor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor.plist -------------------------------------------------------------------------------- /Prefs/Resources/Editor/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/alpha.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/bg.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/columns.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/corner_radius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/corner_radius.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/hs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/hs.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/iconScale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/iconScale.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/inset_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/inset_bottom.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/inset_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/inset_left.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/inset_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/inset_right.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/inset_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/inset_top.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/intensity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/intensity.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/offsetX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/offsetX.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/offsetY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/offsetY.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/offset_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/offset_left.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/offset_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/offset_top.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/pagedot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/pagedot.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/rows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/rows.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/spacing_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/spacing_x.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/spacing_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/spacing_y.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/textSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/textSize.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/welcome.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/widgetIconScale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/widgetIconScale.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/widgetXOffset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/widgetXOffset.png -------------------------------------------------------------------------------- /Prefs/Resources/Editor/widgetYOffset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Editor/widgetYOffset.png -------------------------------------------------------------------------------- /Prefs/Resources/General.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/General.plist -------------------------------------------------------------------------------- /Prefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Info.plist -------------------------------------------------------------------------------- /Prefs/Resources/PageLabels.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/PageLabels.plist -------------------------------------------------------------------------------- /Prefs/Resources/ProfilePictures/Alpha_Stream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/ProfilePictures/Alpha_Stream.jpg -------------------------------------------------------------------------------- /Prefs/Resources/ProfilePictures/Atria Beta Testers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/ProfilePictures/Atria Beta Testers.jpg -------------------------------------------------------------------------------- /Prefs/Resources/ProfilePictures/cakePhone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/ProfilePictures/cakePhone.jpg -------------------------------------------------------------------------------- /Prefs/Resources/ProfilePictures/ren.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/ProfilePictures/ren.jpg -------------------------------------------------------------------------------- /Prefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/Root.plist -------------------------------------------------------------------------------- /Prefs/Resources/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/full.png -------------------------------------------------------------------------------- /Prefs/Resources/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/gear.png -------------------------------------------------------------------------------- /Prefs/Resources/gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/gear@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/gear@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/gear@3x.png -------------------------------------------------------------------------------- /Prefs/Resources/glyph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/glyph.png -------------------------------------------------------------------------------- /Prefs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/icon.png -------------------------------------------------------------------------------- /Prefs/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/icon@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/icon@3x.png -------------------------------------------------------------------------------- /Prefs/Resources/paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/paint.png -------------------------------------------------------------------------------- /Prefs/Resources/paint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/paint@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/paint@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/paint@3x.png -------------------------------------------------------------------------------- /Prefs/Resources/sliders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/sliders.png -------------------------------------------------------------------------------- /Prefs/Resources/sliders@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/sliders@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/sliders@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/sliders@3x.png -------------------------------------------------------------------------------- /Prefs/Resources/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/text.png -------------------------------------------------------------------------------- /Prefs/Resources/text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/text@2x.png -------------------------------------------------------------------------------- /Prefs/Resources/text@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/Resources/text@3x.png -------------------------------------------------------------------------------- /Prefs/layout/Library/PreferenceLoader/Preferences/AtriaPrefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/layout/Library/PreferenceLoader/Preferences/AtriaPrefs.plist -------------------------------------------------------------------------------- /Prefs/src/ARIChildListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/src/ARIChildListController.h -------------------------------------------------------------------------------- /Prefs/src/ARIChildListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/src/ARIChildListController.m -------------------------------------------------------------------------------- /Prefs/src/ARIHeaderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/src/ARIHeaderCell.h -------------------------------------------------------------------------------- /Prefs/src/ARIHeaderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/src/ARIHeaderCell.m -------------------------------------------------------------------------------- /Prefs/src/ARIListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/src/ARIListController.h -------------------------------------------------------------------------------- /Prefs/src/ARIListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/src/ARIListController.m -------------------------------------------------------------------------------- /Prefs/src/ARIRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/src/ARIRootListController.h -------------------------------------------------------------------------------- /Prefs/src/ARIRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/src/ARIRootListController.m -------------------------------------------------------------------------------- /Prefs/src/ARITwitterCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/src/ARITwitterCell.h -------------------------------------------------------------------------------- /Prefs/src/ARITwitterCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/Prefs/src/ARITwitterCell.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/README.md -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/layout/DEBIAN/control -------------------------------------------------------------------------------- /src/Editor/ARIEditingControlsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Editor/ARIEditingControlsView.h -------------------------------------------------------------------------------- /src/Editor/ARIEditingControlsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Editor/ARIEditingControlsView.m -------------------------------------------------------------------------------- /src/Editor/ARIEditingMainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Editor/ARIEditingMainView.h -------------------------------------------------------------------------------- /src/Editor/ARIEditingMainView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Editor/ARIEditingMainView.m -------------------------------------------------------------------------------- /src/Editor/ARISettingCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Editor/ARISettingCell.h -------------------------------------------------------------------------------- /src/Editor/ARISettingCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Editor/ARISettingCell.m -------------------------------------------------------------------------------- /src/Editor/ARISettingCollectionViewHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Editor/ARISettingCollectionViewHost.h -------------------------------------------------------------------------------- /src/Editor/ARISettingCollectionViewHost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Editor/ARISettingCollectionViewHost.m -------------------------------------------------------------------------------- /src/Hooks/AppLibrary.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Hooks/AppLibrary.xm -------------------------------------------------------------------------------- /src/Hooks/DockView.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Hooks/DockView.xm -------------------------------------------------------------------------------- /src/Hooks/GridLayout.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Hooks/GridLayout.xm -------------------------------------------------------------------------------- /src/Hooks/Helper.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Hooks/Helper.xm -------------------------------------------------------------------------------- /src/Hooks/IconState.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Hooks/IconState.xm -------------------------------------------------------------------------------- /src/Hooks/IconView.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Hooks/IconView.xm -------------------------------------------------------------------------------- /src/Hooks/MainLayout.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Hooks/MainLayout.xm -------------------------------------------------------------------------------- /src/Hooks/PageDots.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Hooks/PageDots.xm -------------------------------------------------------------------------------- /src/Hooks/Shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Hooks/Shared.h -------------------------------------------------------------------------------- /src/Manager/ARIEditManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Manager/ARIEditManager.h -------------------------------------------------------------------------------- /src/Manager/ARIEditManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Manager/ARIEditManager.m -------------------------------------------------------------------------------- /src/Manager/ARITweakManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Manager/ARITweakManager.h -------------------------------------------------------------------------------- /src/Manager/ARITweakManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Manager/ARITweakManager.m -------------------------------------------------------------------------------- /src/Options/ARIOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Options/ARIOption.h -------------------------------------------------------------------------------- /src/Options/ARIOption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/Options/ARIOption.m -------------------------------------------------------------------------------- /src/UI/ARIBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/ARIBackgroundView.h -------------------------------------------------------------------------------- /src/UI/ARIBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/ARIBackgroundView.m -------------------------------------------------------------------------------- /src/UI/ARIDynamicView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/ARIDynamicView.h -------------------------------------------------------------------------------- /src/UI/ARIDynamicView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/ARIDynamicView.m -------------------------------------------------------------------------------- /src/UI/Effect/ARIFadeEffectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/Effect/ARIFadeEffectView.h -------------------------------------------------------------------------------- /src/UI/Effect/ARIFadeEffectView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/Effect/ARIFadeEffectView.m -------------------------------------------------------------------------------- /src/UI/Label/ARILabelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/Label/ARILabelView.h -------------------------------------------------------------------------------- /src/UI/Label/ARILabelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/Label/ARILabelView.m -------------------------------------------------------------------------------- /src/UI/Label/ARIPageLabelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/Label/ARIPageLabelView.h -------------------------------------------------------------------------------- /src/UI/Label/ARIPageLabelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/Label/ARIPageLabelView.m -------------------------------------------------------------------------------- /src/UI/Label/ARIWelcomeLabelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/Label/ARIWelcomeLabelView.h -------------------------------------------------------------------------------- /src/UI/Label/ARIWelcomeLabelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/Label/ARIWelcomeLabelView.m -------------------------------------------------------------------------------- /src/UI/Splash/ARISplashViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/Splash/ARISplashViewController.h -------------------------------------------------------------------------------- /src/UI/Splash/ARISplashViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ren7995/Atria/HEAD/src/UI/Splash/ARISplashViewController.m --------------------------------------------------------------------------------