Alejandro Acuña
2025-04-29 d1d736e487d9eb104dcae9def948066037afd2f0
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package art.servers.rtzserver.gui;
 
import art.client.GUI.components.ArticPanel;
import art.client.GUI.components.devices.window.Abstract.Actions.AbstractPanelDeviceActions;
import art.client.GUI.components.devices.window.DeviceWindow;
import art.client.GUI.components.devices.window.colors.rtz.actions.PanelRTZ32Commands;
import art.client.GUI.components.devices.window.colors.rtz32.configuration.RTZ32_PanelConfiguration;
import art.client.GUI.components.devices.window.colors.rtz32.working.RTZ32_PanelWorkings;
import art.client.models.ModelGUI.Icons;
import art.library.gui.flat.FlatPanel;
import art.library.gui.flat.FlatTabbedPane;
import art.library.model.devices.Device;
import art.library.model.devices.DeviceCommands;
import art.library.model.devices.colors.controller.RTZ32.RTZ32_Controller;
import art.library.utils.resources.Resources;
import art.servers.Shared;
import java.awt.BorderLayout;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
 
public class RTZ32_Window extends DeviceWindow
{
    private RTZ32_PanelConfiguration panelConfiguration = null;
    private RTZ32_PanelWorkings panelWorkings = null;
    private AbstractPanelDeviceActions panelActions = null;
 
 
    /*
    public RTZ32_Window(Device device)
    {
       super(device);
    }
    
    @Override
    protected String getWindowIcon()
    {
      return Icons.SEMAPHORE_24x24;
    }
 
 
    @Override
    protected void initialise()
    {
        this.addTab(RTZ32_PanelInformation.class, AbstractDeviceWindow.PANEL_TYPE.INFORMATION);
        this.addTab(RTZ32_PanelStatus.class, AbstractDeviceWindow.PANEL_TYPE.STATUS);
        this.addTab(RTZ32_PanelConfiguration.class, AbstractDeviceWindow.PANEL_TYPE.CONFIGURATION);
        this.addTab(RTZ32_PanelCommands.class, AbstractDeviceWindow.PANEL_TYPE.ACTION);
    }
    */
 
    public RTZ32_Window(Device device, DeviceCommands commands)
    {
        super(device);
        this.setIcon(Resources.getResourceURL(Icons.SEMAPHORE_24x24));
        this.setTitle(String.format("%05d", device.information.number) + " - " +  device.getDeviceInformation().getName());
        initialise(commands);
        
    }
 
    
    public void reload()
    {
        if (panelConfiguration != null) panelConfiguration.reload();
        if (panelWorkings != null) panelWorkings.reload();
        if (panelActions != null) panelActions.reload();
    }
    
    
    public void timer()
    {
        super.timer();
        if (panelConfiguration != null) panelConfiguration.timer();
        if (panelWorkings != null) panelWorkings.timer();
        if (panelActions != null) panelActions.timer();
    }
    
 
    protected void selection()
    {
        try
        {
            if (panelSelected != null) panelSelected.deselection();
            panelSelected = (ArticPanel)flatTabbedPane.getSelectedComponent();
            if (panelSelected != null) panelSelected.selection();
        }
        catch (Exception e)
        {
        }
    }
    
 
    @Override
    public void help()
    {
    }
 
    @Override
    public void dispose()
    {
        super.dispose();
    }
        
    
    
    
    private void initialise(DeviceCommands commands)
    {
        RTZ32_Controller controller = (RTZ32_Controller) getDevice();  
        
        FlatPanel panel = new FlatPanel();
        {
            flatTabbedPane = new FlatTabbedPane();
            {
                panelConfiguration = new RTZ32_PanelConfiguration(controller);
                panelWorkings = new RTZ32_PanelWorkings(controller);
                panelActions = new AbstractPanelDeviceActions(controller, null, PanelRTZ32Commands.class);
                
                flatTabbedPane.addTab(Shared.getMessage("Configuration"), panelConfiguration);
                flatTabbedPane.addTab(Shared.getMessage("Working"), panelWorkings);
                
                flatTabbedPane.allowTitleChange(false);
                flatTabbedPane.setSelectedIndex(flatTabbedPane.getTabCount() - 1);
                flatTabbedPane.addChangeListener(new ChangeListener()
                {
                    public void stateChanged(ChangeEvent e)
                    {
                        selection();
                    }
                });
                
            }
        }
        
        panel.setLayout(new BorderLayout());
        panel.add(flatTabbedPane);
        
        this.addComponentListener(new ComponentAdapter()
        {
            public void componentShown(ComponentEvent event)
            {
                selection();
            }
        });
 
        setContent(panel);
        flatTabbedPane.setSelectedIndex(0);
        panelConfiguration.selection();
    }
 
    
        
}