本文整理汇总了C++中Catalog::GetName方法的典型用法代码示例。如果您正苦于以下问题:C++ Catalog::GetName方法的具体用法?C++ Catalog::GetName怎么用?C++ Catalog::GetName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Catalog
的用法示例。
在下文中一共展示了Catalog::GetName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Execute
void RevertCmd::Execute () {
Editor* ed = GetEditor();
Component* comp = ed->GetComponent();
Catalog* catalog = unidraw->GetCatalog();
const char* name = catalog->GetName(comp);
ModifStatusVar* mv = (ModifStatusVar*) ed->GetState("ModifStatusVar");
if (name != nil && (mv == nil || mv->GetModifStatus())) {
char buf[CHARBUFSIZE];
strcpy(buf, name);
ConfirmDialog dialog("Really revert to last version saved?");
ed->InsertDialog(&dialog);
char confirmation = dialog.Confirm();
ed->RemoveDialog(&dialog);
if (confirmation == 'y') {
Component* orig = comp;
catalog->Forget(orig);
if (unidraw->GetCatalog()->Retrieve(buf, comp)) {
ed->SetComponent(comp);
unidraw->CloseDependents(orig);
unidraw->Update();
CompNameVar* cv = (CompNameVar*) ed->GetState("CompNameVar");
if (cv != nil) cv->SetComponent(comp);
if (mv != nil) mv->SetComponent(comp);
Component* root = orig->GetRoot();
delete root;
} else {
ConfirmDialog dialog(
"Couldn't revert! (File nonexistent?)", "Save changes?"
);
ed->InsertDialog(&dialog);
char confirmation = dialog.Confirm();
ed->RemoveDialog(&dialog);
UpdateCompNameVars();
if (mv != nil) mv->Notify();
if (confirmation == 'y') {
SaveCompAsCmd saveCompAs(ed);
saveCompAs.Execute();
}
}
}
}
}
示例2: Definition
boolean RasterCode::Definition (ostream& out) {
boolean ok = true;
const char* sfile;
IRasterComp* rastercomp = GetIRasterComp();
RasterComp* target = (RasterComp*) rastercomp->GetTarget();
RasterRect* raster = target->GetRasterRect();
SubclassNameVar* cnamer = rastercomp->GetCClassNameVar();
SubclassNameVar* gnamer = rastercomp->GetGClassNameVar();
MemberNameVar* mnamer = rastercomp->GetMemberNameVar();
const char* mname = mnamer->GetName();
const char* cname = cnamer->GetName();
const char* gname = gnamer->GetName();
if (_emitInstanceDecls || _emitGraphicState) {
ok = ok && GraphicCodeView::Definition(out);
} else if (_emitInstanceInits) {
static int raster_id;
char substName[CHARBUFSIZE];
sfile = target->GetFileName();
Catalog* catalog = unidraw->GetCatalog();
if (sfile == nil) {
sprintf(substName, "raster%d.ps", raster_id++);
sfile = substName;
}
if (!catalog->Exists(sfile)) {
char orig[CHARBUFSIZE];
const char* name = catalog->GetName(rastercomp->GetRoot());
char* dir = GetDirName(name);
char* index = strrchr(sfile, '/');
if (index == nil) {
strcpy(orig, sfile);
} else {
strcpy(orig, &index[1]);
}
strcpy(substName, dir);
strcat(substName, orig);
sfile = substName;
if (!catalog->Exists(sfile)) {
catalog->Save(target, sfile);
}
}
out << " {\n";
out << " RasterComp* " << mname << "_comp = (RasterComp*) ";
out << "ImportCmd::Import(\"" << sfile << "\");\n";
out << " Raster* " << mname << "_raster = ";
out << mname << "_comp->GetRasterRect()->GetOriginal();\n";
if (_emitGraphicComp) {
out << " " << mname << "_gr";
} else {
out << " " << mname;
}
out << " = new " << gname << "(" << mname << "_raster, ";
out << mname << "_comp->GetGraphic());\n";
out << " delete " << mname << "_comp;\n";
ok = WriteGraphicInits(raster, out);
if (_emitGraphicComp) {
out << " " << mname << " = new " << cname << "(";
out << mname << "_gr, \"" << sfile << "\");\n";
out << " " << mname << "->Update();\n";
}
out << " }\n";
} else if (_emitExpHeader) {
ok = ok && GraphicCodeView::Definition(out);
if (strcmp(gname, _classname) == 0) {
if (!_namelist->Search("raster")) {
_namelist->Append("raster");
out << "#include <InterViews/raster.h> \n";
}
}
} else {
ok = ok && GraphicCodeView::Definition(out);
}
return ok && out.good();
}
示例3: Writable
static boolean Writable (Component* comp) {
Catalog* catalog = unidraw->GetCatalog();
const char* name = catalog->GetName(comp);
return name == nil || (catalog->Exists(name) && catalog->Writable(name));
}