/* * pawsitemdescriptionwidow.cpp - Author: Andrew Craig * * Copyright (C) 2003 Atomic Blue (info@planeshift.it, http://www.atomicblue.org) * * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation (version 2 of the License) * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */ #include #include "globals.h" // CS INCLUDES #include #include // COMMON INCLUDES #include // CLIENT INCLUDES #include "pscelclient.h" // PAWS INCLUDES #include "pawsitemdescriptionwindow.h" #include "paws/pawstextbox.h" #include "paws/pawsmanager.h" #include "net/messages.h" #include "net/msghandler.h" #include "util/log.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// pawsItemDescriptionWindow::pawsItemDescriptionWindow() { } pawsItemDescriptionWindow::~pawsItemDescriptionWindow() { if(msgHandler) { msgHandler->Unsubscribe(this,MSGTYPE_VIEW_ITEM); } } bool pawsItemDescriptionWindow::PostSetup() { msgHandler = psengine->GetMsgHandler(); if ( !msgHandler ) return false; if ( !msgHandler->Subscribe( this, MSGTYPE_VIEW_ITEM ) ) return false; // Store some of our children for easy access later on. name = dynamic_cast (FindWidget("ItemName")); if ( !name ) return false; count = dynamic_cast (FindWidget("ItemCount")); if ( !count ) return false; description = dynamic_cast (FindWidget("ItemDescription")); if ( !description ) return false; pic = dynamic_cast (FindWidget("ItemImage")); if ( !pic ) return false; return true; } void pawsItemDescriptionWindow::HandleMessage( MsgEntry* me ) { Show(); psViewItemDescription mesg( me ); description->SetText( mesg.itemDescription ); name->SetText( mesg.itemName ); if ( mesg.itemIcon != NULL ) pic->SetBackground( mesg.itemIcon ); csString countStr; countStr = "Item count: "; countStr += mesg.stackCount; count->SetText(countStr); } bool pawsItemDescriptionWindow::OnButtonPressed( int mouseButton, int keyModifier, pawsWidget* widget ) { //Since there is only one button to press we can easily just close the //window. Hide(); PawsManager::GetSingleton().SetCurrentFocusedWidget( NULL ); return true; } void pawsItemDescriptionWindow::ShowItemDescription(csString &desc, csString &itemName, csString &icon) { Show(); description->SetText( desc ); name->SetText( itemName ); pic->SetBackground( icon ); count->SetText(""); } void pawsItemDescriptionWindow::ShowItemDescription(csString &desc, csString &itemName, csString &icon, int count) { ShowItemDescription(desc,itemName,icon); csString countstr; countstr.Format("Item count: %d",count); this->count->SetText(countstr); }