blob: 4a3445e48d59b5e0210bcd561a0722e614c41402 [file] [log] [blame]
/*
* Copyright 2016 The Bazel Authors. All rights reserved.
*
* 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.google.idea.blaze.plugin;
import com.google.idea.blaze.base.plugin.BlazeActionRemover;
import com.intellij.openapi.components.ApplicationComponent;
import com.jetbrains.cidr.cpp.cmake.actions.ChangeCMakeProjectContentRootAction;
import com.jetbrains.cidr.cpp.cmake.actions.DropCMakeCacheAction;
import com.jetbrains.cidr.cpp.cmake.actions.OpenCMakeSettingsAction;
import com.jetbrains.cidr.cpp.cmake.actions.ReloadCMakeProjectAction;
import com.jetbrains.cidr.cpp.cmake.actions.ToggleCMakeAutoReloadAction;
/** Runs on startup. */
public class ClwbSpecificInitializer extends ApplicationComponent.Adapter {
@Override
public void initComponent() {
hideCMakeActions();
}
// The original actions will be visible only on plain IDEA projects.
private static void hideCMakeActions() {
BlazeActionRemover.hideAction(ChangeCMakeProjectContentRootAction.ID);
BlazeActionRemover.hideAction(DropCMakeCacheAction.ID);
BlazeActionRemover.hideAction(OpenCMakeSettingsAction.ID);
BlazeActionRemover.hideAction(ReloadCMakeProjectAction.ID);
BlazeActionRemover.hideAction(ToggleCMakeAutoReloadAction.ID);
// 'CMake' > 'Show Generated CMake Files' action
BlazeActionRemover.hideAction("CMake.ShowGeneratedDir");
}
}