Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 13, 2006, 6:32:19 PM (17 years ago)
Author:
hejja
Message:

grobe version nr1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/world_entities/questGUI/quest_gui.h

    r10066 r10069  
    55#include "world_entity.h"
    66#include "glgui.h"
     7#include <glgui_image.h>
    78#include <vector>
    89
     
    2223
    2324   /** @param questName sets the name of this quest */
    24    inline void setQuestName(const std::string& questName) { this->questName = questName; }
    25    inline void setQuestDescription(const std::string& questDescription) { this->questDescription = questDescription; }
    26    inline void setQuestPicture(const std::string& questPicture) { this->questPicture = questPicture; }
    27    inline void setQuestOutline(const std::string& questOutline) { this->questOutline = questOutline; }
     25   inline void setQuestName(const std::string& questName)                { this->questName = questName; }
     26   inline void setQuestDescription(const std::string& questDescription)  { this->questDescription = questDescription; }
     27   inline void setQuestPicture(const std::string& questPicture)          { this->questPicture = questPicture; }
     28   inline void setQuestDifficulty(const std::string& questDifficulty)    { this->questDifficulty = questDifficulty; }
     29   inline void setRewardDescription(const std::string& rewardDescription){ this->rewardDescription  = rewardDescription; }
     30   inline void setRewardPicture(const std::string& rewardPicture)        { this->rewardPicture  = rewardPicture; }
    2831   void guiInit();
    2932
     
    3336    std::string             questDescription;
    3437    std::string             questPicture;
    35     std::string             questOutline;
     38    std::string             questDifficulty;
     39    std::string             rewardDescription;
     40    std::string             rewardPicture;
    3641   
     42    OrxGui::GLGuiBox*       headerBox;
     43    OrxGui::GLGuiBox*       outlineBox;
     44    OrxGui::GLGuiBox*       labelBox;
    3745    OrxGui::GLGuiBox*       questBox;
    38 
    39     OrxGui::GLGuiBox*       currentlyOpened;
     46    OrxGui::GLGuiImage*     questImage;
     47    OrxGui::GLGuiBox*       rewardBox;
     48    OrxGui::GLGuiImage*     rewardImage;
     49    OrxGui::GLGuiBox*       answerBox;
    4050
    4151    OrxSound::SoundSource*  selectorSource;
Note: See TracChangeset for help on using the changeset viewer.