aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/enums/MainActivityLayout.kt
blob: 79b11752a3c73c628eb322905dbdb4d4f287a50f (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
package com.pitchedapps.frost.enums

import com.pitchedapps.frost.R
import com.pitchedapps.frost.utils.Prefs

/**
 * Created by Allan Wang on 2017-08-19.
 */
enum class MainActivityLayout(
        val titleRes: Int,
        val layoutRes: Int,
        val backgroundColor: () -> Int,
        val iconColor: () -> Int) {

    TOP_BAR(R.string.top_bar,
            R.layout.activity_main,
            { Prefs.headerColor },
            { Prefs.iconColor }),

    BOTTOM_BAR(R.string.bottom_bar,
            R.layout.activity_main_bottom_tabs,
            { Prefs.bgColor },
            { Prefs.textColor });

    companion object {
        val values = values() //save one instance
        operator fun invoke(index: Int) = values[index]
    }
}