Woopsi 1.0
GUI Framework for Nintendo DS Homebrew

gadgetstyle.h

00001 #ifndef _GADGET_STYLE_H_
00002 #define _GADGET_STYLE_H_
00003 
00004 #include <nds.h>
00005 
00006 namespace WoopsiUI {
00007 
00008         class FontBase;
00009 
00013         class GadgetColours {
00014         public:
00015                 u16 back;                                       
00016                 u16 shine;                                      
00017                 u16 highlight;                          
00018                 u16 shadow;                                     
00019                 u16 fill;                                       
00020                 u16 dark;                                       
00021         };
00022 
00031         class GadgetStyle {
00032         public:
00033                 GadgetColours colours;                          
00034                 FontBase* font;                                         
00035                 FontBase* glyphFont;                            
00036         };
00037 }
00038 
00039 #endif