Ajout de la fonction de sélection d'outils

This commit is contained in:
2020-11-23 15:44:41 +01:00
parent 8773354877
commit 72b018d957
4 changed files with 84 additions and 39 deletions

View File

@@ -98,6 +98,14 @@ public class AppThinkerWindow extends JFrame {
}
/**
* Récupère la toolbar contenue dans la fenêtre.
* @return La toolbar contenue dans la fenêtre.
*/
public AppThinkerToolbar getToolbar(){
return this._toolbar;
}
/**
* Récupère la grille contenue dans la fenêtre.
* @return La grille contenue dans la fenêtre.
@@ -105,4 +113,12 @@ public class AppThinkerWindow extends JFrame {
public AppThinkerGrid getGrid(){
return this._grid;
}
/**
* Récupère la statusbar contenue dans la fenêtre.
* @return La statusbar contenue dans la fenêtre.
*/
public AppThinkerStatusbar getStatusbar(){
return this._statusbar;
}
}