/* * Copyright 2000-2017 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.vcs.log.history; import com.intellij.openapi.components.ServiceManager; import com.intellij.openapi.project.Project; import com.intellij.openapi.vcs.FilePath; import com.intellij.vcs.log.data.VcsLogData; import com.intellij.vcs.log.graph.PermanentGraph; import com.intellij.vcs.log.impl.VcsLogManager; import com.intellij.vcs.log.ui.VcsLogColorManager; import com.intellij.vcs.log.visible.VisiblePackRefresherImpl; import org.jetbrains.annotations.NotNull; public class FileHistoryUiFactory implements VcsLogManager.VcsLogUiFactory<FileHistoryUi> { @NotNull private final FilePath myFilePath; public FileHistoryUiFactory(@NotNull FilePath path) { myFilePath = path; } @Override public FileHistoryUi createLogUi(@NotNull Project project, @NotNull VcsLogData logData, @NotNull VcsLogColorManager colorManager) { FileHistoryUiProperties properties = ServiceManager.getService(project, FileHistoryUiProperties.class); return new FileHistoryUi(logData, project, colorManager, properties, new VisiblePackRefresherImpl(project, logData, PermanentGraph.SortType.Normal, new FileHistoryFilterer(logData, myFilePath)), myFilePath); } }