Skip to content
Snippets Groups Projects
Commit 65fcdaf8 authored by BERRADA Louise's avatar BERRADA Louise
Browse files

suppression temporaire ligne profs

parent da7b5eac
No related branches found
No related tags found
No related merge requests found
...@@ -217,29 +217,26 @@ public class ShukanView extends JPanel ...@@ -217,29 +217,26 @@ public class ShukanView extends JPanel
/** Updates the application size. /** Updates the application size.
*/ */
private void adaptSize (int width, int height) private void adaptSize(int width, int height) {
{ if (data != null) {
if (data != null) nbWeeks = data.semesterSize();
{ nbModules = data.numberOfModules();
nbWeeks = data.semesterSize ();
nbModules = data.numberOfModules ();
// Height // Height
textHeight = (int) (height / (3.0f * (nbModules + 1))); textHeight = (int) (height / (3.0f * nbModules));
appliHeight = textHeight * 3 * (nbModules + 1); appliHeight = textHeight * 3 * nbModules;
// Width // Width
activWidth = width / (ShukanModule.MAX_ACTIV_PER_WEEK * (nbWeeks + 2)); activWidth = width / (ShukanModule.MAX_ACTIV_PER_WEEK * (nbWeeks + 2));
weekWidth = activWidth * ShukanModule.MAX_ACTIV_PER_WEEK; weekWidth = activWidth * ShukanModule.MAX_ACTIV_PER_WEEK;
appliWidth = weekWidth * (nbWeeks + 2); appliWidth = weekWidth * (nbWeeks + 2);
} } else {
else
{
appliWidth = STD_APPLI_WIDTH; appliWidth = STD_APPLI_WIDTH;
appliHeight = STD_APPLI_HEIGHT; appliHeight = STD_APPLI_HEIGHT;
} }
} }
/** Displays the calendar grid background. /** Displays the calendar grid background.
*/ */
private void displayCalendar (Graphics2D g2) private void displayCalendar (Graphics2D g2)
...@@ -307,18 +304,18 @@ public class ShukanView extends JPanel ...@@ -307,18 +304,18 @@ public class ShukanView extends JPanel
// Texts : semester and load name // Texts : semester and load name
drawText (g2, 0, appliHeight - textHeight, drawText (g2, 0, appliHeight - textHeight,
2 * weekWidth, textHeight, data.cursusName ()); 2 * weekWidth, textHeight, data.cursusName ());
drawText (g2, 0, textHeight, // drawText (g2, 0, textHeight,
2 * weekWidth, textHeight, data.loadName ()); // 2 * weekWidth, textHeight, data.loadName ());
// Texts : weeks // Texts : weeks
int[] weekNumbers = data.weekNumbers (); int[] weekNumbers = data.weekNumbers ();
for (int i = 0; i < nbWeeks; i++) for (int i = 0; i < nbWeeks; i++)
{ {
drawText (g2, (i + 2) * weekWidth, appliHeight - textHeight, drawText (g2, (i + 2) * weekWidth, appliHeight - textHeight,
weekWidth, textHeight, "S" + weekNumbers[i]); weekWidth, textHeight, "S" + weekNumbers[i]);
drawText (g2, (i + 2) * weekWidth, textHeight, // drawText (g2, (i + 2) * weekWidth, textHeight,
weekWidth, textHeight, "" + data.computeLoad (i)); // weekWidth, textHeight, "" + data.computeLoad (i));
drawText (g2, (2 + i) * weekWidth, 0, // drawText (g2, (2 + i) * weekWidth, 0,
weekWidth, textHeight, "/" + durations[i]); // weekWidth, textHeight, "/" + durations[i]);
} }
// Texts : modules // Texts : modules
String[] modNames = data.moduleNames (); String[] modNames = data.moduleNames ();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment