#include "RegistryGui.h"#include <Midad/Gui/GuiGroup.h>#include <Midad/Gui/GuiMultiEntry.h>#include <Midad/Gui/GuiMainWindow.h>#include <Midad/Gui/GuiTextEntry.h>#include <Midad/Gui/GuiMenu.h>#include <sstream>#include <string>#include <sigc++/sigc++.h>#include <sigc++/class_slot.h>Go to the source code of this file.
Functions | |
| void | entry_updater (GuiTextEntry *gte, string entry) |
| string | extract_key (string label) |
|
||||||||||||
|
Definition at line 88 of file RegistryGui.cxx. Referenced by RegistryGui::SetPossiblesMenu(). 00089 {
00090 gte->SetText(entry.c_str());
00091 }
|
|
|
Definition at line 122 of file RegistryGui.cxx. Referenced by RegistryGui::SetPossibles(). 00123 {
00124 unsigned int equals = label.find("=");
00125 if (equals == string::npos) return "";
00126 return label.substr(1,equals-2);
00127 }
|
1.3.9.1