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

menu.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 __MENU_H
00023 #define __MENU_H
00024 
00025 #include <avr/pgmspace.h>
00026 #include <inttypes.h>
00027 
00028 #ifdef __cplusplus
00029 
00030 class VisibleObject;
00031 class Container;
00032 
00036 class VisibleObject {
00037 protected:
00038         uint8_t x, y;
00039         uint8_t active;
00040 public:
00041         virtual void KeyCallback(uint8_t key);
00042         virtual bool Activate(void);
00043         virtual void Deactivate(void);
00044         virtual void Display(void) = NULL;
00045         virtual void LoadProperties(uint8_t tag);
00046         virtual bool Shift(uint8_t dir);
00047 };
00048 
00052 class Container : public VisibleObject {
00053 private:
00054         uint8_t current;
00055         uint8_t count;
00056         VisibleObject **childs;
00057 
00058 protected:
00059         void AddChild(VisibleObject *child);
00060 
00061 public:
00062         Container();
00063         virtual bool Activate(void);
00064         virtual void Deactivate(void);
00065         virtual void Display(void);
00066         virtual void LoadProperties(uint8_t tag);
00067         virtual bool Shift(uint8_t dir);        
00068 };
00069 
00070 void menu_set_hook(uint8_t index, PGM_VOID_P image, VisibleObject* obj);
00071 void menu_remove_hook(uint8_t index);
00072 
00073 #endif /* __cplusplus */
00074 
00075 /***
00076  * Global methods;
00077  */
00078 
00079 #ifdef __cplusplus
00080 extern "C" {
00081 #endif
00082 
00083 void menu_init(void);
00084 void menu_process(void);
00085 
00086 #ifdef __cplusplus
00087 }
00088 #endif
00089 
00090 #endif

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