2014年6月24日火曜日

JGraphXで図形選択時の色を設定する

JGraphXで図形選択時の色を設定するにはmxSwingConstantsの以下の定数を使用します。
  • HANDLE_BORDERCOLOR:ハンドルの線の色
  • HANDLE_FILLCOLOR:ハンドルの塗りつぶし色
  • VERTEX_SELECTION_COLOR:選択した図形の色
  • VERTEX_SELECTION_STROKE:選択した図形のStroke
サンプルコード
import java.awt.*
import javax.swing.*
import groovy.swing.*
import com.mxgraph.swing.*
import com.mxgraph.swing.util.mxSwingConstants
import com.mxgraph.view.*

def graph = new mxGraph()
def mxgc = new mxGraphComponent(graph)

mxSwingConstants.HANDLE_BORDERCOLOR = new Color(0x77, 0x99, 0xdd)
mxSwingConstants.HANDLE_FILLCOLOR = new Color(0xcc, 0xdd, 0xff)
mxSwingConstants.VERTEX_SELECTION_COLOR = new Color(0xff, 0xff, 0xff)
mxSwingConstants.VERTEX_SELECTION_STROKE = new BasicStroke()

sb = new SwingBuilder()
def frm = sb.frame(
  title: "JGraphX - selection color for vertices",
  visible: true,
  size: [300, 200],
  resizable: true,
  contentPane: mxgc,
  defaultCloseOperation: WindowConstants.EXIT_ON_CLOSE
){

  parent = graph.getDefaultParent()
  graph.model.beginUpdate()
  try
  {
    def v1 = graph.insertVertex(parent, null, "処理1",
      20, 20, 80, 30)
    def v2 = graph.insertVertex(parent, null, "処理2",
      170, 20, 80, 30)

    graph.insertEdge(parent, null, "正常終了", v1, v2)
  }
  finally
  {
    graph.model.endUpdate()
  }
}
実行結果

関連情報
JGraphxのダウンロードページ

0 件のコメント:

コメントを投稿