mirror of
https://github.com/sirjonasxx/G-Earth.git
synced 2024-11-23 08:50:52 +01:00
setting up stuff
This commit is contained in:
parent
c81dddb117
commit
f5c8422da1
@ -0,0 +1,9 @@
|
||||
package gearth.services.gpython;
|
||||
|
||||
public class GPythonShell {
|
||||
|
||||
public void launch() {
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
package gearth.services.gpython;
|
||||
|
||||
public class JupyterConsole {
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
package gearth.services.gpython;
|
||||
|
||||
public class PythonUtils {
|
||||
}
|
@ -8,6 +8,7 @@ import gearth.services.extensionhandler.extensions.implementations.network.Netwo
|
||||
import gearth.services.extensionhandler.extensions.implementations.network.executer.ExecutionInfo;
|
||||
import gearth.services.extensionhandler.extensions.implementations.network.executer.ExtensionRunner;
|
||||
import gearth.services.extensionhandler.extensions.implementations.network.executer.ExtensionRunnerFactory;
|
||||
import gearth.services.gpython.GPythonShell;
|
||||
import gearth.ui.SubForm;
|
||||
import gearth.ui.extensions.logger.ExtensionLogger;
|
||||
import javafx.application.Platform;
|
||||
@ -106,6 +107,6 @@ public class ExtensionsController extends SubForm {
|
||||
}
|
||||
|
||||
public void gpythonBtnClicked(ActionEvent actionEvent) {
|
||||
|
||||
new GPythonShell().launch();
|
||||
}
|
||||
}
|
||||
|
@ -31,6 +31,7 @@ public class ExtraController extends SubForm implements SocksConfiguration {
|
||||
public CheckBox cbx_alwaysOnTop;
|
||||
public Hyperlink url_troubleshooting;
|
||||
|
||||
//TODO add setup link to g-earth wiki
|
||||
public CheckBox cbx_gpython;
|
||||
|
||||
public CheckBox cbx_advanced;
|
||||
|
@ -23,8 +23,6 @@ public class InfoController extends SubForm {
|
||||
|
||||
public Label version;
|
||||
|
||||
// this is a TEMPORARY info tab
|
||||
|
||||
public static void activateHyperlink(Hyperlink link) {
|
||||
link.setOnAction((ActionEvent event) -> {
|
||||
Hyperlink h = (Hyperlink) event.getTarget();
|
||||
|
Loading…
Reference in New Issue
Block a user