/* * Copyright 2000-2013 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 git4idea.ui.branch; import com.intellij.dvcs.DvcsUtil; import com.intellij.dvcs.ui.DvcsStatusWidget; import com.intellij.openapi.project.Project; import com.intellij.openapi.ui.popup.ListPopup; import com.intellij.openapi.wm.StatusBarWidget; import com.intellij.util.ObjectUtils; import git4idea.GitUtil; import git4idea.branch.GitBranchUtil; import git4idea.config.GitVcsSettings; import git4idea.repo.GitRepository; import git4idea.repo.GitRepositoryChangeListener; import org.jetbrains.annotations.CalledInAwt; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; /** * Status bar widget which displays the current branch for the file currently open in the editor. */ public class GitBranchWidget extends DvcsStatusWidget<GitRepository> { private final GitVcsSettings mySettings; public GitBranchWidget(@NotNull Project project) { super(project, "Git"); mySettings = GitVcsSettings.getInstance(project); } @Override public StatusBarWidget copy() { return new GitBranchWidget(ObjectUtils.assertNotNull(getProject())); } @Nullable @Override @CalledInAwt protected GitRepository guessCurrentRepository(@NotNull Project project) { return DvcsUtil.guessCurrentRepositoryQuick(project, GitUtil.getRepositoryManager(project), mySettings.getRecentRootPath()); } @NotNull @Override protected String getFullBranchName(@NotNull GitRepository repository) { return GitBranchUtil.getDisplayableBranchText(repository); } @Override protected boolean isMultiRoot(@NotNull Project project) { return !GitUtil.justOneGitRepository(project); } @NotNull @Override protected ListPopup getPopup(@NotNull Project project, @NotNull GitRepository repository) { return GitBranchPopup.getInstance(project, repository).asListPopup(); } @Override protected void subscribeToRepoChangeEvents(@NotNull Project project) { project.getMessageBus().connect().subscribe(GitRepository.GIT_REPO_CHANGE, new GitRepositoryChangeListener() { @Override public void repositoryChanged(@NotNull GitRepository repository) { LOG.debug("repository changed"); updateLater(); } }); } @Override protected void rememberRecentRoot(@NotNull String path) { mySettings.setRecentRoot(path); } }