rename app ; add new,open,save actions

This commit is contained in:
Maxime Réaux 2026-01-19 11:16:23 +01:00
parent ee7a266e9d
commit 4d56a90790
37 changed files with 271 additions and 127 deletions

View file

@ -0,0 +1,269 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>WarChron</string>
</property>
<property name="windowIcon">
<iconset>
<normaloff>../resources/warchron_logo.png</normaloff>../resources/warchron_logo.png</iconset>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QTabWidget" name="tabWidget">
<property name="geometry">
<rect>
<x>16</x>
<y>9</y>
<width>771</width>
<height>531</height>
</rect>
</property>
<property name="currentIndex">
<number>1</number>
</property>
<widget class="QWidget" name="playersTab">
<attribute name="icon">
<iconset>
<normaloff>../resources/users.png</normaloff>../resources/users.png</iconset>
</attribute>
<attribute name="title">
<string>Players</string>
</attribute>
<widget class="QTableWidget" name="playersTable">
<property name="geometry">
<rect>
<x>10</x>
<y>60</y>
<width>741</width>
<height>431</height>
</rect>
</property>
<column>
<property name="text">
<string>Name</string>
</property>
</column>
<column>
<property name="text">
<string>ID</string>
</property>
</column>
</widget>
<widget class="QPushButton" name="addPlayerBtn">
<property name="geometry">
<rect>
<x>20</x>
<y>20</y>
<width>75</width>
<height>23</height>
</rect>
</property>
<property name="text">
<string>Add player</string>
</property>
</widget>
</widget>
<widget class="QWidget" name="warsTab">
<attribute name="icon">
<iconset>
<normaloff>../resources/swords-small.png</normaloff>../resources/swords-small.png</iconset>
</attribute>
<attribute name="title">
<string>Wars</string>
</attribute>
<widget class="QTreeWidget" name="warsTree">
<property name="geometry">
<rect>
<x>10</x>
<y>60</y>
<width>211</width>
<height>431</height>
</rect>
</property>
<column>
<property name="text">
<string notr="true">1</string>
</property>
</column>
</widget>
<widget class="QPushButton" name="addWarBtn">
<property name="geometry">
<rect>
<x>20</x>
<y>20</y>
<width>75</width>
<height>23</height>
</rect>
</property>
<property name="text">
<string>Add war</string>
</property>
</widget>
<widget class="QPushButton" name="addCampaignBtn">
<property name="enabled">
<bool>false</bool>
</property>
<property name="geometry">
<rect>
<x>110</x>
<y>20</y>
<width>91</width>
<height>23</height>
</rect>
</property>
<property name="text">
<string>Add Campaign</string>
</property>
</widget>
</widget>
</widget>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>22</height>
</rect>
</property>
<widget class="QMenu" name="menuFile">
<property name="title">
<string>File</string>
</property>
<addaction name="actionNew"/>
<addaction name="actionOpen"/>
<addaction name="actionSave"/>
<addaction name="actionSave_as"/>
<addaction name="separator"/>
<addaction name="actionExport"/>
<addaction name="separator"/>
<addaction name="actionExit"/>
</widget>
<widget class="QMenu" name="menuEdit">
<property name="title">
<string>Edit</string>
</property>
<addaction name="actionUndo"/>
<addaction name="actionRedo"/>
</widget>
<widget class="QMenu" name="menuHelp">
<property name="title">
<string>Help</string>
</property>
<addaction name="actionAbout"/>
</widget>
<addaction name="menuFile"/>
<addaction name="menuEdit"/>
<addaction name="menuHelp"/>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<action name="actionNew">
<property name="icon">
<iconset>
<normaloff>../resources/document.png</normaloff>../resources/document.png</iconset>
</property>
<property name="text">
<string>New</string>
</property>
<property name="shortcut">
<string>Ctrl+N</string>
</property>
</action>
<action name="actionOpen">
<property name="icon">
<iconset>
<normaloff>../resources/folder.png</normaloff>../resources/folder.png</iconset>
</property>
<property name="text">
<string>Open</string>
</property>
<property name="shortcut">
<string>Ctrl+O</string>
</property>
</action>
<action name="actionSave">
<property name="icon">
<iconset>
<normaloff>../resources/disk.png</normaloff>../resources/disk.png</iconset>
</property>
<property name="text">
<string>Save</string>
</property>
<property name="shortcut">
<string>Ctrl+S</string>
</property>
</action>
<action name="actionExit">
<property name="icon">
<iconset>
<normaloff>../resources/door--arrow.png</normaloff>../resources/door--arrow.png</iconset>
</property>
<property name="text">
<string>Exit</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+Q</string>
</property>
</action>
<action name="actionUndo">
<property name="icon">
<iconset>
<normaloff>../resources/arrow-curve-180-left.png</normaloff>../resources/arrow-curve-180-left.png</iconset>
</property>
<property name="text">
<string>Undo</string>
</property>
</action>
<action name="actionRedo">
<property name="icon">
<iconset>
<normaloff>../resources/arrow-curve.png</normaloff>../resources/arrow-curve.png</iconset>
</property>
<property name="text">
<string>Redo</string>
</property>
</action>
<action name="actionAbout">
<property name="icon">
<iconset>
<normaloff>../resources/question.png</normaloff>../resources/question.png</iconset>
</property>
<property name="text">
<string>About</string>
</property>
</action>
<action name="actionExport">
<property name="enabled">
<bool>false</bool>
</property>
<property name="icon">
<iconset>
<normaloff>../resources/notebook--arrow.png</normaloff>../resources/notebook--arrow.png</iconset>
</property>
<property name="text">
<string>Export</string>
</property>
</action>
<action name="actionSave_as">
<property name="icon">
<iconset>
<normaloff>../resources/disk--pencil.png</normaloff>../resources/disk--pencil.png</iconset>
</property>
<property name="text">
<string>Save as...</string>
</property>
</action>
</widget>
<resources/>
<connections/>
</ui>