Planeshift
pawsactionlocationwindow.h
Go to the documentation of this file.
1 /*
2  * pawsactionlocationwindow.h
3  *
4  * Copyright (C) 2006 Atomic Blue (info@planeshift.it, http://www.atomicblue.org)
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation (version 2 of the License)
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16  */
17 
18 #ifndef PAWS_ACTION_LOCATION_WINDOW_HEADER
19 #define PAWS_ACTION_LOCATION_WINDOW_HEADER
20 
21 #include "paws/pawswidget.h"
22 
23 class pawsTextBox;
25 
30 {
31 public:
33  virtual ~pawsActionLocationWindow();
34 
35  bool PostSetup();
36  void HandleMessage(MsgEntry* me);
37 private:
38  pawsTextBox *name;
39  pawsMultiLineTextBox *description;
40 };
41 
43 
44 #endif
45 
The main base widget that all other widgets should inherit from.
Definition: pawswidget.h:116
Pops up a window with the actions location description upon click/view.
The structure of 1 queue entry (pointer to a message)
Definition: message.h:143
CREATE_PAWS_FACTORY(pawsActionLocationWindow)
void HandleMessage(MsgEntry *me)
virtual ~pawsActionLocationWindow()
bool PostSetup()
This is called after the widget and all of it's children have been created.
A basic text box widget.
Definition: pawstextbox.h:42