/* * pawsilluminationwindow.cpp - Author: Keith Fulton * * Copyright (C) 2006 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 // PAWS INCLUDES #include "pawsilluminationwindow.h" #include "paws/pawstextbox.h" #include "paws/pawsmanager.h" #include "net/messages.h" #include "net/msghandler.h" #include "util/log.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// pawsIlluminationWindow::pawsIlluminationWindow() { } pawsIlluminationWindow::~pawsIlluminationWindow() { psengine->GetMsgHandler()->Unsubscribe(this,MSGTYPE_VIEW_ILLUMINATION); } bool pawsIlluminationWindow::PostSetup() { psengine->GetMsgHandler()->Subscribe(this, MSGTYPE_VIEW_ILLUMINATION); return true; } void pawsIlluminationWindow::HandleMessage( MsgEntry* me ) { Show(); psIlluminationMessage msg( me ); printf("Got Illumination: %s\n", msg.illumination.GetData() ); }