From 0055ab5fdab9c86bed7982afde1739e95b093336 Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Sun, 21 Jul 2019 01:07:06 -0700 Subject: Add prefs --- .../com/pitchedapps/frost/settings/Behaviour.kt | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'app/src/main/kotlin/com/pitchedapps/frost/settings') diff --git a/app/src/main/kotlin/com/pitchedapps/frost/settings/Behaviour.kt b/app/src/main/kotlin/com/pitchedapps/frost/settings/Behaviour.kt index b77c0f2d..c774892e 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/settings/Behaviour.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/settings/Behaviour.kt @@ -29,6 +29,10 @@ import com.pitchedapps.frost.utils.launchWebOverlay */ fun SettingsActivity.getBehaviourPrefs(): KPrefAdapterBuilder.() -> Unit = { + checkbox(R.string.auto_refresh_feed, Prefs::autoRefreshFeed, { Prefs.autoRefreshFeed = it }) { + descRes = R.string.auto_refresh_feed_desc + } + checkbox(R.string.fancy_animations, Prefs::animate, { Prefs.animate = it; animate = it }) { descRes = R.string.fancy_animations_desc } @@ -40,11 +44,17 @@ fun SettingsActivity.getBehaviourPrefs(): KPrefAdapterBuilder.() -> Unit = { descRes = R.string.overlay_swipe_desc } - checkbox(R.string.overlay_full_screen_swipe, Prefs::overlayFullScreenSwipe, { Prefs.overlayFullScreenSwipe = it }) { + checkbox( + R.string.overlay_full_screen_swipe, + Prefs::overlayFullScreenSwipe, + { Prefs.overlayFullScreenSwipe = it }) { descRes = R.string.overlay_full_screen_swipe_desc } - checkbox(R.string.open_links_in_default, Prefs::linksInDefaultApp, { Prefs.linksInDefaultApp = it }) { + checkbox( + R.string.open_links_in_default, + Prefs::linksInDefaultApp, + { Prefs.linksInDefaultApp = it }) { descRes = R.string.open_links_in_default_desc } @@ -52,7 +62,10 @@ fun SettingsActivity.getBehaviourPrefs(): KPrefAdapterBuilder.() -> Unit = { descRes = R.string.viewpager_swipe_desc } - checkbox(R.string.force_message_bottom, Prefs::messageScrollToBottom, { Prefs.messageScrollToBottom = it }) { + checkbox( + R.string.force_message_bottom, + Prefs::messageScrollToBottom, + { Prefs.messageScrollToBottom = it }) { descRes = R.string.force_message_bottom_desc } -- cgit v1.2.3