#include <PageProxy.h>
Inheritance diagram for PageProxyBase:

Public Member Functions | |
| PageProxyBase (const char *name) | |
| virtual | ~PageProxyBase () |
| virtual PageABC * | Create ()=0 |
Static Public Member Functions | |
| std::vector< const char * > | GetRegisteredNames () |
Static Public Attributes | |
| SigC::Signal1< void, const char * > | page_added |
Static Private Attributes | |
| std::vector< const char * > | fNames |
|
|
Definition at line 32 of file PageProxy.h. References fNames, and page_added. 00032 : NamedProxy(name,"Page") { 00033 std::cerr << "Page added: " << name << std::endl; 00034 00035 fNames.push_back(name); 00036 page_added.emit(name); 00037 }
|
|
|
Definition at line 38 of file PageProxy.h. 00038 {}
|
|
|
Implemented in PageProxy< T >. Referenced by PageDisplay::AddPage(), TridPageDisplay::MySpawnSinglePage(), and PageDisplay::SpawnSinglePage(). |
|
|
Definition at line 43 of file PageProxy.h. Referenced by TridPageDisplay::SetupMenus(), and PageDisplay::SetupMenus(). 00043 { return fNames; }
|
|
|
Definition at line 4 of file PageProxy.cxx. Referenced by PageProxyBase(). |
|
|
Definition at line 5 of file PageProxy.cxx. Referenced by PageProxyBase(). |
1.3.9.1