2023-11-19 02:12:44 +03:00
|
|
|
package Visual_DVM_2021.UI.Main;
|
2024-10-08 01:30:25 +03:00
|
|
|
import Common.Utils.CommonUtils;
|
2024-10-07 00:58:29 +03:00
|
|
|
import Common_old.UI.Windows.Dialog.DialogFields;
|
2024-10-08 01:30:25 +03:00
|
|
|
import GlobalData.GlobalDatabase;
|
2023-11-19 02:12:44 +03:00
|
|
|
import Visual_DVM_2021.UI.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(){
|
2024-10-08 01:30:25 +03:00
|
|
|
((GlobalDatabase)CommonUtils.db).sapforProfiles.mountUI(profilesPanel);
|
|
|
|
|
((GlobalDatabase)CommonUtils.db).sapforProfilesSettings.mountUI(settingsPanel);
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
}
|