aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/settings/Behaviour.kt
blob: 551b3ff101586ceda338334bb6cdfc90e01c48ed (plain)
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
/*
 * Copyright 2018 Allan Wang
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.pitchedapps.frost.settings

import ca.allanwang.kau.kpref.activity.KPrefAdapterBuilder
import com.pitchedapps.frost.R
import com.pitchedapps.frost.activities.SettingsActivity

/**
 * Created by Allan Wang on 2017-06-30.
 */
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
    }

    checkbox(
        R.string.overlay_swipe,
        prefs::overlayEnabled,
        { prefs.overlayEnabled = it; shouldRefreshMain() }) {
        descRes = R.string.overlay_swipe_desc
    }

    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 }) {
        descRes = R.string.open_links_in_default_desc
    }

    checkbox(R.string.viewpager_swipe, prefs::viewpagerSwipe, { prefs.viewpagerSwipe = it }) {
        descRes = R.string.viewpager_swipe_desc
    }

    checkbox(
        R.string.force_message_bottom,
        prefs::messageScrollToBottom,
        { prefs.messageScrollToBottom = it }) {
        descRes = R.string.force_message_bottom_desc
    }

    checkbox(
        R.string.auto_expand_text_box,
        prefs::autoExpandTextBox,
        { prefs.autoExpandTextBox = it; shouldRefreshMain() }) {
        descRes = R.string.auto_expand_text_box_desc
    }

    checkbox(R.string.enable_pip, prefs::enablePip, { prefs.enablePip = it }) {
        descRes = R.string.enable_pip_desc
    }

    // Not available for desktop user agent for now
//    plainText(R.string.autoplay_settings) {
//        descRes = R.string.autoplay_settings_desc
//        onClick = {
//            launchWebOverlay("${FB_URL_BASE}settings/videos/")
//        }
//    }

    checkbox(R.string.exit_confirmation, prefs::exitConfirmation, { prefs.exitConfirmation = it }) {
        descRes = R.string.exit_confirmation_desc
    }
}