Custom menu

Fork of Menu by Peihsun Yeh

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Selection.h Source File

Selection.h

00001 #ifndef SELECTION_H
00002 #define SELECTION_H
00003 
00004 #include "Menu.h"
00005 
00006 class Menu; 
00007 
00008 class Selection {
00009     public:
00010         Selection(FunctionPointer *fun, int, Menu *, const char *);
00011         FunctionPointer *fun;   // pointer to a function to execute
00012         const char* selText;   // selection text
00013         int pos;         // selection position
00014         Menu *childMenu; 
00015         
00016     private:
00017 
00018          
00019 };
00020 
00021 #endif