Skip to content

Commit

Permalink
add a View menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Necktschnagge committed Mar 2, 2024
1 parent 512da3c commit 907872e
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions src/mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,24 @@
<addaction name="actionHighlightGeneratedTargetCells"/>
<addaction name="actionEnableAllMenuBarItems"/>
</widget>
<widget class="QMenu" name="menuView">
<property name="title">
<string>&amp;View</string>
</property>
<addaction name="menuPieces"/>
</widget>
<widget class="QActionGroup" name="actionGroupShapes">
<addaction name="actionBall"/>
<addaction name="actionDuck"/>
<addaction name="actionSwan"/>
<widget class="QMenu" name="menuPieces">
<property name="title">
<string>&amp;Pieces...</string>
</property>
<addaction name="actionBall"/>
<addaction name="actionDuck"/>
<addaction name="actionSwan"/>
</widget>
<widget class="QMenu" name="menuHelp">
<property name="title">
<string>&amp;Help</string>
Expand All @@ -171,6 +189,7 @@
<addaction name="menuEdit"/>
<addaction name="menuDeveloper"/>
<addaction name="menuGame"/>
<addaction name="menuView"/>
<addaction name="menuHelp"/>
</widget>
<widget class="QStatusBar" name="statusbar"/>
Expand Down Expand Up @@ -346,6 +365,39 @@
<string>F10</string>
</property>
</action>
<action name="actionBall">
<property name="enabled">
<bool>true</bool>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="text">
<string>&amp;Ball</string>
</property>
</action>
<action name="actionDuck">
<property name="enabled">
<bool>true</bool>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="text">
<string>&amp;Duck</string>
</property>
</action>
<action name="actionSwan">
<property name="enabled">
<bool>false</bool>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="text">
<string>&amp;Swan</string>
</property>
</action>
<action name="actionLicense_Information">
<property name="enabled">
<bool>true</bool>
Expand Down

0 comments on commit 907872e

Please sign in to comment.