2023-11-19 01:53:56 +03:00
|
|
|
package Common.UI.Windows.Main;
|
2023-09-17 22:13:42 +03:00
|
|
|
import Common.Global;
|
|
|
|
|
import Common.UI.Windows.Dialog.DialogFields;
|
2023-11-19 01:53:56 +03:00
|
|
|
import Common.UI.Windows.Interface.FormWithSplitters;
|
2023-09-17 22:13:42 +03:00
|
|
|
|
|
|
|
|
import javax.swing.*;
|
|
|
|
|
import java.awt.*;
|
|
|
|
|
public class ProfilesFields implements DialogFields, FormWithSplitters {
|
|
|
|
|
private JPanel content;
|
|
|
|
|
public JSplitPane SC61;
|
|
|
|
|
private JPanel profilesPanel;
|
|
|
|
|
private JPanel settingsPanel;
|
|
|
|
|
@Override
|
|
|
|
|
public Component getContent() {
|
|
|
|
|
return content;
|
|
|
|
|
}
|
|
|
|
|
public ProfilesFields(){
|
|
|
|
|
Global.db.sapforProfiles.mountUI(profilesPanel);
|
|
|
|
|
Global.db.sapforProfilesSettings.mountUI(settingsPanel);
|
|
|
|
|
}
|
|
|
|
|
}
|