]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.kt
Update the URL in the copyright header. https://redmine.stoutner.com/issues/796
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / adapters / AboutPagerAdapter.kt
1 /*
2  * Copyright © 2016-2022 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android>.
5  *
6  * Privacy Browser Android is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Browser Android is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser Android.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 package com.stoutner.privacybrowser.adapters
21
22 import android.content.Context
23
24 import androidx.fragment.app.Fragment
25 import androidx.fragment.app.FragmentManager
26 import androidx.fragment.app.FragmentPagerAdapter
27
28 import com.stoutner.privacybrowser.R
29 import com.stoutner.privacybrowser.fragments.AboutVersionFragment
30 import com.stoutner.privacybrowser.fragments.AboutWebViewFragment
31
32 import java.util.LinkedList
33
34 class AboutPagerAdapter(fragmentManager: FragmentManager, private val context: Context, private val blocklistVersions: Array<String>) :
35         FragmentPagerAdapter(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT) {
36     // Define the class variables.
37     private val aboutFragmentList = LinkedList<Fragment>()
38
39     // Get the number of tabs.
40     override fun getCount(): Int {
41         // There are seven tabs.
42         return 7
43     }
44
45     // Get the name of each tab.  Tab numbers start at 0.
46     override fun getPageTitle(tab: Int): CharSequence {
47         return when (tab) {
48             0 -> context.getString(R.string.version)
49             1 -> context.getString(R.string.permissions)
50             2 -> context.getString(R.string.privacy_policy)
51             3 -> context.getString(R.string.changelog)
52             4 -> context.getString(R.string.licenses)
53             5 -> context.getString(R.string.contributors)
54             6 -> context.getString(R.string.links)
55             else -> ""
56         }
57     }
58
59     // Setup each tab.
60     override fun getItem(tabNumber: Int): Fragment {
61         // Create the tab fragment and add it to the list.
62         if (tabNumber == 0) {
63             // Add the version tab to the list.
64             aboutFragmentList.add(AboutVersionFragment.createTab(blocklistVersions))
65         } else {
66             // Add the WebView tab to the list.
67             aboutFragmentList.add(AboutWebViewFragment.createTab(tabNumber))
68         }
69
70         // Return the tab fragment.
71         return aboutFragmentList[tabNumber]
72     }
73
74     // Get a tab.
75     fun getTabFragment(tabNumber: Int): Fragment {
76         // Return the tab fragment.
77         return aboutFragmentList[tabNumber]
78     }
79 }