fork download
  1. import java.awt.BorderLayout;
  2. import java.awt.CardLayout;
  3. import java.awt.Color;
  4. import java.awt.Dimension;
  5. import java.awt.Font;
  6. import java.awt.Toolkit;
  7. import java.awt.datatransfer.Clipboard;
  8. import java.awt.datatransfer.StringSelection;
  9. import java.awt.event.MouseAdapter;
  10. import java.awt.event.MouseEvent;
  11. import javax.swing.BoxLayout;
  12. import javax.swing.JFrame;
  13. import javax.swing.JLabel;
  14. import javax.swing.JPanel;
  15. import javax.swing.JTextArea;
  16. import javax.swing.border.BevelBorder;
  17.  
  18. /***************************************************************
  19. 背景色の異なるラベルを縦に並べて設置しクリックされたラベルの背景色を取得。<br>
  20. 取得したラベルの背景色にフレームの背景色を変更。再度画面をクリックすると最初の画面に戻る。
  21. ****************************************************************/
  22. public class ColorSelect extends JFrame {
  23. private static final long serialVersionUID = 1L;
  24. private JPanel cardPanel;
  25. private JLabel lblCard2;
  26.  
  27. ColorSelect() {
  28. // メインフレームの初期化
  29. this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  30. this.setTitle("ColorSelect");
  31. this.setBounds(200, 200, 480, 600);
  32. this.setResizable(false);
  33. this.setLayout(new CardLayout());
  34.  
  35. // カードレイアウトで切り替える部分
  36. cardPanel = new JPanel();
  37. cardPanel.setLayout(new CardLayout());
  38.  
  39. // 初期状態のカード(card1)
  40. JPanel card1 = new JPanel();
  41. card1.setLayout(new BoxLayout(card1, BoxLayout.Y_AXIS));
  42. //card1.setLayout(new GridLayout(3, 3));
  43. addLabel(card1);
  44. card1.setName("card1");
  45.  
  46. // 切り替え用のカード(card2)
  47. JPanel card2 = new JPanel();
  48. lblCard2 = new JLabel("Test fields on Card2", JLabel.CENTER);
  49. card2.setLayout(new BorderLayout());
  50. initLabelDefault(lblCard2, Color.BLACK);
  51. card2.setName("card2");
  52. card2.add(lblCard2, BorderLayout.CENTER);
  53.  
  54. JTextArea txtInfo = new JTextArea("下の画面を左クリックすると前の画面へ戻ります。\n右クリックすると#付きカラーコードをクリップボードへコピーします。");
  55. txtInfo.setFont(new Font("メイリオ", Font.BOLD, 12));
  56. txtInfo.setEditable(false);
  57. card2.add(txtInfo,BorderLayout.NORTH);
  58.  
  59. cardPanel.add(card1, "card1");
  60. cardPanel.add(card2, "card2");
  61.  
  62. // コンテントペインにパネルを追加
  63. getContentPane().add(cardPanel, BorderLayout.CENTER);
  64.  
  65. }
  66.  
  67. // ラベルの追加処理
  68. private void addLabel(JPanel pnl) {
  69. // RGB各カラーの値を格納(赤系色、緑系色、青系色を各3種ずつ)
  70. int[] intR = {255, 255, 255,
  71. 0, 153, 255,
  72. 0, 0, 0}; // RGB 赤色
  73. int[] intG = {0, 0, 0,
  74. 255, 255, 255,
  75. 0, 153, 255}; // RGB 緑色
  76. int[] intB = {0, 153, 255,
  77. 0, 0, 0,
  78. 255, 255, 255}; // RGB 青色
  79. String strHexColor; // カラーコード(16進数)
  80.  
  81. for (int i = 0; i < intR.length; i++){
  82. JLabel lbl = new JLabel("", JLabel.CENTER);
  83. initLabelDefault(lbl, new Color(intR[i], intG[i], intB[i])); // ラベルの初期設定
  84.  
  85. // カラーコード(RGBを各職ごとに16真数に変換。例:255→FF)
  86. strHexColor = (Integer.toHexString(intR[i] >>> 4) + Integer.toHexString(intR[i] & 0xF)
  87. + Integer.toHexString(intG[i] >>> 4) + Integer.toHexString(intG[i] & 0xF)
  88. + Integer.toHexString(intB[i] >>> 4) + Integer.toHexString(intB[i] & 0xF)).toUpperCase();
  89.  
  90. lbl.setText("#" + strHexColor);
  91. lbl.setForeground(new Color(~intR[i]&255, ~intG[i]&255, ~intB[i]&255)); // 背景色を反転して文字色に設定
  92. lbl.setBorder(new BevelBorder(BevelBorder.RAISED, Color.WHITE, Color.BLACK));
  93. pnl.add(lbl, BorderLayout.CENTER);
  94. }
  95. }
  96.  
  97. // ラベルの初期設定(共通)
  98. private void initLabelDefault(JLabel lb, Color bgColor) {
  99. lb.setMaximumSize(new Dimension(Short.MAX_VALUE, Short.MAX_VALUE));
  100. lb.setFont(new Font("Arial", Font.PLAIN, 30));
  101. lb.setForeground(Color.black);
  102. lb.setBackground(bgColor);
  103. lb.setOpaque(true);
  104. lb.addMouseListener(new LabelMouseListener());
  105. }
  106.  
  107. // マウスイベント処理(ラベル用)
  108. class LabelMouseListener extends MouseAdapter {
  109. @Override
  110. public void mouseClicked(MouseEvent e) {
  111. JLabel lbClicked = (JLabel)e.getSource(); // クリックされたラベルを取得
  112. JPanel jp= (JPanel)lbClicked.getParent(); // クリックされたラベルのペアレントを取得
  113.  
  114. if (jp.getName() == "card1") {
  115. // 左クリック
  116. if(e.getButton() == MouseEvent.BUTTON1 && e.getClickCount() < 2) {
  117. CardLayout cl = (CardLayout)(cardPanel.getLayout()); // 現在表示されているラベルを取得
  118.  
  119. // card2のラベルへクリックされたラベルの背景色、文字色、カラーコードを設定
  120. lblCard2.setBackground(lbClicked.getBackground());
  121. lblCard2.setForeground(lbClicked.getForeground());
  122. lblCard2.setText(lbClicked.getText());
  123.  
  124. cl.show(cardPanel, "card2");
  125. }
  126. } else if (jp.getName() == "card2") {
  127. // 左クリック
  128. if (e.getButton() == MouseEvent.BUTTON1 && e.getClickCount() < 2) {
  129. CardLayout cl = (CardLayout)(cardPanel.getLayout());
  130. cl.show(cardPanel, "card1");
  131. } else // 右クリック
  132. if (e.getButton() == MouseEvent.BUTTON3 && e.getClickCount() < 2) {
  133. Clipboard clipBoard = Toolkit.getDefaultToolkit().getSystemClipboard();
  134. StringSelection str = new StringSelection(lbClicked.getText());
  135. clipBoard.setContents(str, str);
  136. }
  137. }
  138. }
  139. }
  140.  
  141. public static void main (String[] args) {
  142. try {
  143. JFrame mainFrame = new ColorSelect();
  144. mainFrame.setVisible(true);
  145. } catch(Exception e) {
  146. System.out.println(e.toString());
  147. System.exit(1);
  148. }
  149. }
  150. }
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty