Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

Midad/MultiPage/GfxDigitListMenu.cxx

Go to the documentation of this file.
00001 #include "GfxDigitListMenu.h"
00002 #include "GfxDigitList.h"
00003 #include "GfxProxy.h"
00004 
00005 #include "MultiPage.h"
00006 
00007 #include <sigc++/sigc++.h>
00008 #include <sigc++/class_slot.h>
00009 using namespace SigC;
00010 
00011 #include <list>
00012 #include <iostream>
00013 using namespace std;
00014 
00015 extern GfxProxy<GfxDigitList> gsGfxDigitListProxy;
00016 
00020 GuiMenu* GfxDigitListMenu::MakeMenu(MultiPage* /*mp*/)
00021 {
00022     GuiMenu::GuiMenuList::iterator mit;
00023 
00024     GuiMenu* gfx_menu = new GuiMenu;
00025     mit = gfx_menu->Add("Hide all");
00026     (*mit)->Connect(bind(slot_class(*this,&GfxDigitListMenu::HideAll),gfx_menu,mit));
00027 
00028     return gfx_menu;
00029 }
00030 
00031 void GfxDigitListMenu::HideAll(GuiMenu* menu, GuiMenu::GuiMenuList::iterator mit)
00032 {
00033     NamedFactory& nf = NamedFactory::Instance("Gfx");
00034     NamedProxy* np = nf.GetProxy("DigitList");
00035 
00036     GfxProxy<GfxDigitList>* gp = dynamic_cast<GfxProxy<GfxDigitList>*>(np);
00037     if (!gp) {
00038         cerr << "Can't get GfxDigitList proxy\n";
00039         return;
00040     }
00041 
00042     list<GfxDigitList*> dls = gp->GetInstances();
00043     list<GfxDigitList*>::iterator lit, done = dls.end();
00044 
00045     bool tf = ! menu->IsEntryChecked(mit);
00046 
00047     menu->CheckEntry(mit,tf);
00048     for (lit = dls.begin(); lit != done; ++lit)
00049         (*lit)->HideDigits(tf);
00050 }

Generated on Mon Feb 15 11:06:46 2010 for loon by  doxygen 1.3.9.1