редизайн вкладки с машинами, и отображения текущих объектов
v++
This commit is contained in:
@@ -48,11 +48,13 @@ public class CompilersForm extends DataSetControlForm<Compiler> {
|
||||
protected void ShowCurrentObject() throws Exception {
|
||||
super.ShowCurrentObject();
|
||||
Global.mainModule.getUI().getMainWindow().getTestingWindow().ShowCurrentCompiler();
|
||||
Global.mainModule.getUI().mainMenuBar.ShowCompiler(dataSource.getUI().getCurrent());
|
||||
}
|
||||
@Override
|
||||
protected void ShowNoCurrentObject() throws Exception {
|
||||
super.ShowNoCurrentObject();
|
||||
Global.mainModule.getUI().getMainWindow().getTestingWindow().ShowCurrentCompiler();
|
||||
Global.mainModule.getUI().mainMenuBar.ShowNoCompiler();
|
||||
}
|
||||
@Override
|
||||
public DataMenuBar createMenuBar() {
|
||||
|
||||
@@ -33,13 +33,15 @@ public class MachinesForm extends DataSetControlForm<Machine> {
|
||||
protected void ShowCurrentObject() throws Exception {
|
||||
super.ShowCurrentObject();
|
||||
Global.mainModule.getUI().getMainWindow().getTestingWindow().ShowCurrentCompiler();
|
||||
Global.mainModule.getUI().getCredentialsMenuBar().ShowMachine();
|
||||
Global.mainModule.getUI().mainMenuBar.ShowMachine(dataSource.getUI().getCurrent());
|
||||
// Global.mainModule.getUI().getCredentialsMenuBar().ShowMachine();
|
||||
}
|
||||
@Override
|
||||
protected void ShowNoCurrentObject() throws Exception {
|
||||
super.ShowNoCurrentObject();
|
||||
Global.mainModule.getUI().getMainWindow().getTestingWindow().ShowCurrentCompiler();
|
||||
Global.mainModule.getUI().getCredentialsMenuBar().ShowNoMachine();
|
||||
Global.mainModule.getUI().mainMenuBar.ShowNoMachine();
|
||||
// Global.mainModule.getUI().getCredentialsMenuBar().ShowNoMachine();
|
||||
}
|
||||
@Override
|
||||
public PassCode_ getDeletePassCode() {
|
||||
|
||||
@@ -41,12 +41,14 @@ public class UsersForm extends DataSetControlForm<User> {
|
||||
@Override
|
||||
protected void ShowCurrentObject() throws Exception {
|
||||
super.ShowCurrentObject();
|
||||
Global.mainModule.getUI().getCredentialsMenuBar().ShowUser();
|
||||
Global.mainModule.getUI().mainMenuBar.ShowUser(dataSource.getUI().getCurrent());
|
||||
//Global.mainModule.getUI().getCredentialsMenuBar().ShowUser();
|
||||
}
|
||||
@Override
|
||||
protected void ShowNoCurrentObject() throws Exception {
|
||||
super.ShowNoCurrentObject();
|
||||
Global.mainModule.getUI().getCredentialsMenuBar().ShowNoUser();
|
||||
Global.mainModule.getUI().mainMenuBar.ShowNoUser();
|
||||
// Global.mainModule.getUI().getCredentialsMenuBar().ShowNoUser();
|
||||
}
|
||||
@Override
|
||||
public PassCode_ getDeletePassCode() {
|
||||
|
||||
Reference in New Issue
Block a user