diff --git a/src/warchron/constants.py b/src/warchron/constants.py
index dce34fd..1d431b6 100644
--- a/src/warchron/constants.py
+++ b/src/warchron/constants.py
@@ -13,8 +13,6 @@ class ItemType(StrEnum):
ROUND = "round"
OBJECTIVE = "objective"
WAR_PARTICIPANT = "war_participant"
- SECTOR = "sector"
- CAMPAIGN_PARTICIPANT = "campaign_participant"
class RefreshScope(Enum):
NONE = auto()
diff --git a/src/warchron/controller/controller.py b/src/warchron/controller/controller.py
index 626e21c..af71bbd 100644
--- a/src/warchron/controller/controller.py
+++ b/src/warchron/controller/controller.py
@@ -1,12 +1,12 @@
from pathlib import Path
+from datetime import datetime
from PyQt6.QtWidgets import QMessageBox, QDialog
from warchron.model.model import Model
from warchron.view.view import View
from warchron.constants import ItemType, RefreshScope
-from warchron.view.view import PlayerDialog, WarDialog, CampaignDialog, ObjectiveDialog, WarParticipantDialog, CampaignParticipantDialog, SectorDialog
-from warchron.controller.dtos import ParticipantOption
+from warchron.view.view import PlayerDialog, WarDialog, CampaignDialog, ObjectiveDialog, ParticipantDialog
class Controller:
def __init__(self, model: Model, view: View):
@@ -37,8 +37,6 @@ class Controller:
self.view.addWarBtn.clicked.connect(self.add_war)
self.view.addObjectiveBtn.clicked.connect(self.add_objective)
self.view.addWarParticipantBtn.clicked.connect(self.add_war_participant)
- self.view.addSectorBtn.clicked.connect(self.add_sector)
- self.view.addCampaignParticipantBtn.clicked.connect(self.add_campaign_participant)
self.view.on_edit_item = self.edit_item
self.view.on_delete_item = self.delete_item
@@ -147,22 +145,6 @@ class Controller:
def _fill_campaign_details(self, campaign_id: str):
camp = self.model.get_campaign(campaign_id)
self.view.show_campaign_details(name=camp.name, month=camp.month)
- sectors = camp.get_all_sectors()
- sectors_for_display = []
- war = self.model.get_war_by_campaign(camp.id)
- for sect in sectors:
- round_index = camp.get_round_index(sect.round_id)
- major_name = war.get_objective_name(sect.major_objective_id)
- minor_name = war.get_objective_name(sect.minor_objective_id)
- influence_name = war.get_objective_name(sect.influence_objective_id)
- sectors_for_display.append((sect.name,round_index,major_name,minor_name,influence_name,sect.id))
- self.view.display_campaign_sectors(sectors_for_display)
- participants = camp.get_all_campaign_participants()
- participants_for_display = [
- (self.model.get_player_name(p.id), p.leader, p.theme, p.id)
- for p in participants
- ]
- self.view.display_campaign_participants(participants_for_display)
def _fill_round_details(self, round_id: str):
index = self.model.get_round_index(round_id)
@@ -266,65 +248,12 @@ class Controller:
elif item_type == ItemType.WAR_PARTICIPANT:
part = self.model.get_war_participant(item_id)
player = self.model.get_player(part.id)
- dialog = WarParticipantDialog(
- self.view,
- players=[player],
- default_player_id=part.id,
- default_faction=part.faction,
- editable_player=False
- )
+ dialog = ParticipantDialog(self.view, players=[player], default_player_id=part.id, default_faction=part.faction)
if dialog.exec() == QDialog.DialogCode.Accepted:
+ id = dialog.get_player_id()
faction = dialog.get_participant_faction()
self.model.update_war_participant(item_id, faction=faction)
self.refresh(RefreshScope.WAR_DETAILS)
- elif item_type == ItemType.SECTOR:
- sect = self.model.get_sector(item_id)
- camp = self.model.get_campaign_by_sector(item_id)
- war = self.model.get_war_by_campaign(camp.id)
- rounds = camp.get_all_rounds()
- objectives = war.get_all_objectives()
- dialog = SectorDialog(
- self.view,
- default_name=sect.name,
- rounds=rounds,
- default_round_id=sect.round_id,
- objectives=objectives,
- default_major_id=sect.major_objective_id,
- default_minor_id=sect.minor_objective_id,
- default_influence_id=sect.influence_objective_id,
- )
- if dialog.exec() == QDialog.DialogCode.Accepted:
- name = dialog.get_sector_name()
- round_id = dialog.get_round_id()
- major_id = dialog.get_major_id()
- minor_id = dialog.get_minor_id()
- influence_id = dialog.get_influence_id()
- self.model.update_sector(
- item_id,
- name=name,
- round_id=round_id,
- major_id=major_id,
- minor_id=minor_id,
- influence_id=influence_id
- )
- self.refresh(RefreshScope.CAMPAIGN_DETAILS)
- elif item_type == ItemType.CAMPAIGN_PARTICIPANT:
- part = self.model.get_campaign_participant(item_id)
- player = self.model.get_player(part.id)
- part_opt = [ParticipantOption(id=player.id, name=player.name)]
- dialog = CampaignParticipantDialog(
- self.view,
- participants=part_opt,
- default_participant_id=part.id,
- default_leader=part.leader,
- default_theme=part.theme,
- editable_player=False
- )
- if dialog.exec() == QDialog.DialogCode.Accepted:
- leader = dialog.get_participant_leader()
- theme = dialog.get_participant_theme()
- self.model.update_campaign_participant(item_id, leader=leader, theme=theme)
- self.refresh(RefreshScope.CAMPAIGN_DETAILS)
self.is_dirty = True
def delete_item(self, item_type: str, item_id: str):
@@ -353,12 +282,6 @@ class Controller:
elif item_type == ItemType.WAR_PARTICIPANT:
self.model.remove_war_participant(item_id)
self.refresh(RefreshScope.WAR_DETAILS)
- elif item_type == ItemType.SECTOR:
- self.model.remove_sector(item_id)
- self.refresh(RefreshScope.CAMPAIGN_DETAILS)
- elif item_type == ItemType.CAMPAIGN_PARTICIPANT:
- self.model.remove_campaign_participant(item_id)
- self.refresh(RefreshScope.CAMPAIGN_DETAILS)
elif item_type == ItemType.ROUND:
camp = self.model.get_campaign_by_round(item_id)
camp_id = camp.id
@@ -422,12 +345,12 @@ class Controller:
# Objective methods
- def _validate_objective_inputs(self, name: str, description: str) -> bool:
+ def _validate_objective_inputs(self, name: str, description: int) -> bool:
if not name.strip():
QMessageBox.warning(
self.view,
"Invalid name",
- "Objective name cannot be empty."
+ "Campaign name cannot be empty."
)
return False
return True
@@ -440,7 +363,7 @@ class Controller:
return
name = dialog.get_objective_name()
description = dialog.get_objective_description()
- if not self._validate_objective_inputs(name, description):
+ if not name:
return
self.model.add_objective(self.selected_war_id, name, description)
self.is_dirty = True
@@ -452,7 +375,7 @@ class Controller:
if not self.selected_war_id:
return
players = self.model.get_available_players(self.selected_war_id)
- dialog = WarParticipantDialog(self.view, players=players)
+ dialog = ParticipantDialog(self.view, players=players)
if dialog.exec() != QDialog.DialogCode.Accepted:
return
player_id = dialog.get_player_id()
@@ -496,59 +419,6 @@ class Controller:
self.is_dirty = True
self.refresh_and_select(RefreshScope.WARS_TREE, item_type=ItemType.CAMPAIGN, item_id=camp.id)
-# Campaign participant methods
-
- def add_campaign_participant(self):
- if not self.selected_campaign_id:
- return
- participants = self.model.get_available_war_participants(self.selected_campaign_id)
- part_opts = [ParticipantOption(id=p.id, name=self.model.get_player_name(p.id)) for p in participants]
- dialog = CampaignParticipantDialog(self.view, participants=part_opts)
- if dialog.exec() != QDialog.DialogCode.Accepted:
- return
- player_id = dialog.get_player_id()
- leader = dialog.get_participant_leader()
- theme = dialog.get_participant_theme()
- if not player_id:
- return
- self.model.add_campaign_participant(self.selected_campaign_id, player_id, leader, theme)
- self.is_dirty = True
- self.refresh(RefreshScope.CAMPAIGN_DETAILS)
-
-# Sector methods
-
- def _validate_sector_inputs(self, name: str, round_id: str, major_id: str, minor_id: str, influence_id:str) -> bool:
- if not name.strip():
- QMessageBox.warning(
- self.view,
- "Invalid name",
- "Sector name cannot be empty."
- )
- return False
- # allow same objectives in different fields?
- return True
-
- def add_sector(self):
- if not self.selected_campaign_id:
- return
- war = self.model.get_war_by_campaign(self.selected_campaign_id)
- camp = self.model.get_campaign(self.selected_campaign_id)
- rounds = camp.get_all_rounds()
- objectives = war.get_all_objectives()
- dialog = SectorDialog(self.view, default_name="", rounds=rounds, objectives=objectives)
- if dialog.exec() != QDialog.DialogCode.Accepted:
- return
- name = dialog.get_sector_name()
- round_id = dialog.get_round_id()
- major_id = dialog.get_major_id()
- minor_id = dialog.get_minor_id()
- influence_id = dialog.get_influence_id()
- if not self._validate_sector_inputs(name, round_id, major_id, minor_id, influence_id):
- return
- self.model.add_sector(self.selected_campaign_id, name, round_id, major_id, minor_id, influence_id)
- self.is_dirty = True
- self.refresh(RefreshScope.CAMPAIGN_DETAILS)
-
# Round methods
def add_round(self):
diff --git a/src/warchron/controller/dtos.py b/src/warchron/controller/dtos.py
deleted file mode 100644
index 988e35f..0000000
--- a/src/warchron/controller/dtos.py
+++ /dev/null
@@ -1,6 +0,0 @@
-from dataclasses import dataclass
-
-@dataclass(frozen=True)
-class ParticipantOption:
- id: str
- name: str
diff --git a/src/warchron/model/campaign.py b/src/warchron/model/campaign.py
index e3b5e90..76c9d9b 100644
--- a/src/warchron/model/campaign.py
+++ b/src/warchron/model/campaign.py
@@ -1,5 +1,6 @@
from __future__ import annotations
from uuid import uuid4
+from datetime import datetime
from warchron.model.round import Round
@@ -8,8 +9,8 @@ class Campaign:
self.id: str = str(uuid4())
self.name: str = name
self.month: int = month
- self.participants: dict[str, CampaignParticipant] = {}
- self.sectors: dict[str, Sector] = {}
+ self.participants = {}
+ self.sectors = {}
self.rounds = []
self.is_over = False
@@ -45,61 +46,6 @@ class Campaign:
camp.set_state(data.get("is_over", False))
return camp
-# Campaign participant methods
-
- def get_all_campaign_participants_ids(self) -> set[str]:
- return set(self.participants.keys())
-
- def has_participant(self, player_id: str) -> bool:
- return player_id in self.participants
-
- def add_campaign_participant(self, player_id: str, leader: str, theme: str) -> CampaignParticipant:
- if player_id in self.participants:
- raise ValueError("Player already registered in this campaign")
- participant = CampaignParticipant(player_id, leader, theme)
- self.participants[participant.id] = participant
- return participant
-
- def get_campaign_participant(self, id: str) -> CampaignParticipant:
- return self.participants[id]
-
- def get_all_campaign_participants(self) -> list[CampaignParticipant]:
- return list(self.participants.values())
-
- def update_campaign_participant(self, player_id: str, *, leader: str, theme: str):
- part = self.get_campaign_participant(player_id)
- part.set_leader(leader)
- part.set_theme(theme)
-
- def remove_campaign_participant(self, player_id: str):
- del self.participants[player_id]
-
-# Sector methods
-
- def add_sector(self, name: str, round_id: str, major_id: str, minor_id: str, influence_id: str) -> Sector:
- sect = Sector(name, round_id, major_id, minor_id, influence_id)
- self.sectors[sect.id] = sect
- return sect
-
- def get_sector(self, id: str) -> Sector:
- return self.sectors[id]
-
- def get_all_sectors(self) -> list[Sector]:
- return list(self.sectors.values())
-
- def update_sector(self, sector_id: str, *, name: str, round_id: str, major_id: str, minor_id: str, influence_id: str):
- sect = self.get_sector(sector_id)
- sect.set_name(name)
- sect.set_round(round_id)
- sect.set_major(major_id)
- sect.set_minor(minor_id)
- sect.set_influence(influence_id)
-
- def remove_sector(self, sector_id: str):
- del self.sectors[sector_id]
-
-# Round methods
-
def has_round(self, round_id: str) -> bool:
return any(r.id == round_id for r in self.rounds)
@@ -120,59 +66,23 @@ class Campaign:
self.rounds.remove(rnd)
def get_round_index(self, round_id: str) -> int:
- if round_id is None:
- return None
for index, rnd in enumerate(self.rounds, start=1):
if rnd.id == round_id:
return index
raise KeyError("Round not found in campaign")
- def get_round_name(self, round_id: str | None) -> str:
- if round_id is None:
- return ""
- for rnd in self.rounds:
- if rnd.id == round_id:
- return rnd.name
- return ""
-
class CampaignParticipant:
- def __init__(self,player_id: str, leader: str, theme: str):
- self.id: str = player_id # ref to War.participants
+ def __init__(self,war_participant_id: str, leader: str):
+ self.id: str = war_participant_id # ref to War.participants
self.leader: str = leader
- self.theme: str = theme
-
- def set_id(self, new_id: str):
- self.id = new_id
-
- def set_leader(self, new_faction: str):
- self.leader = new_faction
-
- def set_theme(self, new_theme: str):
- self.theme = new_theme
+ self.victory_points = 0
+ self.objective_points = {}
class Sector:
def __init__(self, name: str, round_id: str, major_id: str, minor_id: str, influence_id: str):
self.id: str = str(uuid4())
self.name: str = name
- self.round_id: str = round_id
self.major_objective_id: str = major_id
self.minor_objective_id: str = minor_id
self.influence_objective_id: str = influence_id
-
- def set_id(self, new_id: str):
- self.id = new_id
-
- def set_name(self, new_name: str):
- self.name = new_name
-
- def set_round(self, new_round_id: str):
- self.round_id = new_round_id
-
- def set_major(self, new_major_id: str):
- self.major_objective_id = new_major_id
-
- def set_minor(self, new_minor_id: str):
- self.minor_objective_id = new_minor_id
-
- def set_influence(self, new_influence_id: str):
- self.influence_objective_id = new_influence_id
+ self.round_id: str = round_id
diff --git a/src/warchron/model/model.py b/src/warchron/model/model.py
index c05b8d1..6f8c222 100644
--- a/src/warchron/model/model.py
+++ b/src/warchron/model/model.py
@@ -5,7 +5,7 @@ from datetime import datetime
from warchron.model.player import Player
from warchron.model.war import War, Objective, WarParticipant
-from warchron.model.campaign import Campaign, Sector, CampaignParticipant
+from warchron.model.campaign import Campaign
from warchron.model.round import Round
class Model:
@@ -156,7 +156,7 @@ class Model:
if not war.has_participant(player.id)
]
- def add_war_participant(self, war_id: str, player_id: str, faction: str) -> WarParticipant:
+ def add_war_participant(self, war_id: str, player_id: str, faction: str) -> Objective:
war = self.get_war(war_id)
return war.add_war_participant(player_id, faction)
@@ -198,21 +198,7 @@ class Model:
if camp is not None:
return camp
raise KeyError(f"Round {round_id} not found")
-
- def get_campaign_by_campaign_participant(self, participant_id: str) -> Campaign:
- for war in self.wars.values():
- camp = war.get_campaign_by_campaign_participant(participant_id)
- if camp is not None:
- return camp
- raise KeyError(f"Participant {participant_id} not found")
-
- def get_campaign_by_sector(self, sector_id: str) -> Campaign:
- for war in self.wars.values():
- camp = war.get_campaign_by_sector(sector_id)
- if camp is not None:
- return camp
- raise KeyError(f"Sector {sector_id} not found")
-
+
def update_campaign(self, campaign_id: str, *, name: str, month: int):
war = self.get_war_by_campaign(campaign_id)
war.update_campaign(campaign_id, name=name, month=month)
@@ -221,64 +207,16 @@ class Model:
war = self.get_war_by_campaign(campaign_id)
war.remove_campaign(campaign_id)
-# Sector methods
-
- def add_sector(self, campaign_id: str, name: str, round_id: str, major_id: str, minor_id: str, influence_id: str) -> Sector:
- camp = self.get_campaign(campaign_id)
- return camp.add_sector(name, round_id, major_id, minor_id, influence_id)
-
- def get_sector(self, sector_id) -> Sector:
- for war in self.wars.values():
- for camp in war.campaigns:
- for sect in camp.sectors.values():
- if sect.id == sector_id:
- return sect
- raise KeyError("Sector not found")
-
- def update_sector(self, sector_id: str, *, name: str, round_id: str, major_id: str, minor_id: str, influence_id: str):
- camp = self.get_campaign_by_sector(sector_id)
- camp.update_sector(sector_id, name=name, round_id=round_id, major_id=major_id, minor_id=minor_id, influence_id=influence_id)
-
- def remove_sector(self, sector_id: str):
- camp = self.get_campaign_by_sector(sector_id)
- camp.remove_sector(sector_id)
-
-# Campaign participant methods
-
- def get_available_war_participants(self, campaign_id: str) -> list[WarParticipant]:
- war = self.get_war_by_campaign(campaign_id)
- return war.get_available_war_participants(campaign_id)
-
- def add_campaign_participant(self, camp_id: str, player_id: str, leader: str, theme: str) -> CampaignParticipant:
- camp = self.get_campaign(camp_id)
- return camp.add_campaign_participant(player_id, leader, theme)
-
- def get_campaign_participant(self, participant_id) -> CampaignParticipant:
- for war in self.wars.values():
- for camp in war.campaigns:
- for part in camp.participants.values():
- if part.id == participant_id:
- return part
- raise KeyError("Participant not found")
-
- def update_campaign_participant(self, participant_id: str, *, leader: str, theme: str):
- camp = self.get_campaign_by_campaign_participant(participant_id)
- camp.update_campaign_participant(participant_id, leader=leader, theme=theme)
-
- def remove_campaign_participant(self, participant_id: str):
- camp = self.get_campaign_by_campaign_participant(participant_id)
- camp.remove_campaign_participant(participant_id)
-
# Round methods
def add_round(self, campaign_id: str) -> Round:
- camp = self.get_campaign(campaign_id)
- return camp.add_round()
+ campaign = self.get_campaign(campaign_id)
+ return campaign.add_round()
def get_round(self, round_id: str) -> Round:
for war in self.wars.values():
- for camp in war.campaigns:
- for rnd in camp.rounds:
+ for campaign in war.campaigns:
+ for rnd in campaign.rounds:
if rnd.id == round_id:
return rnd
raise KeyError("Round not found")
diff --git a/src/warchron/model/war.py b/src/warchron/model/war.py
index db14c78..9e3b402 100644
--- a/src/warchron/model/war.py
+++ b/src/warchron/model/war.py
@@ -2,7 +2,7 @@ from __future__ import annotations
from uuid import uuid4
from datetime import datetime
-from warchron.model.campaign import Campaign, Sector, CampaignParticipant
+from warchron.model.campaign import Campaign
class War:
@@ -50,9 +50,9 @@ class War:
# Objective methods
def add_objective(self, name: str, description: str) -> Objective:
- obj = Objective(name, description)
- self.objectives[obj.id] = obj
- return obj
+ objective = Objective(name, description)
+ self.objectives[objective.id] = objective
+ return objective
def get_objective(self, id: str) -> Objective:
return self.objectives[id]
@@ -60,12 +60,6 @@ class War:
def get_all_objectives(self) -> list[Objective]:
return list(self.objectives.values())
- def get_objective_name(self, objective_id: str | None) -> str:
- if objective_id is None:
- return ""
- obj = self.objectives.get(objective_id)
- return obj.name if obj else ""
-
def update_objective(self, objective_id: str, *, name: str, description: str):
obj = self.get_objective(objective_id)
obj.set_name(name)
@@ -132,20 +126,6 @@ class War:
return camp
raise KeyError(f"Round {round_id} not found in any Campaign")
- def get_campaign_by_sector(self, sector_id: str) -> Campaign:
- for camp in self.campaigns:
- for sect in camp.sectors.values():
- if sect.id == sector_id:
- return camp
- raise KeyError(f"Sector {sector_id} not found in any Campaign")
-
- def get_campaign_by_campaign_participant(self, participant_id: str) -> Campaign:
- for camp in self.campaigns:
- for part in camp.participants.values():
- if part.id == participant_id:
- return camp
- raise KeyError(f"Participant {participant_id} not found in any Campaign")
-
def update_campaign(self, campaign_id: str, *, name: str, month: int):
camp = self.get_campaign(campaign_id)
camp.set_name(name)
@@ -158,52 +138,6 @@ class War:
camp = self.get_campaign(campaign_id)
self.campaigns.remove(camp)
-# Sector methods
-
- def add_sector(self, campaign_id, name: str, round_id: str, major_id: str, minor_id: str, influence_id: str) -> Sector:
- camp = self.get_campaign(campaign_id)
- return camp.add_sector(name, round_id, major_id, minor_id, influence_id)
-
- def get_sector(self, id: str) -> Sector:
- return self.sectors[id]
-
- def update_sector(self, objective_id: str, *, name: str, round_id: str, major_id: str, minor_id: str, influence_id: str):
- obj = self.get_objective(objective_id)
- obj.set_name(name)
-
- def remove_sector(self, sector_id: str):
- camp = self.get_campaign_by_sector(sector_id)
- camp.remove_sector(sector_id)
-
-# Campaign participant methods
-
- def get_available_war_participants(self, campaign_id: str) -> list[WarParticipant]:
- camp = self.get_campaign(campaign_id)
- return [
- part
- for part in self.participants.values()
- if not camp.has_participant(part.id)
- ]
-
- def add_campaign_participant(self, campaign_id: str, player_id: str, leader: str, theme: str) -> CampaignParticipant:
- camp = self.get_campaign(campaign_id)
- return camp.add_campaign_participant(player_id, leader, theme)
-
- def get_campaign_participant(self, participant_id) -> CampaignParticipant:
- for camp in self.campaigns.values():
- for part in camp.participants.values():
- if part.id == participant_id:
- return part
- raise KeyError("Participant not found")
-
- def update_campaign_participant(self, participant_id: str, *, faction: str):
- camp = self.get_campaign_by_campaign_participant(participant_id)
- camp.update_campaign_participant(participant_id, faction=faction)
-
- def remove_campaign_participant(self, participant_id: str):
- camp = self.get_campaign_by_campaign_participant(participant_id)
- camp.remove_campaign_participant(participant_id)
-
class Objective:
def __init__(self, name: str, description: str):
self.id: str = str(uuid4())
diff --git a/src/warchron/view/ui/ui_campaign_dialog.py b/src/warchron/view/ui/ui_campaign_dialog.py
index 1265947..8922ddf 100644
--- a/src/warchron/view/ui/ui_campaign_dialog.py
+++ b/src/warchron/view/ui/ui_campaign_dialog.py
@@ -17,27 +17,25 @@ class Ui_campaignDialog(object):
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap(".\\src\\warchron\\view\\ui\\../resources/warchron_logo.png"), QtGui.QIcon.Mode.Normal, QtGui.QIcon.State.Off)
campaignDialog.setWindowIcon(icon)
- self.formLayout = QtWidgets.QFormLayout(campaignDialog)
- self.formLayout.setObjectName("formLayout")
- self.label = QtWidgets.QLabel(parent=campaignDialog)
- self.label.setObjectName("label")
- self.formLayout.setWidget(0, QtWidgets.QFormLayout.ItemRole.LabelRole, self.label)
- self.campaignName = QtWidgets.QLineEdit(parent=campaignDialog)
- self.campaignName.setObjectName("campaignName")
- self.formLayout.setWidget(0, QtWidgets.QFormLayout.ItemRole.FieldRole, self.campaignName)
- self.label_2 = QtWidgets.QLabel(parent=campaignDialog)
- self.label_2.setObjectName("label_2")
- self.formLayout.setWidget(1, QtWidgets.QFormLayout.ItemRole.LabelRole, self.label_2)
- self.campaignMonth = QtWidgets.QSpinBox(parent=campaignDialog)
- self.campaignMonth.setMinimum(1)
- self.campaignMonth.setMaximum(12)
- self.campaignMonth.setObjectName("campaignMonth")
- self.formLayout.setWidget(1, QtWidgets.QFormLayout.ItemRole.FieldRole, self.campaignMonth)
self.buttonBox = QtWidgets.QDialogButtonBox(parent=campaignDialog)
+ self.buttonBox.setGeometry(QtCore.QRect(10, 60, 341, 32))
self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
self.buttonBox.setObjectName("buttonBox")
- self.formLayout.setWidget(2, QtWidgets.QFormLayout.ItemRole.SpanningRole, self.buttonBox)
+ self.label = QtWidgets.QLabel(parent=campaignDialog)
+ self.label.setGeometry(QtCore.QRect(10, 20, 47, 14))
+ self.label.setObjectName("label")
+ self.campaignName = QtWidgets.QLineEdit(parent=campaignDialog)
+ self.campaignName.setGeometry(QtCore.QRect(60, 20, 113, 20))
+ self.campaignName.setObjectName("campaignName")
+ self.label_2 = QtWidgets.QLabel(parent=campaignDialog)
+ self.label_2.setGeometry(QtCore.QRect(10, 50, 47, 14))
+ self.label_2.setObjectName("label_2")
+ self.campaignMonth = QtWidgets.QSpinBox(parent=campaignDialog)
+ self.campaignMonth.setGeometry(QtCore.QRect(60, 50, 71, 22))
+ self.campaignMonth.setMinimum(1)
+ self.campaignMonth.setMaximum(12)
+ self.campaignMonth.setObjectName("campaignMonth")
self.retranslateUi(campaignDialog)
self.buttonBox.accepted.connect(campaignDialog.accept) # type: ignore
diff --git a/src/warchron/view/ui/ui_campaign_dialog.ui b/src/warchron/view/ui/ui_campaign_dialog.ui
index 03e9527..cbccab3 100644
--- a/src/warchron/view/ui/ui_campaign_dialog.ui
+++ b/src/warchron/view/ui/ui_campaign_dialog.ui
@@ -20,45 +20,74 @@
../resources/warchron_logo.png../resources/warchron_logo.png
-
- -
-
-
- Name:
-
-
-
- -
-
-
- -
-
-
- Month:
-
-
-
- -
-
-
- 1
-
-
- 12
-
-
-
- -
-
-
- Qt::Horizontal
-
-
- QDialogButtonBox::Cancel|QDialogButtonBox::Ok
-
-
-
-
+
+
+
+ 10
+ 60
+ 341
+ 32
+
+
+
+ Qt::Horizontal
+
+
+ QDialogButtonBox::Cancel|QDialogButtonBox::Ok
+
+
+
+
+
+ 10
+ 20
+ 47
+ 14
+
+
+
+ Name:
+
+
+
+
+
+ 60
+ 20
+ 113
+ 20
+
+
+
+
+
+
+ 10
+ 50
+ 47
+ 14
+
+
+
+ Month:
+
+
+
+
+
+ 60
+ 50
+ 71
+ 22
+
+
+
+ 1
+
+
+ 12
+
+
diff --git a/src/warchron/view/ui/ui_campaign_participant_dialog.py b/src/warchron/view/ui/ui_campaign_participant_dialog.py
deleted file mode 100644
index 3252da8..0000000
--- a/src/warchron/view/ui/ui_campaign_participant_dialog.py
+++ /dev/null
@@ -1,72 +0,0 @@
-# Form implementation generated from reading ui file '.\src\warchron\view\ui\ui_campaign_participant_dialog.ui'
-#
-# Created by: PyQt6 UI code generator 6.7.1
-#
-# WARNING: Any manual changes made to this file will be lost when pyuic6 is
-# run again. Do not edit this file unless you know what you are doing.
-
-
-from PyQt6 import QtCore, QtGui, QtWidgets
-
-
-class Ui_campaignParticipantDialog(object):
- def setupUi(self, campaignParticipantDialog):
- campaignParticipantDialog.setObjectName("campaignParticipantDialog")
- campaignParticipantDialog.setWindowModality(QtCore.Qt.WindowModality.ApplicationModal)
- campaignParticipantDialog.resize(394, 124)
- icon = QtGui.QIcon()
- icon.addPixmap(QtGui.QPixmap(".\\src\\warchron\\view\\ui\\../resources/warchron_logo.png"), QtGui.QIcon.Mode.Normal, QtGui.QIcon.State.Off)
- campaignParticipantDialog.setWindowIcon(icon)
- self.formLayout = QtWidgets.QFormLayout(campaignParticipantDialog)
- self.formLayout.setObjectName("formLayout")
- self.label = QtWidgets.QLabel(parent=campaignParticipantDialog)
- self.label.setObjectName("label")
- self.formLayout.setWidget(0, QtWidgets.QFormLayout.ItemRole.LabelRole, self.label)
- self.playerComboBox = QtWidgets.QComboBox(parent=campaignParticipantDialog)
- sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed)
- sizePolicy.setHorizontalStretch(0)
- sizePolicy.setVerticalStretch(0)
- sizePolicy.setHeightForWidth(self.playerComboBox.sizePolicy().hasHeightForWidth())
- self.playerComboBox.setSizePolicy(sizePolicy)
- self.playerComboBox.setObjectName("playerComboBox")
- self.formLayout.setWidget(0, QtWidgets.QFormLayout.ItemRole.FieldRole, self.playerComboBox)
- self.label_2 = QtWidgets.QLabel(parent=campaignParticipantDialog)
- self.label_2.setObjectName("label_2")
- self.formLayout.setWidget(1, QtWidgets.QFormLayout.ItemRole.LabelRole, self.label_2)
- self.leader = QtWidgets.QLineEdit(parent=campaignParticipantDialog)
- self.leader.setObjectName("leader")
- self.formLayout.setWidget(1, QtWidgets.QFormLayout.ItemRole.FieldRole, self.leader)
- self.label_3 = QtWidgets.QLabel(parent=campaignParticipantDialog)
- self.label_3.setObjectName("label_3")
- self.formLayout.setWidget(2, QtWidgets.QFormLayout.ItemRole.LabelRole, self.label_3)
- self.theme = QtWidgets.QLineEdit(parent=campaignParticipantDialog)
- self.theme.setText("")
- self.theme.setObjectName("theme")
- self.formLayout.setWidget(2, QtWidgets.QFormLayout.ItemRole.FieldRole, self.theme)
- self.buttonBox = QtWidgets.QDialogButtonBox(parent=campaignParticipantDialog)
- self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
- self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
- self.buttonBox.setObjectName("buttonBox")
- self.formLayout.setWidget(3, QtWidgets.QFormLayout.ItemRole.SpanningRole, self.buttonBox)
-
- self.retranslateUi(campaignParticipantDialog)
- self.buttonBox.accepted.connect(campaignParticipantDialog.accept) # type: ignore
- self.buttonBox.rejected.connect(campaignParticipantDialog.reject) # type: ignore
- QtCore.QMetaObject.connectSlotsByName(campaignParticipantDialog)
-
- def retranslateUi(self, campaignParticipantDialog):
- _translate = QtCore.QCoreApplication.translate
- campaignParticipantDialog.setWindowTitle(_translate("campaignParticipantDialog", "Campaign participant"))
- self.label.setText(_translate("campaignParticipantDialog", "Player"))
- self.label_2.setText(_translate("campaignParticipantDialog", "Leader"))
- self.label_3.setText(_translate("campaignParticipantDialog", "Theme"))
-
-
-if __name__ == "__main__":
- import sys
- app = QtWidgets.QApplication(sys.argv)
- campaignParticipantDialog = QtWidgets.QDialog()
- ui = Ui_campaignParticipantDialog()
- ui.setupUi(campaignParticipantDialog)
- campaignParticipantDialog.show()
- sys.exit(app.exec())
diff --git a/src/warchron/view/ui/ui_campaign_participant_dialog.ui b/src/warchron/view/ui/ui_campaign_participant_dialog.ui
deleted file mode 100644
index c17e80a..0000000
--- a/src/warchron/view/ui/ui_campaign_participant_dialog.ui
+++ /dev/null
@@ -1,112 +0,0 @@
-
-
- campaignParticipantDialog
-
-
- Qt::ApplicationModal
-
-
-
- 0
- 0
- 394
- 124
-
-
-
- Campaign participant
-
-
-
- ../resources/warchron_logo.png../resources/warchron_logo.png
-
-
- -
-
-
- Player
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
-
- -
-
-
- Leader
-
-
-
- -
-
-
- -
-
-
- Theme
-
-
-
- -
-
-
-
-
-
-
- -
-
-
- Qt::Horizontal
-
-
- QDialogButtonBox::Cancel|QDialogButtonBox::Ok
-
-
-
-
-
-
-
-
- buttonBox
- accepted()
- campaignParticipantDialog
- accept()
-
-
- 248
- 254
-
-
- 157
- 274
-
-
-
-
- buttonBox
- rejected()
- campaignParticipantDialog
- reject()
-
-
- 316
- 260
-
-
- 286
- 274
-
-
-
-
-
diff --git a/src/warchron/view/ui/ui_main_window.py b/src/warchron/view/ui/ui_main_window.py
index 196353d..5bfbf54 100644
--- a/src/warchron/view/ui/ui_main_window.py
+++ b/src/warchron/view/ui/ui_main_window.py
@@ -12,29 +12,19 @@ from PyQt6 import QtCore, QtGui, QtWidgets
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
- MainWindow.resize(1288, 817)
+ MainWindow.resize(800, 600)
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap(".\\src\\warchron\\view\\ui\\../resources/warchron_logo.png"), QtGui.QIcon.Mode.Normal, QtGui.QIcon.State.Off)
MainWindow.setWindowIcon(icon)
self.centralwidget = QtWidgets.QWidget(parent=MainWindow)
self.centralwidget.setObjectName("centralwidget")
- self.verticalLayout = QtWidgets.QVBoxLayout(self.centralwidget)
- self.verticalLayout.setObjectName("verticalLayout")
self.tabWidget = QtWidgets.QTabWidget(parent=self.centralwidget)
+ self.tabWidget.setGeometry(QtCore.QRect(16, 9, 771, 531))
self.tabWidget.setObjectName("tabWidget")
self.playersTab = QtWidgets.QWidget()
self.playersTab.setObjectName("playersTab")
- self.gridLayout = QtWidgets.QGridLayout(self.playersTab)
- self.gridLayout.setObjectName("gridLayout")
- self.horizontalLayout = QtWidgets.QHBoxLayout()
- self.horizontalLayout.setObjectName("horizontalLayout")
- self.addPlayerBtn = QtWidgets.QPushButton(parent=self.playersTab)
- self.addPlayerBtn.setObjectName("addPlayerBtn")
- self.horizontalLayout.addWidget(self.addPlayerBtn)
- spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
- self.horizontalLayout.addItem(spacerItem)
- self.gridLayout.addLayout(self.horizontalLayout, 0, 0, 1, 1)
self.playersTable = QtWidgets.QTableWidget(parent=self.playersTab)
+ self.playersTable.setGeometry(QtCore.QRect(10, 60, 741, 431))
self.playersTable.setObjectName("playersTable")
self.playersTable.setColumnCount(4)
self.playersTable.setRowCount(0)
@@ -46,60 +36,59 @@ class Ui_MainWindow(object):
self.playersTable.setHorizontalHeaderItem(2, item)
item = QtWidgets.QTableWidgetItem()
self.playersTable.setHorizontalHeaderItem(3, item)
- self.gridLayout.addWidget(self.playersTable, 1, 0, 1, 1)
+ self.addPlayerBtn = QtWidgets.QPushButton(parent=self.playersTab)
+ self.addPlayerBtn.setGeometry(QtCore.QRect(20, 20, 75, 23))
+ self.addPlayerBtn.setObjectName("addPlayerBtn")
icon1 = QtGui.QIcon()
icon1.addPixmap(QtGui.QPixmap(".\\src\\warchron\\view\\ui\\../resources/users.png"), QtGui.QIcon.Mode.Normal, QtGui.QIcon.State.Off)
self.tabWidget.addTab(self.playersTab, icon1, "")
self.warsTab = QtWidgets.QWidget()
self.warsTab.setObjectName("warsTab")
- self.verticalLayout_3 = QtWidgets.QVBoxLayout(self.warsTab)
- self.verticalLayout_3.setObjectName("verticalLayout_3")
- self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_2.setObjectName("horizontalLayout_2")
+ self.warsTree = QtWidgets.QTreeWidget(parent=self.warsTab)
+ self.warsTree.setGeometry(QtCore.QRect(10, 60, 211, 431))
+ self.warsTree.setObjectName("warsTree")
self.addWarBtn = QtWidgets.QPushButton(parent=self.warsTab)
+ self.addWarBtn.setGeometry(QtCore.QRect(20, 20, 75, 23))
self.addWarBtn.setObjectName("addWarBtn")
- self.horizontalLayout_2.addWidget(self.addWarBtn)
self.addCampaignBtn = QtWidgets.QPushButton(parent=self.warsTab)
self.addCampaignBtn.setEnabled(False)
+ self.addCampaignBtn.setGeometry(QtCore.QRect(110, 20, 91, 23))
self.addCampaignBtn.setObjectName("addCampaignBtn")
- self.horizontalLayout_2.addWidget(self.addCampaignBtn)
self.addRoundBtn = QtWidgets.QPushButton(parent=self.warsTab)
self.addRoundBtn.setEnabled(False)
+ self.addRoundBtn.setGeometry(QtCore.QRect(220, 20, 91, 23))
self.addRoundBtn.setObjectName("addRoundBtn")
- self.horizontalLayout_2.addWidget(self.addRoundBtn)
- spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
- self.horizontalLayout_2.addItem(spacerItem1)
- self.verticalLayout_3.addLayout(self.horizontalLayout_2)
- self.horizontalLayout_6 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_6.setObjectName("horizontalLayout_6")
- self.warsTree = QtWidgets.QTreeWidget(parent=self.warsTab)
- self.warsTree.setObjectName("warsTree")
- self.horizontalLayout_6.addWidget(self.warsTree)
self.selectedDetailsStack = QtWidgets.QStackedWidget(parent=self.warsTab)
+ self.selectedDetailsStack.setGeometry(QtCore.QRect(239, 59, 511, 431))
self.selectedDetailsStack.setObjectName("selectedDetailsStack")
self.pageEmpty = QtWidgets.QWidget()
self.pageEmpty.setObjectName("pageEmpty")
- self.verticalLayout_4 = QtWidgets.QVBoxLayout(self.pageEmpty)
- self.verticalLayout_4.setObjectName("verticalLayout_4")
- self.horizontalLayout_7 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_7.setSizeConstraint(QtWidgets.QLayout.SizeConstraint.SetDefaultConstraint)
- self.horizontalLayout_7.setObjectName("horizontalLayout_7")
- spacerItem2 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
- self.horizontalLayout_7.addItem(spacerItem2)
self.labelSelect = QtWidgets.QLabel(parent=self.pageEmpty)
+ self.labelSelect.setGeometry(QtCore.QRect(110, 30, 301, 51))
self.labelSelect.setObjectName("labelSelect")
- self.horizontalLayout_7.addWidget(self.labelSelect)
- spacerItem3 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
- self.horizontalLayout_7.addItem(spacerItem3)
- self.verticalLayout_4.addLayout(self.horizontalLayout_7)
self.selectedDetailsStack.addWidget(self.pageEmpty)
self.pageWar = QtWidgets.QWidget()
self.pageWar.setObjectName("pageWar")
- self.gridLayout_3 = QtWidgets.QGridLayout(self.pageWar)
- self.gridLayout_3.setObjectName("gridLayout_3")
- self.horizontalLayout_10 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_10.setObjectName("horizontalLayout_10")
+ self.warName = QtWidgets.QLabel(parent=self.pageWar)
+ self.warName.setGeometry(QtCore.QRect(10, 10, 241, 16))
+ font = QtGui.QFont()
+ font.setPointSize(12)
+ self.warName.setFont(font)
+ self.warName.setObjectName("warName")
+ self.warYear = QtWidgets.QLabel(parent=self.pageWar)
+ self.warYear.setGeometry(QtCore.QRect(280, 10, 71, 16))
+ font = QtGui.QFont()
+ font.setPointSize(12)
+ self.warYear.setFont(font)
+ self.warYear.setObjectName("warYear")
+ self.labelParticipants = QtWidgets.QLabel(parent=self.pageWar)
+ self.labelParticipants.setGeometry(QtCore.QRect(10, 150, 111, 16))
+ self.labelParticipants.setObjectName("labelParticipants")
+ self.addWarParticipantBtn = QtWidgets.QPushButton(parent=self.pageWar)
+ self.addWarParticipantBtn.setGeometry(QtCore.QRect(420, 270, 81, 23))
+ self.addWarParticipantBtn.setObjectName("addWarParticipantBtn")
self.warParticipantsTable = QtWidgets.QTableWidget(parent=self.pageWar)
+ self.warParticipantsTable.setGeometry(QtCore.QRect(10, 170, 401, 211))
self.warParticipantsTable.setObjectName("warParticipantsTable")
self.warParticipantsTable.setColumnCount(5)
self.warParticipantsTable.setRowCount(0)
@@ -113,14 +102,12 @@ class Ui_MainWindow(object):
self.warParticipantsTable.setHorizontalHeaderItem(3, item)
item = QtWidgets.QTableWidgetItem()
self.warParticipantsTable.setHorizontalHeaderItem(4, item)
- self.horizontalLayout_10.addWidget(self.warParticipantsTable)
- self.addWarParticipantBtn = QtWidgets.QPushButton(parent=self.pageWar)
- self.addWarParticipantBtn.setObjectName("addWarParticipantBtn")
- self.horizontalLayout_10.addWidget(self.addWarParticipantBtn)
- self.gridLayout_3.addLayout(self.horizontalLayout_10, 4, 0, 1, 4)
- self.horizontalLayout_9 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_9.setObjectName("horizontalLayout_9")
+ self.endWarBtn = QtWidgets.QPushButton(parent=self.pageWar)
+ self.endWarBtn.setEnabled(True)
+ self.endWarBtn.setGeometry(QtCore.QRect(230, 400, 61, 23))
+ self.endWarBtn.setObjectName("endWarBtn")
self.objectivesTable = QtWidgets.QTableWidget(parent=self.pageWar)
+ self.objectivesTable.setGeometry(QtCore.QRect(10, 60, 401, 71))
self.objectivesTable.setObjectName("objectivesTable")
self.objectivesTable.setColumnCount(2)
self.objectivesTable.setRowCount(0)
@@ -128,62 +115,55 @@ class Ui_MainWindow(object):
self.objectivesTable.setHorizontalHeaderItem(0, item)
item = QtWidgets.QTableWidgetItem()
self.objectivesTable.setHorizontalHeaderItem(1, item)
- self.horizontalLayout_9.addWidget(self.objectivesTable)
+ self.labelObjectives = QtWidgets.QLabel(parent=self.pageWar)
+ self.labelObjectives.setGeometry(QtCore.QRect(10, 40, 111, 20))
+ self.labelObjectives.setObjectName("labelObjectives")
self.addObjectiveBtn = QtWidgets.QPushButton(parent=self.pageWar)
self.addObjectiveBtn.setEnabled(True)
+ self.addObjectiveBtn.setGeometry(QtCore.QRect(420, 80, 91, 23))
font = QtGui.QFont()
font.setPointSize(10)
self.addObjectiveBtn.setFont(font)
self.addObjectiveBtn.setObjectName("addObjectiveBtn")
- self.horizontalLayout_9.addWidget(self.addObjectiveBtn)
- self.gridLayout_3.addLayout(self.horizontalLayout_9, 2, 0, 1, 4)
- spacerItem4 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
- self.gridLayout_3.addItem(spacerItem4, 5, 3, 1, 1)
- self.endWarBtn = QtWidgets.QPushButton(parent=self.pageWar)
- self.endWarBtn.setEnabled(True)
- self.endWarBtn.setObjectName("endWarBtn")
- self.gridLayout_3.addWidget(self.endWarBtn, 5, 1, 1, 1)
- self.labelParticipants = QtWidgets.QLabel(parent=self.pageWar)
- self.labelParticipants.setObjectName("labelParticipants")
- self.gridLayout_3.addWidget(self.labelParticipants, 3, 0, 1, 1)
- self.labelObjectives = QtWidgets.QLabel(parent=self.pageWar)
- self.labelObjectives.setObjectName("labelObjectives")
- self.gridLayout_3.addWidget(self.labelObjectives, 1, 0, 1, 1)
- self.horizontalLayout_8 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_8.setObjectName("horizontalLayout_8")
- self.warName = QtWidgets.QLabel(parent=self.pageWar)
- font = QtGui.QFont()
- font.setPointSize(12)
- self.warName.setFont(font)
- self.warName.setObjectName("warName")
- self.horizontalLayout_8.addWidget(self.warName)
- self.warYear = QtWidgets.QLabel(parent=self.pageWar)
- font = QtGui.QFont()
- font.setPointSize(12)
- self.warYear.setFont(font)
- self.warYear.setObjectName("warYear")
- self.horizontalLayout_8.addWidget(self.warYear)
- self.gridLayout_3.addLayout(self.horizontalLayout_8, 0, 0, 1, 4)
self.selectedDetailsStack.addWidget(self.pageWar)
self.pageCampaign = QtWidgets.QWidget()
self.pageCampaign.setObjectName("pageCampaign")
- self.gridLayout_4 = QtWidgets.QGridLayout(self.pageCampaign)
- self.gridLayout_4.setObjectName("gridLayout_4")
+ self.campaignName = QtWidgets.QLabel(parent=self.pageCampaign)
+ self.campaignName.setGeometry(QtCore.QRect(10, 10, 241, 16))
+ font = QtGui.QFont()
+ font.setPointSize(12)
+ self.campaignName.setFont(font)
+ self.campaignName.setObjectName("campaignName")
self.labelSectors = QtWidgets.QLabel(parent=self.pageCampaign)
+ self.labelSectors.setGeometry(QtCore.QRect(10, 40, 91, 16))
self.labelSectors.setObjectName("labelSectors")
- self.gridLayout_4.addWidget(self.labelSectors, 1, 0, 1, 1)
+ self.addCampaignParticipantBtn = QtWidgets.QPushButton(parent=self.pageCampaign)
+ self.addCampaignParticipantBtn.setGeometry(QtCore.QRect(420, 270, 75, 23))
+ self.addCampaignParticipantBtn.setObjectName("addCampaignParticipantBtn")
+ self.campaignMonth = QtWidgets.QLabel(parent=self.pageCampaign)
+ self.campaignMonth.setGeometry(QtCore.QRect(280, 10, 121, 16))
+ font = QtGui.QFont()
+ font.setPointSize(12)
+ self.campaignMonth.setFont(font)
+ self.campaignMonth.setObjectName("campaignMonth")
self.labelParticipants_2 = QtWidgets.QLabel(parent=self.pageCampaign)
+ self.labelParticipants_2.setGeometry(QtCore.QRect(10, 180, 47, 13))
self.labelParticipants_2.setObjectName("labelParticipants_2")
- self.gridLayout_4.addWidget(self.labelParticipants_2, 3, 0, 1, 1)
- self.endCampaignBtn = QtWidgets.QPushButton(parent=self.pageCampaign)
- self.endCampaignBtn.setEnabled(True)
- self.endCampaignBtn.setObjectName("endCampaignBtn")
- self.gridLayout_4.addWidget(self.endCampaignBtn, 5, 1, 1, 1)
- spacerItem5 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
- self.gridLayout_4.addItem(spacerItem5, 5, 2, 1, 1)
- self.horizontalLayout_12 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_12.setObjectName("horizontalLayout_12")
+ self.campaignParticipantsTable = QtWidgets.QTableWidget(parent=self.pageCampaign)
+ self.campaignParticipantsTable.setGeometry(QtCore.QRect(10, 200, 401, 181))
+ self.campaignParticipantsTable.setObjectName("campaignParticipantsTable")
+ self.campaignParticipantsTable.setColumnCount(4)
+ self.campaignParticipantsTable.setRowCount(0)
+ item = QtWidgets.QTableWidgetItem()
+ self.campaignParticipantsTable.setHorizontalHeaderItem(0, item)
+ item = QtWidgets.QTableWidgetItem()
+ self.campaignParticipantsTable.setHorizontalHeaderItem(1, item)
+ item = QtWidgets.QTableWidgetItem()
+ self.campaignParticipantsTable.setHorizontalHeaderItem(2, item)
+ item = QtWidgets.QTableWidgetItem()
+ self.campaignParticipantsTable.setHorizontalHeaderItem(3, item)
self.sectorsTable = QtWidgets.QTableWidget(parent=self.pageCampaign)
+ self.sectorsTable.setGeometry(QtCore.QRect(10, 60, 401, 101))
self.sectorsTable.setObjectName("sectorsTable")
self.sectorsTable.setColumnCount(5)
self.sectorsTable.setRowCount(0)
@@ -197,86 +177,22 @@ class Ui_MainWindow(object):
self.sectorsTable.setHorizontalHeaderItem(3, item)
item = QtWidgets.QTableWidgetItem()
self.sectorsTable.setHorizontalHeaderItem(4, item)
- self.horizontalLayout_12.addWidget(self.sectorsTable)
self.addSectorBtn = QtWidgets.QPushButton(parent=self.pageCampaign)
self.addSectorBtn.setEnabled(True)
+ self.addSectorBtn.setGeometry(QtCore.QRect(420, 110, 71, 23))
self.addSectorBtn.setObjectName("addSectorBtn")
- self.horizontalLayout_12.addWidget(self.addSectorBtn)
- self.gridLayout_4.addLayout(self.horizontalLayout_12, 4, 0, 1, 3)
- self.horizontalLayout_13 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_13.setObjectName("horizontalLayout_13")
- self.campaignParticipantsTable = QtWidgets.QTableWidget(parent=self.pageCampaign)
- self.campaignParticipantsTable.setObjectName("campaignParticipantsTable")
- self.campaignParticipantsTable.setColumnCount(5)
- self.campaignParticipantsTable.setRowCount(0)
- item = QtWidgets.QTableWidgetItem()
- self.campaignParticipantsTable.setHorizontalHeaderItem(0, item)
- item = QtWidgets.QTableWidgetItem()
- self.campaignParticipantsTable.setHorizontalHeaderItem(1, item)
- item = QtWidgets.QTableWidgetItem()
- self.campaignParticipantsTable.setHorizontalHeaderItem(2, item)
- item = QtWidgets.QTableWidgetItem()
- self.campaignParticipantsTable.setHorizontalHeaderItem(3, item)
- item = QtWidgets.QTableWidgetItem()
- self.campaignParticipantsTable.setHorizontalHeaderItem(4, item)
- self.horizontalLayout_13.addWidget(self.campaignParticipantsTable)
- self.addCampaignParticipantBtn = QtWidgets.QPushButton(parent=self.pageCampaign)
- self.addCampaignParticipantBtn.setObjectName("addCampaignParticipantBtn")
- self.horizontalLayout_13.addWidget(self.addCampaignParticipantBtn)
- self.gridLayout_4.addLayout(self.horizontalLayout_13, 2, 0, 1, 3)
- self.horizontalLayout_11 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_11.setObjectName("horizontalLayout_11")
- self.campaignName = QtWidgets.QLabel(parent=self.pageCampaign)
- font = QtGui.QFont()
- font.setPointSize(12)
- self.campaignName.setFont(font)
- self.campaignName.setObjectName("campaignName")
- self.horizontalLayout_11.addWidget(self.campaignName)
- self.campaignMonth = QtWidgets.QLabel(parent=self.pageCampaign)
- font = QtGui.QFont()
- font.setPointSize(12)
- self.campaignMonth.setFont(font)
- self.campaignMonth.setObjectName("campaignMonth")
- self.horizontalLayout_11.addWidget(self.campaignMonth)
- self.gridLayout_4.addLayout(self.horizontalLayout_11, 0, 0, 1, 3)
+ self.endCampaignBtn = QtWidgets.QPushButton(parent=self.pageCampaign)
+ self.endCampaignBtn.setEnabled(True)
+ self.endCampaignBtn.setGeometry(QtCore.QRect(210, 400, 91, 23))
+ self.endCampaignBtn.setObjectName("endCampaignBtn")
self.selectedDetailsStack.addWidget(self.pageCampaign)
self.pageRound = QtWidgets.QWidget()
self.pageRound.setObjectName("pageRound")
- self.gridLayout_5 = QtWidgets.QGridLayout(self.pageRound)
- self.gridLayout_5.setObjectName("gridLayout_5")
self.labelChoices = QtWidgets.QLabel(parent=self.pageRound)
+ self.labelChoices.setGeometry(QtCore.QRect(10, 40, 91, 16))
self.labelChoices.setObjectName("labelChoices")
- self.gridLayout_5.addWidget(self.labelChoices, 1, 0, 1, 1)
- self.labelBattles = QtWidgets.QLabel(parent=self.pageRound)
- self.labelBattles.setObjectName("labelBattles")
- self.gridLayout_5.addWidget(self.labelBattles, 3, 0, 1, 1)
- self.endRoundBtn = QtWidgets.QPushButton(parent=self.pageRound)
- self.endRoundBtn.setEnabled(True)
- self.endRoundBtn.setObjectName("endRoundBtn")
- self.gridLayout_5.addWidget(self.endRoundBtn, 5, 1, 1, 1)
- spacerItem6 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
- self.gridLayout_5.addItem(spacerItem6, 5, 2, 1, 1)
- self.horizontalLayout_15 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_15.setObjectName("horizontalLayout_15")
- self.battlesTable = QtWidgets.QTableWidget(parent=self.pageRound)
- self.battlesTable.setObjectName("battlesTable")
- self.battlesTable.setColumnCount(3)
- self.battlesTable.setRowCount(0)
- item = QtWidgets.QTableWidgetItem()
- self.battlesTable.setHorizontalHeaderItem(0, item)
- item = QtWidgets.QTableWidgetItem()
- self.battlesTable.setHorizontalHeaderItem(1, item)
- item = QtWidgets.QTableWidgetItem()
- self.battlesTable.setHorizontalHeaderItem(2, item)
- self.horizontalLayout_15.addWidget(self.battlesTable)
- self.enterResultBtn = QtWidgets.QPushButton(parent=self.pageRound)
- self.enterResultBtn.setEnabled(True)
- self.enterResultBtn.setObjectName("enterResultBtn")
- self.horizontalLayout_15.addWidget(self.enterResultBtn)
- self.gridLayout_5.addLayout(self.horizontalLayout_15, 4, 0, 1, 3)
- self.horizontalLayout_16 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_16.setObjectName("horizontalLayout_16")
self.choicesTable = QtWidgets.QTableWidget(parent=self.pageRound)
+ self.choicesTable.setGeometry(QtCore.QRect(10, 60, 301, 141))
self.choicesTable.setObjectName("choicesTable")
self.choicesTable.setColumnCount(3)
self.choicesTable.setRowCount(0)
@@ -286,31 +202,45 @@ class Ui_MainWindow(object):
self.choicesTable.setHorizontalHeaderItem(1, item)
item = QtWidgets.QTableWidgetItem()
self.choicesTable.setHorizontalHeaderItem(2, item)
- self.horizontalLayout_16.addWidget(self.choicesTable)
- self.resolvePairingBtn = QtWidgets.QPushButton(parent=self.pageRound)
- self.resolvePairingBtn.setEnabled(True)
- self.resolvePairingBtn.setObjectName("resolvePairingBtn")
- self.horizontalLayout_16.addWidget(self.resolvePairingBtn)
- self.gridLayout_5.addLayout(self.horizontalLayout_16, 2, 0, 1, 3)
- self.horizontalLayout_14 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_14.setObjectName("horizontalLayout_14")
self.roundNb = QtWidgets.QLabel(parent=self.pageRound)
+ self.roundNb.setGeometry(QtCore.QRect(10, 10, 241, 16))
font = QtGui.QFont()
font.setPointSize(12)
self.roundNb.setFont(font)
self.roundNb.setObjectName("roundNb")
- self.horizontalLayout_14.addWidget(self.roundNb)
- self.gridLayout_5.addLayout(self.horizontalLayout_14, 0, 0, 1, 3)
+ self.resolvePairingBtn = QtWidgets.QPushButton(parent=self.pageRound)
+ self.resolvePairingBtn.setEnabled(True)
+ self.resolvePairingBtn.setGeometry(QtCore.QRect(320, 110, 91, 23))
+ self.resolvePairingBtn.setObjectName("resolvePairingBtn")
+ self.battlesTable = QtWidgets.QTableWidget(parent=self.pageRound)
+ self.battlesTable.setGeometry(QtCore.QRect(10, 240, 301, 111))
+ self.battlesTable.setObjectName("battlesTable")
+ self.battlesTable.setColumnCount(3)
+ self.battlesTable.setRowCount(0)
+ item = QtWidgets.QTableWidgetItem()
+ self.battlesTable.setHorizontalHeaderItem(0, item)
+ item = QtWidgets.QTableWidgetItem()
+ self.battlesTable.setHorizontalHeaderItem(1, item)
+ item = QtWidgets.QTableWidgetItem()
+ self.battlesTable.setHorizontalHeaderItem(2, item)
+ self.enterResultBtn = QtWidgets.QPushButton(parent=self.pageRound)
+ self.enterResultBtn.setEnabled(True)
+ self.enterResultBtn.setGeometry(QtCore.QRect(320, 290, 91, 23))
+ self.enterResultBtn.setObjectName("enterResultBtn")
+ self.endRoundBtn = QtWidgets.QPushButton(parent=self.pageRound)
+ self.endRoundBtn.setEnabled(True)
+ self.endRoundBtn.setGeometry(QtCore.QRect(220, 400, 71, 23))
+ self.endRoundBtn.setObjectName("endRoundBtn")
+ self.labelBattles = QtWidgets.QLabel(parent=self.pageRound)
+ self.labelBattles.setGeometry(QtCore.QRect(10, 220, 91, 16))
+ self.labelBattles.setObjectName("labelBattles")
self.selectedDetailsStack.addWidget(self.pageRound)
- self.horizontalLayout_6.addWidget(self.selectedDetailsStack)
- self.verticalLayout_3.addLayout(self.horizontalLayout_6)
icon2 = QtGui.QIcon()
icon2.addPixmap(QtGui.QPixmap(".\\src\\warchron\\view\\ui\\../resources/swords-small.png"), QtGui.QIcon.Mode.Normal, QtGui.QIcon.State.Off)
self.tabWidget.addTab(self.warsTab, icon2, "")
- self.verticalLayout.addWidget(self.tabWidget)
MainWindow.setCentralWidget(self.centralwidget)
self.menubar = QtWidgets.QMenuBar(parent=MainWindow)
- self.menubar.setGeometry(QtCore.QRect(0, 0, 1288, 31))
+ self.menubar.setGeometry(QtCore.QRect(0, 0, 800, 21))
self.menubar.setObjectName("menubar")
self.menuFile = QtWidgets.QMenu(parent=self.menubar)
self.menuFile.setObjectName("menuFile")
@@ -385,13 +315,12 @@ class Ui_MainWindow(object):
self.retranslateUi(MainWindow)
self.tabWidget.setCurrentIndex(1)
- self.selectedDetailsStack.setCurrentIndex(3)
+ self.selectedDetailsStack.setCurrentIndex(0)
QtCore.QMetaObject.connectSlotsByName(MainWindow)
def retranslateUi(self, MainWindow):
_translate = QtCore.QCoreApplication.translate
MainWindow.setWindowTitle(_translate("MainWindow", "WarChron"))
- self.addPlayerBtn.setText(_translate("MainWindow", "Add player"))
item = self.playersTable.horizontalHeaderItem(0)
item.setText(_translate("MainWindow", "Name"))
item = self.playersTable.horizontalHeaderItem(1)
@@ -400,11 +329,16 @@ class Ui_MainWindow(object):
item.setText(_translate("MainWindow", "Wins"))
item = self.playersTable.horizontalHeaderItem(3)
item.setText(_translate("MainWindow", "Rewards"))
+ self.addPlayerBtn.setText(_translate("MainWindow", "Add player"))
self.tabWidget.setTabText(self.tabWidget.indexOf(self.playersTab), _translate("MainWindow", "Players"))
self.addWarBtn.setText(_translate("MainWindow", "Add war"))
self.addCampaignBtn.setText(_translate("MainWindow", "Add Campaign"))
self.addRoundBtn.setText(_translate("MainWindow", "Add Round"))
self.labelSelect.setText(_translate("MainWindow", "Select an element within the tree to show/edit details."))
+ self.warName.setText(_translate("MainWindow", "warName"))
+ self.warYear.setText(_translate("MainWindow", "warYear"))
+ self.labelParticipants.setText(_translate("MainWindow", "Participants"))
+ self.addWarParticipantBtn.setText(_translate("MainWindow", "Add participant"))
item = self.warParticipantsTable.horizontalHeaderItem(0)
item.setText(_translate("MainWindow", "Name"))
item = self.warParticipantsTable.horizontalHeaderItem(1)
@@ -415,20 +349,26 @@ class Ui_MainWindow(object):
item.setText(_translate("MainWindow", "Victory pts."))
item = self.warParticipantsTable.horizontalHeaderItem(4)
item.setText(_translate("MainWindow", "Theme pts"))
- self.addWarParticipantBtn.setText(_translate("MainWindow", "Add participant"))
+ self.endWarBtn.setText(_translate("MainWindow", "End war"))
item = self.objectivesTable.horizontalHeaderItem(0)
item.setText(_translate("MainWindow", "Name"))
item = self.objectivesTable.horizontalHeaderItem(1)
item.setText(_translate("MainWindow", "Description"))
- self.addObjectiveBtn.setText(_translate("MainWindow", "Add objective"))
- self.endWarBtn.setText(_translate("MainWindow", "End war"))
- self.labelParticipants.setText(_translate("MainWindow", "Participants"))
self.labelObjectives.setText(_translate("MainWindow", "Objectives"))
- self.warName.setText(_translate("MainWindow", "warName"))
- self.warYear.setText(_translate("MainWindow", "warYear"))
+ self.addObjectiveBtn.setText(_translate("MainWindow", "Add objective"))
+ self.campaignName.setText(_translate("MainWindow", "campaignName"))
self.labelSectors.setText(_translate("MainWindow", "Sectors"))
+ self.addCampaignParticipantBtn.setText(_translate("MainWindow", "Add participant"))
+ self.campaignMonth.setText(_translate("MainWindow", "campaignMonth"))
self.labelParticipants_2.setText(_translate("MainWindow", "Participants"))
- self.endCampaignBtn.setText(_translate("MainWindow", "End campaign"))
+ item = self.campaignParticipantsTable.horizontalHeaderItem(0)
+ item.setText(_translate("MainWindow", "Name"))
+ item = self.campaignParticipantsTable.horizontalHeaderItem(1)
+ item.setText(_translate("MainWindow", "Leader"))
+ item = self.campaignParticipantsTable.horizontalHeaderItem(2)
+ item.setText(_translate("MainWindow", "Victory pts."))
+ item = self.campaignParticipantsTable.horizontalHeaderItem(3)
+ item.setText(_translate("MainWindow", "Theme pts."))
item = self.sectorsTable.horizontalHeaderItem(0)
item.setText(_translate("MainWindow", "Name"))
item = self.sectorsTable.horizontalHeaderItem(1)
@@ -440,22 +380,16 @@ class Ui_MainWindow(object):
item = self.sectorsTable.horizontalHeaderItem(4)
item.setText(_translate("MainWindow", "Influence imp."))
self.addSectorBtn.setText(_translate("MainWindow", "Add Sector"))
- item = self.campaignParticipantsTable.horizontalHeaderItem(0)
- item.setText(_translate("MainWindow", "Name"))
- item = self.campaignParticipantsTable.horizontalHeaderItem(1)
- item.setText(_translate("MainWindow", "Leader"))
- item = self.campaignParticipantsTable.horizontalHeaderItem(2)
- item.setText(_translate("MainWindow", "Theme"))
- item = self.campaignParticipantsTable.horizontalHeaderItem(3)
- item.setText(_translate("MainWindow", "Victory pts."))
- item = self.campaignParticipantsTable.horizontalHeaderItem(4)
- item.setText(_translate("MainWindow", "Theme pts."))
- self.addCampaignParticipantBtn.setText(_translate("MainWindow", "Add participant"))
- self.campaignName.setText(_translate("MainWindow", "campaignName"))
- self.campaignMonth.setText(_translate("MainWindow", "campaignMonth"))
+ self.endCampaignBtn.setText(_translate("MainWindow", "End campaign"))
self.labelChoices.setText(_translate("MainWindow", "Choices"))
- self.labelBattles.setText(_translate("MainWindow", "Battles"))
- self.endRoundBtn.setText(_translate("MainWindow", "End round"))
+ item = self.choicesTable.horizontalHeaderItem(0)
+ item.setText(_translate("MainWindow", "Player"))
+ item = self.choicesTable.horizontalHeaderItem(1)
+ item.setText(_translate("MainWindow", "Prioritary"))
+ item = self.choicesTable.horizontalHeaderItem(2)
+ item.setText(_translate("MainWindow", "Secondary"))
+ self.roundNb.setText(_translate("MainWindow", "Round Nb"))
+ self.resolvePairingBtn.setText(_translate("MainWindow", "Resolve pairing"))
item = self.battlesTable.horizontalHeaderItem(0)
item.setText(_translate("MainWindow", "Sector"))
item = self.battlesTable.horizontalHeaderItem(1)
@@ -463,14 +397,8 @@ class Ui_MainWindow(object):
item = self.battlesTable.horizontalHeaderItem(2)
item.setText(_translate("MainWindow", "Player 2"))
self.enterResultBtn.setText(_translate("MainWindow", "Enter results"))
- item = self.choicesTable.horizontalHeaderItem(0)
- item.setText(_translate("MainWindow", "Player"))
- item = self.choicesTable.horizontalHeaderItem(1)
- item.setText(_translate("MainWindow", "Prioritary"))
- item = self.choicesTable.horizontalHeaderItem(2)
- item.setText(_translate("MainWindow", "Secondary"))
- self.resolvePairingBtn.setText(_translate("MainWindow", "Resolve pairing"))
- self.roundNb.setText(_translate("MainWindow", "Round Nb"))
+ self.endRoundBtn.setText(_translate("MainWindow", "End round"))
+ self.labelBattles.setText(_translate("MainWindow", "Battles"))
self.tabWidget.setTabText(self.tabWidget.indexOf(self.warsTab), _translate("MainWindow", "Wars"))
self.menuFile.setTitle(_translate("MainWindow", "File"))
self.menuEdit.setTitle(_translate("MainWindow", "Edit"))
diff --git a/src/warchron/view/ui/ui_main_window.ui b/src/warchron/view/ui/ui_main_window.ui
index 5c4df48..2cb8313 100644
--- a/src/warchron/view/ui/ui_main_window.ui
+++ b/src/warchron/view/ui/ui_main_window.ui
@@ -6,8 +6,8 @@
0
0
- 1288
- 817
+ 800
+ 600
@@ -18,618 +18,663 @@
../resources/warchron_logo.png../resources/warchron_logo.png
-
- -
-
-
- 1
+
+
+
+ 16
+ 9
+ 771
+ 531
+
+
+
+ 1
+
+
+
+
+ ../resources/users.png../resources/users.png
+
+
+ Players
+
+
+
+
+ 10
+ 60
+ 741
+ 431
+
-
-
-
- ../resources/users.png../resources/users.png
-
-
- Players
-
-
-
-
-
-
-
-
-
- Add player
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
-
-
- -
-
-
-
- Name
-
-
-
-
- Wars
-
-
-
-
- Wins
-
-
-
-
- Rewards
-
-
-
-
-
-
-
-
-
- ../resources/swords-small.png../resources/swords-small.png
-
-
+
+
+ Name
+
+
+
+
Wars
-
-
- -
-
-
-
-
-
- Add war
-
-
-
- -
-
-
- false
-
-
- Add Campaign
-
-
-
- -
-
-
- false
-
-
- Add Round
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
- 3
-
-
-
-
-
-
-
- QLayout::SetDefaultConstraint
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
- -
-
-
- Select an element within the tree to show/edit details.
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
- Name
-
-
-
-
- Faction
-
-
-
-
- Campaigns
-
-
-
-
- Victory pts.
-
-
-
-
- Theme pts
-
-
-
-
- -
-
-
- Add participant
-
-
-
-
-
- -
-
-
-
-
-
-
- Name
-
-
-
-
- Description
-
-
-
-
- -
-
-
- true
-
-
-
- 10
-
-
-
- Add objective
-
-
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
- -
-
-
- true
-
-
- End war
-
-
-
- -
-
-
- Participants
-
-
-
- -
-
-
- Objectives
-
-
-
- -
-
-
-
-
-
-
- 12
-
-
-
- warName
-
-
-
- -
-
-
-
- 12
-
-
-
- warYear
-
-
-
-
-
-
-
-
-
- -
-
-
- Sectors
-
-
-
- -
-
-
- Participants
-
-
-
- -
-
-
- true
-
-
- End campaign
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
- -
-
-
-
-
-
-
- Name
-
-
-
-
- Round
-
-
-
-
- Major obj.
-
-
-
-
- Minor opp.
-
-
-
-
- Influence imp.
-
-
-
-
- -
-
-
- true
-
-
- Add Sector
-
-
-
-
-
- -
-
-
-
-
-
-
- Name
-
-
-
-
- Leader
-
-
-
-
- Theme
-
-
-
-
- Victory pts.
-
-
-
-
- Theme pts.
-
-
-
-
- -
-
-
- Add participant
-
-
-
-
-
- -
-
-
-
-
-
-
- 12
-
-
-
- campaignName
-
-
-
- -
-
-
-
- 12
-
-
-
- campaignMonth
-
-
-
-
-
-
-
-
-
- -
-
-
- Choices
-
-
-
- -
-
-
- Battles
-
-
-
- -
-
-
- true
-
-
- End round
-
-
-
- -
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
- -
-
-
-
-
-
-
- Sector
-
-
-
-
- Player 1
-
-
-
-
- Player 2
-
-
-
-
- -
-
-
- true
-
-
- Enter results
-
-
-
-
-
- -
-
-
-
-
-
-
- Player
-
-
-
-
- Prioritary
-
-
-
-
- Secondary
-
-
-
-
- -
-
-
- true
-
-
- Resolve pairing
-
-
-
-
-
- -
-
-
-
-
-
-
- 12
-
-
-
- Round Nb
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ Wins
+
+
+
+
+ Rewards
+
+
+
+
+
+
+ 20
+ 20
+ 75
+ 23
+
+
+
+ Add player
+
+
+
+
+
+
+ ../resources/swords-small.png../resources/swords-small.png
+
+
+ Wars
+
+
+
+
+ 10
+ 60
+ 211
+ 431
+
+
+
+
+
+
+
+
+
+
+
+ 20
+ 20
+ 75
+ 23
+
+
+
+ Add war
+
+
+
+
+ false
+
+
+
+ 110
+ 20
+ 91
+ 23
+
+
+
+ Add Campaign
+
+
+
+
+ false
+
+
+
+ 220
+ 20
+ 91
+ 23
+
+
+
+ Add Round
+
+
+
+
+
+ 239
+ 59
+ 511
+ 431
+
+
+
+ 0
+
+
+
+
+
+ 110
+ 30
+ 301
+ 51
+
+
+
+ Select an element within the tree to show/edit details.
+
+
+
+
+
+
+
+ 10
+ 10
+ 241
+ 16
+
+
+
+
+ 12
+
+
+
+ warName
+
+
+
+
+
+ 280
+ 10
+ 71
+ 16
+
+
+
+
+ 12
+
+
+
+ warYear
+
+
+
+
+
+ 10
+ 150
+ 111
+ 16
+
+
+
+ Participants
+
+
+
+
+
+ 420
+ 270
+ 81
+ 23
+
+
+
+ Add participant
+
+
+
+
+
+ 10
+ 170
+ 401
+ 211
+
+
+
+
+ Name
+
+
+
+
+ Faction
+
+
+
+
+ Campaigns
+
+
+
+
+ Victory pts.
+
+
+
+
+ Theme pts
+
+
+
+
+
+ true
+
+
+
+ 230
+ 400
+ 61
+ 23
+
+
+
+ End war
+
+
+
+
+
+ 10
+ 60
+ 401
+ 71
+
+
+
+
+ Name
+
+
+
+
+ Description
+
+
+
+
+
+
+ 10
+ 40
+ 111
+ 20
+
+
+
+ Objectives
+
+
+
+
+ true
+
+
+
+ 420
+ 80
+ 91
+ 23
+
+
+
+
+ 10
+
+
+
+ Add objective
+
+
+
+
+
+
+
+ 10
+ 10
+ 241
+ 16
+
+
+
+
+ 12
+
+
+
+ campaignName
+
+
+
+
+
+ 10
+ 40
+ 91
+ 16
+
+
+
+ Sectors
+
+
+
+
+
+ 420
+ 270
+ 75
+ 23
+
+
+
+ Add participant
+
+
+
+
+
+ 280
+ 10
+ 121
+ 16
+
+
+
+
+ 12
+
+
+
+ campaignMonth
+
+
+
+
+
+ 10
+ 180
+ 47
+ 13
+
+
+
+ Participants
+
+
+
+
+
+ 10
+ 200
+ 401
+ 181
+
+
+
+
+ Name
+
+
+
+
+ Leader
+
+
+
+
+ Victory pts.
+
+
+
+
+ Theme pts.
+
+
+
+
+
+
+ 10
+ 60
+ 401
+ 101
+
+
+
+
+ Name
+
+
+
+
+ Round
+
+
+
+
+ Major obj.
+
+
+
+
+ Minor opp.
+
+
+
+
+ Influence imp.
+
+
+
+
+
+ true
+
+
+
+ 420
+ 110
+ 71
+ 23
+
+
+
+ Add Sector
+
+
+
+
+ true
+
+
+
+ 210
+ 400
+ 91
+ 23
+
+
+
+ End campaign
+
+
+
+
+
+
+
+ 10
+ 40
+ 91
+ 16
+
+
+
+ Choices
+
+
+
+
+
+ 10
+ 60
+ 301
+ 141
+
+
+
+
+ Player
+
+
+
+
+ Prioritary
+
+
+
+
+ Secondary
+
+
+
+
+
+
+ 10
+ 10
+ 241
+ 16
+
+
+
+
+ 12
+
+
+
+ Round Nb
+
+
+
+
+ true
+
+
+
+ 320
+ 110
+ 91
+ 23
+
+
+
+ Resolve pairing
+
+
+
+
+
+ 10
+ 240
+ 301
+ 111
+
+
+
+
+ Sector
+
+
+
+
+ Player 1
+
+
+
+
+ Player 2
+
+
+
+
+
+ true
+
+
+
+ 320
+ 290
+ 91
+ 23
+
+
+
+ Enter results
+
+
+
+
+ true
+
+
+
+ 220
+ 400
+ 71
+ 23
+
+
+
+ End round
+
+
+
+
+
+ 10
+ 220
+ 91
+ 16
+
+
+
+ Battles
+
+
-
-
+
+