]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/notification/MessageNotification.java
G2DParentNode handles "undefined" child bounds separately
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / notification / MessageNotification.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.g2d.notification;
13
14 import java.awt.Font;
15
16 import org.simantics.g2d.image.Image;
17 import org.simantics.scenegraph.g2d.G2DParentNode;
18 import org.simantics.scenegraph.g2d.nodes.MessageNotificationNode;
19
20 /**
21  * @author Tuukka Lehtonen
22  */
23 public class MessageNotification extends AbstractNotification {
24
25     private static final double MARGIN = 10;
26
27     String                      message;
28     Image                       image;
29
30     //Font                        font   = new Font("Arial Black", Font.PLAIN, 16);
31     Font                        font   = new Font("Arial", Font.PLAIN, 14);
32     //Font                        font   = new Font("Segoe UI", Font.PLAIN, 14);
33
34     public MessageNotification(String message) {
35         this(message, null);
36     }
37
38     public MessageNotification(String message, Image image) {
39         this.message = message;
40         this.image = image;
41     }
42
43     @Override
44     public void update(G2DParentNode parent) {
45         MessageNotificationNode node = parent.getOrCreateNode("" + hashCode(), MessageNotificationNode.class);
46         node.init(bounds, font, MARGIN, progress, message);
47     }
48
49 }