/* * Copyright 2000-2012 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.uiDesigner.designSurface; import com.intellij.util.ui.PlatformColors; import java.awt.*; /** * @author yole */ class HorzInsertFeedbackPainter implements FeedbackPainter { public static HorzInsertFeedbackPainter INSTANCE = new HorzInsertFeedbackPainter(); public void paintFeedback(Graphics2D g2d, Rectangle rc) { g2d.setColor(PlatformColors.BLUE); g2d.setStroke(new BasicStroke(1.5f)); int midY = (int)rc.getCenterY(); int right = rc.x + rc.width - 1; int bottom = rc.y + rc.height - 1; g2d.drawLine(rc.x, rc.y, GridInsertLocation.INSERT_ARROW_SIZE, midY); g2d.drawLine(rc.x, bottom, GridInsertLocation.INSERT_ARROW_SIZE, midY); g2d.drawLine(GridInsertLocation.INSERT_ARROW_SIZE, midY, right - GridInsertLocation.INSERT_ARROW_SIZE, midY); g2d.drawLine(right, rc.y, rc.x+rc.width-GridInsertLocation.INSERT_ARROW_SIZE, midY); g2d.drawLine(right, bottom, right-GridInsertLocation.INSERT_ARROW_SIZE, midY); } }