2018-03-27 19:47:00 +02:00
|
|
|
/* Copyright 2018 charlag
|
|
|
|
*
|
|
|
|
* This file is a part of Tusky.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Tusky 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 Tusky; if not,
|
|
|
|
* see <http://www.gnu.org/licenses>. */
|
|
|
|
|
|
|
|
package com.keylesspalace.tusky.di
|
|
|
|
|
2019-03-16 13:36:16 +01:00
|
|
|
import com.keylesspalace.tusky.AccountsInListFragment
|
2022-01-11 19:55:17 +01:00
|
|
|
import com.keylesspalace.tusky.components.account.media.AccountMediaFragment
|
2019-02-12 19:22:37 +01:00
|
|
|
import com.keylesspalace.tusky.components.conversation.ConversationsFragment
|
2019-06-11 15:56:27 +02:00
|
|
|
import com.keylesspalace.tusky.components.instancemute.fragment.InstanceListFragment
|
2020-09-02 12:27:51 +02:00
|
|
|
import com.keylesspalace.tusky.components.preference.AccountPreferencesFragment
|
|
|
|
import com.keylesspalace.tusky.components.preference.NotificationPreferencesFragment
|
2021-06-28 21:13:24 +02:00
|
|
|
import com.keylesspalace.tusky.components.preference.PreferencesFragment
|
2019-06-09 16:55:34 +02:00
|
|
|
import com.keylesspalace.tusky.components.report.fragments.ReportDoneFragment
|
|
|
|
import com.keylesspalace.tusky.components.report.fragments.ReportNoteFragment
|
|
|
|
import com.keylesspalace.tusky.components.report.fragments.ReportStatusesFragment
|
2019-07-19 20:10:20 +02:00
|
|
|
import com.keylesspalace.tusky.components.search.fragments.SearchAccountsFragment
|
|
|
|
import com.keylesspalace.tusky.components.search.fragments.SearchHashtagsFragment
|
|
|
|
import com.keylesspalace.tusky.components.search.fragments.SearchStatusesFragment
|
2021-06-11 20:15:40 +02:00
|
|
|
import com.keylesspalace.tusky.components.timeline.TimelineFragment
|
2021-06-28 21:13:24 +02:00
|
|
|
import com.keylesspalace.tusky.fragment.AccountListFragment
|
|
|
|
import com.keylesspalace.tusky.fragment.NotificationsFragment
|
|
|
|
import com.keylesspalace.tusky.fragment.ViewThreadFragment
|
2018-03-27 19:47:00 +02:00
|
|
|
import dagger.Module
|
|
|
|
import dagger.android.ContributesAndroidInjector
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by charlag on 3/24/18.
|
|
|
|
*/
|
|
|
|
|
|
|
|
@Module
|
|
|
|
abstract class FragmentBuildersModule {
|
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun accountListFragment(): AccountListFragment
|
|
|
|
|
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun accountMediaFragment(): AccountMediaFragment
|
|
|
|
|
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun viewThreadFragment(): ViewThreadFragment
|
|
|
|
|
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun timelineFragment(): TimelineFragment
|
|
|
|
|
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun notificationsFragment(): NotificationsFragment
|
2018-04-30 11:30:10 +02:00
|
|
|
|
2018-11-12 21:09:39 +01:00
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun notificationPreferencesFragment(): NotificationPreferencesFragment
|
|
|
|
|
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun accountPreferencesFragment(): AccountPreferencesFragment
|
|
|
|
|
2019-02-12 19:22:37 +01:00
|
|
|
@ContributesAndroidInjector
|
2022-01-23 20:24:55 +01:00
|
|
|
abstract fun conversationsFragment(): ConversationsFragment
|
2019-02-12 19:22:37 +01:00
|
|
|
|
2019-03-16 13:36:16 +01:00
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun accountInListsFragment(): AccountsInListFragment
|
|
|
|
|
2019-06-09 16:55:34 +02:00
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun reportStatusesFragment(): ReportStatusesFragment
|
|
|
|
|
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun reportNoteFragment(): ReportNoteFragment
|
|
|
|
|
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun reportDoneFragment(): ReportDoneFragment
|
2019-06-11 15:56:27 +02:00
|
|
|
|
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun instanceListFragment(): InstanceListFragment
|
2019-07-19 20:10:20 +02:00
|
|
|
|
2022-01-23 20:24:55 +01:00
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun searchStatusesFragment(): SearchStatusesFragment
|
|
|
|
|
2019-07-19 20:10:20 +02:00
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun searchAccountFragment(): SearchAccountsFragment
|
|
|
|
|
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun searchHashtagsFragment(): SearchHashtagsFragment
|
|
|
|
|
2020-09-02 12:27:51 +02:00
|
|
|
@ContributesAndroidInjector
|
|
|
|
abstract fun preferencesFragment(): PreferencesFragment
|
2019-06-11 15:56:27 +02:00
|
|
|
}
|