Skip to content

Commit

Permalink
update icons and paper text
Browse files Browse the repository at this point in the history
  • Loading branch information
johnprif committed Feb 18, 2023
1 parent 90946c2 commit c099ed3
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file modified src/Icons/circle (2).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/Icons/farthestVoronoi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/Icons/nearestVoronoi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/Model/TextHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class TextHandler

//-----------parallel---------------
private String changeLanguageButtonText = "EN";
private String paperTitleText = "A SIMPLE ALGORITHM FOR COMPUTING THE SMALLEST ENCLOSING CIRCLE";
private String paperTitleText = "A SIMPLE ALGORITHM FOR COMPUTING THE SMALLEST ENCLOSING CIRCLE\n\t";
private String loadFileButtonText = "Load Points From File";
private String putPointsButtonText = "Create Points";
private String exitButtonText = "Exit";
Expand Down Expand Up @@ -56,7 +56,7 @@ public void setLanguage(String language)
if(language.equals("EN"))
{
//-----MainWidnow--------------
paperTitleText = "A SIMPLE ALGORITHM FOR COMPUTING THE SMALLEST ENCLOSING CIRCLE";
paperTitleText = "A SIMPLE ALGORITHM FOR COMPUTING THE SMALLEST ENCLOSING CIRCLE\n\t";
loadFileButtonText = "Load Points From File";
putPointsButtonText = "Create Points";
exitButtonText = "Exit";
Expand Down Expand Up @@ -89,7 +89,7 @@ public void setLanguage(String language)
}else //GR
{
//-----MainWidnow--------------
paperTitleText = "ΕΝΑΣ ΑΠΛΟΣ ΑΛΓΟΡΙΘΜΟΣ ΓΙΑ ΤΟΝ ΥΠΟΛΟΓΙΣΜΟ ΤΟΥ ΕΛΑΧΙΣΤΟΥ ΠΕΡΙΚΛΕΙΩΝΤΑ ΚΥΚΛΟΥ";
paperTitleText = "ΕΝΑΣ ΑΠΛΟΣ ΑΛΓΟΡΙΘΜΟΣ ΓΙΑ ΤΟΝ ΥΠΟΛΟΓΙΣΜΟ ΤΟΥ ΕΛΑΧΙΣΤΟΥ ΠΕΡΙΚΛΕΙΟΝΤΑ ΚΥΚΛΟΥ";
loadFileButtonText = "Φόρτωση Σημείων από Αρχείο";
putPointsButtonText = "Δημιουργία σημείων";
exitButtonText = "Έξοδος";
Expand Down

0 comments on commit c099ed3

Please sign in to comment.