Files
tustu/app/com/efiAnalytics/ui/DataHistoryComponent.java
johndoe6345789 e17cdf49b3 Add wizard UI components and functionality
- Implement WizardCancelActionListener to handle cancellation actions.
- Create WizardDialog for managing dialog windows with window listener.
- Add WizardDialogCallback for handling dialog callbacks.
- Introduce WizardNextActionListener for handling next actions in the wizard.
- Develop WizardPanel to manage the wizard's layout and navigation.
- Implement WizardRunnable to run wizard actions in a separate thread.
- Define WizardStepCallback interface for step callbacks in the wizard.
- Create YAxisSelectorLayoutRunnable for managing layout updates.
- Add YAxisSelectorPanel for selecting Y-axis options in the UI.
- Remove unused interfaces and classes (cP, cT, co, cx, dx, eR, eU, ev).
2026-01-11 07:05:02 +00:00

44 lines
962 B
Java

package com.efiAnalytics.ui;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import javax.swing.JComponent;
public class DataHistoryComponent extends JComponent {
DataHistoryRenderer b = null;
public DataHistoryComponent() {
this.b = new DataHistoryRenderer(this);
setBackground(Color.BLACK);
}
public void paint(Graphics paramGraphics) {
this.b.a(paramGraphics);
}
public void a(cy paramcy) {
this.b.a(paramcy);
}
public Dimension getMinimumSize() {
int i = this.b.b();
return new Dimension(100, i * 20);
}
public Dimension getPreferredSize() {
int i = this.b.b();
return new Dimension(250, 30 + i * 30);
}
public void validate() {
this.b.a();
super.validate();
}
}
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/com/efiAnalytics/ui/dl.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/