Changeset 5761
- Timestamp:
- Sep 23, 2009, 3:12:05 PM (15 years ago)
- Location:
- code/trunk/data/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/data/gui/layouts/QuestGUI.layout
r5748 r5761 12 12 <Property Name="Text" Value="Your Quests"/> 13 13 </Window> 14 15 <Window Type="TaharezLook/Button" Name="orxonox/QuestGUI/ActiveQuestsButton">16 <Property Name="UnifiedPosition" Value="{{0.11,0},{0.11,0}}"/>17 <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>18 <Property Name="Text" Value="Active Quests"/>19 <Event Name="Clicked" Function="QuestGUI.button_activeQuests_clicked"/>20 </Window>21 22 <Window Type="TaharezLook/Button" Name="orxonox/CompletedQuestsButton">23 <Property Name="UnifiedPosition" Value="{{0.43,0},{0.11,0}}"/>24 <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>25 <Property Name="Text" Value="Completed Quests"/>26 <Event Name="Clicked" Function="QuestGUI.button_activeQuests_clicked"/>27 </Window>28 29 <Window Type="TaharezLook/Button" Name="orxonox/FailedQuestsButton">30 <Property Name="UnifiedPosition" Value="{{0.74,0},{0.11,0}}"/>31 <Property Name="UnifiedSize" Value="{{0.15,0},{0.05,0}}"/>32 <Property Name="Text" Value="Failed Quests"/>33 <Event Name="Clicked" Function="QuestGUI.button_activeQuests_clicked"/>34 </Window>35 14 36 15 <Window Type="TaharezLook/Listbox" Name="orxonox/QuestGUI/QuestsList"> -
code/trunk/data/gui/scripts/QuestGUI.lua
r5756 r5761 24 24 end 25 25 26 function P:button_activeQuests_clicked(e)27 28 end29 30 function P:button_completedQuests_clicked(e)31 32 end33 34 function P:button_failedQuests_clicked(e)35 36 end37 38 26 return P 39 27
Note: See TracChangeset
for help on using the changeset viewer.