summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/renderer/SRTreeNode.java
blob: 6f881290e53414f1a4b734abf9f8bf057748d1a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * SRTreeNode.java
 *
 * Created on April 12, 2007, 8:07 AM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.renderer;

import com.kitfox.salamander.renderer.SurfaceManager.SurfaceInfo;
import java.util.ArrayList;

/**
 *
 * @author kitfox
 */
abstract public class SRTreeNode
{
    public static class RenderingSurface
    {
    }
    
    ArrayList<SRTreeNode> children = new ArrayList<SRTreeNode>();
    
    /** Creates a new instance of SRTreeNode */
    public SRTreeNode()
    {
    }
    
    public void addChild(SRTreeNode child)
    {
        children.add(child);
    }
    
    public boolean removeChild(SRTreeNode child)
    {
        return children.remove(child);
    }
    
    protected void render(RenderingSurface surface)
    {
        /*
        if (isFiltered() || isComplexClipArea())
        {
            RenderingSurface oldSurf = surface;
            //New surface initialized to transparent black
            SurfaceInfo backing = SurfaceManager.getDefault().getSurface(width, height, surface.getGraphicsConfiguration());
            surface = new RenderingSurface(backing);
            
            renderLocal(surface);

            for (SRTreeNode child: children)
            {
                child.render(surface);
            }

            applyFilters(surface);
            applyClipArea();
            oldSurf.overlay(surface);
        }
        else
        {
            applyClipArea();
            renderLocal(surface);

            for (SRTreeNode child: children)
            {
                child.render(surface);
            }
        }
         */
    }
    
    /**
     * Draw content specific to this element (not including child elements)
     */
    protected void renderLocal(RenderingSurface surface)
    {
        //No rendering by default
    }
}