Main Page | Class Hierarchy | Compound List | File List | Compound Members | File Members

switch.h

Go to the documentation of this file.
00001 /***
00002  * This file is part of OpenHome, an open source home automation system.
00003  * Copyright (C) 2003 Jan Klötzke
00004  *
00005  * This program is free software; you can redistribute it and/or modify
00006  * it under the terms of the GNU General Public License as published by
00007  * the Free Software Foundation; either version 2 of the License, or
00008  * (at your option) any later version.
00009  *
00010  * This program is distributed in the hope that it will be useful,
00011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013  * GNU General Public License for more details.
00014  *
00015  * You should have received a copy of the GNU General Public License
00016  * along with this program; if not, write to the Free Software
00017  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00018  */
00019 
00022 #ifndef __SWITCH_H
00023 #define __SWITCH_H
00024 
00025 #include <inttypes.h>
00026 #include "net/application.h"
00027 #include "net/snt.h"
00028 #include "main/menu.h"
00029 
00030 class Switch;
00031 
00032 struct SwitchAppObj {
00033         // AppObject
00034         const param_desc_t *property_sizes;
00035         const param_desc_t *event_sizes;
00036         appObjCallback_t *Callback;
00037         // SwitchAppObj
00038         uint8_t id;
00039         snt_switch state;
00040         Switch *parent;
00041 };
00042 
00046 class Switch : public VisibleObject {
00047 private:
00048         struct SwitchAppObj *app;
00049 
00050 protected:
00051         void KeyCallback(uint8_t key);
00052 
00053 public:
00054         Switch();
00055         virtual bool Activate(void);
00056         virtual void Deactivate(void);
00057         virtual void Display(void);
00058 };
00059 
00060 
00061 #endif

Generated on Thu Oct 16 13:13:41 2003 for OpenHomeMainPanel by doxygen 1.3.3