高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】!!!有难度问题 关闭指定文件与插入指定文件
!!!有难度问题 关闭指定文件与插入指定文件
!!!有难度问题 关闭指定文件与插入指定文件
大家好,我想要求关闭指定的文件并且不让它提示已经修改的文件要保存,而最好是还原到原来的样子,就是不保存。
还有就插入指定dwg文件,我查了网上一个高人的做法,但是我用怎么也不对,下面的有说明
下面是我关闭指定文件的程序
const char* strname = _t("d:\\liminghua\\aa.dwg");
acapdocumentiterator* pdociterator = acdocmanager->newacapdocumentiterator();
for(; !pdociterator->done(); pdociterator->step())
{
acapdocument* pdoc; pdoc = pdociterator->document();
const char* str = null;
str = pdoc->doctitle();
if (strcmp(str, strname)==0)
{
acdocmanager->closedocument(pdoc); //这里的关闭会提示保存 }
}
我想是不是可以这样当cad弹出选择是否保存的窗口时怎么样它自动选择 “否”
下面是网上看到一个人介绍插入指定文件的做法
acad::errorstatus es;
acdbdatabase* pnewdb = new acdbdatabase(adesk::kfalse);
cstring fullfilename = _t("d:\\aa.dwg");
es=pnewdb->readdwgfile(fullfilename);
if(es!=acad::eok)
{
acutprintf("\n the %c file was not found. ",fullfilename);
delete pnewdb;
return;
}
acdbdatabase *pdb;
pdb =acdbhostapplicationservices ()->workingdatabase () ;
acgematrix3d matrix3d;
if(pdb->insert(matrix3d.kidentity, pnewdb ) != acad::eok)//在插入时出错,不知道那个
//insert是怎么用法,试过几个都不对
{
delete pdb;
}
网上的高人还介绍了第一种方法我试了也不行,
谢谢大家了,
我现在知道用
acdbdatabase extdb(adesk::kfalse);
extdb.readdwgfile(filename);
acdbdatabase *ptempdb;
extdb.wblock(ptempdb);
acdbcurdwg()->insert(acgematrix3d::kidentity,ptempdb);
用这个可以插入指定文件到当前窗口了,那我想问的是,怎么将原来文件中有的实体全部清空啊,或是隐藏。还有那个插入的位置怎么设定啊?还有怎么将一个文件设了当前窗口啊?
re: 插入的位置怎么设定
// (transx, transy): coordinate of the point in the dwg to be inserted,
// this point will become (0,0) in new dwg
// rot: angle in degree; a line of this angle will become 0 degree in new dwg.
//
acgematrix3d transmx = acgematrix3d::kidentity;
acgematrix3d rotatmx = acgematrix3d::kidentity;
acgematrix3d finalmx = acgematrix3d::kidentity;
transmx.settotranslation(acgevector3d(-transx, -transy, 0.0));
rotatmx.settorotation(-rot*3.14159265359/180.0, acgevector3d::kzaxis, acgepoint3d::korigin);
finalmx.postmultby(transmx);
finalmx.premultby(rotatmx);
es = pcurdb->insert( finalmx, ptempdb );
// - the end.
|