def DeleteNote(): pt=Point2D() res=kcs_ui.point2D_req("请选择要删除的批注",pt) if res[0]==kcs_util.ok(): try: hText=kcs_draft.text_identify(pt) comp=kcs_draft.element_parent_get(hText) compName=kcs_draft.subpicture_name_get(comp) if compName.startswith("NOTE_"): kcs_draft.element_delete(comp) except Exception,e: kcs_ui.message_noconfirm(e.message)
def ReplaceOne(hdText): "replace one text" txt=Text() kcs_draft.text_properties_get(hdText,txt) res=kcs_ui.string_req('请输入要替换的文本',txt.String) if res[0]==kcs_util.ok(): old = kcs_draft.subpicture_current_get() #make the old subpicture father = kcs_draft.element_parent_get(hdText) # 文字所在图层 txt.SetString(res[1]) kcs_draft.element_delete(hdText) # 删除原文字 kcs_draft.subpicture_current_set(father) # 重设图层 kcs_draft.text_new(txt) # 写文字 if len(old) == 3: kcs_draft.subpicture_current_set(old[2]) else: kcs_draft.subpicture_current_set()
def AlignBottom(): "Align texts to the left." hds=SelectTexts() tList=[] for hd in hds[1:]: t=Text() kcs_draft.text_properties_get(hd,t) tList.append((hd,t)) y=min([t[1].GetPosition().Y for t in tList]) csm=ktDraft.CurrentSubpictureManager() for hd,t in tList: csm.Set(hd) kcs_draft.element_delete(hd) t.Position.Y=y kcs_draft.text_new(t) csm.Back()
def AlignRight(): "Align texts to the left." hds=SelectTexts() tList=[] for hd in hds[1:]: t=Text() kcs_draft.text_properties_get(hd,t) tList.append((hd,t)) x=max([t[1].GetPosition().X for t in tList]) csm=ktDraft.CurrentSubpictureManager() for hd,t in tList: csm.Set(hd) rect=kcs_draft.element_extent_get(hd) width=abs(rect.Corner1.X-rect.Corner2.X) kcs_draft.element_delete(hd) t.Position.X=x-width kcs_draft.text_new(t) csm.Back()
def Draw(self): "Draw the cell on drawing." # if self.Handle!=None: #clear the cell first # for ee in ktDraft.GetSubElements(self.Handle): # print ee # kcs_draft.element_delete(ee) # else: # # !make sure the parrent sub view is set current if self.Handle!=None: prt=kcs_draft.element_parent_get(self.Handle) kcs_draft.element_delete(self.Handle) kcs_draft.subpicture_current_set(prt) self.Handle=kcs_draft.component_new(self.GetCompName()) kcs_draft.subpicture_current_set(self.Handle) if len(self.String)>0: kcs_draft.text_new(self.GetText()) kcs_draft.rectangle_new(self.Rect) kcs_draft.subpicture_current_set()
def Amplifier(step): "set the text bigger or smaller by given step" while True: hdText=SelectText() if hdText!=None: csm=ktDraft.CurrentSubpictureManager() t = Text() kcs_draft.text_properties_get(hdText, t) if t.GetHeight()<2: print 'can not be smaller' return else: csm.Set(hdText) kcs_draft.element_delete(hdText) t.SetHeight(t.GetHeight()+step) kcs_draft.text_new(t) csm.Back() else: break
def Replace(hdList): res = kcs_ui.answer_req("文字替换", "是否要替换文字?") if res == kcs_util.yes(): txt = Text() kcs_draft.text_properties_get(hdList[0], txt) res = kcs_ui.string_req("请输入要替换的文字", txt.GetString()) if res[0] == kcs_util.ok(): content = res[1] old = kcs_draft.subpicture_current_get() for hd in hdList: father = kcs_draft.element_parent_get(hd) # 文字所在图层 kcs_draft.text_properties_get(hd, txt) txt.SetString(content) kcs_draft.element_delete(hd) # 删除原文字 kcs_draft.subpicture_current_set(father) # 重设图层 kcs_draft.text_new(txt) # 写文字 if len(old) == 3: kcs_draft.subpicture_current_set(old[2]) else: kcs_draft.subpicture_current_set()
def FormatRegion(): pt = Point2D() res = kcs_ui.point2D_req("请选择文字获取文字属性", pt) if res[0] == kcs_util.ok(): hd = kcs_draft.text_identify(pt) ori = Text() kcs_draft.text_properties_get(hd, ori) objs = SelectTexts() old = kcs_draft.subpicture_current_get() # 当前图层 for obj in objs[1:]: # 重写文字 father = kcs_draft.element_parent_get(obj) # 文字所在图层 t = Text() kcs_draft.text_properties_get(obj, t) ori.SetString(t.GetString()) ori.SetPosition(t.GetPosition()) kcs_draft.element_delete(obj) # 删除原文字 kcs_draft.subpicture_current_set(father) # 重设图层 kcs_draft.text_new(ori) # 写文字 if len(old) == 3: kcs_draft.subpicture_current_set(old[2]) else: kcs_draft.subpicture_current_set()
def FormatSingle(): pt = Point2D() res = kcs_ui.point2D_req("请选择文字获取文字属性", pt) if res[0] == kcs_util.ok(): hd = kcs_draft.text_identify(pt) ori = Text() kcs_draft.text_properties_get(hd, ori) # old = kcs_draft.subpicture_current_get() # 当前图层 while True: "select single text" pt2=Point2D() res = kcs_ui.point2D_req("请选择要替换的文字", pt2) if res[0]==kcs_util.ok(): hdText=kcs_draft.text_identify(pt2) father = kcs_draft.element_parent_get(hdText) # 文字所在图层 t = Text() kcs_draft.text_properties_get(hdText, t) ori.SetString(t.GetString()) ori.SetPosition(t.GetPosition()) kcs_draft.element_delete(hdText) # 删除原文字 kcs_draft.subpicture_current_set(father) # 重设图层 kcs_draft.text_new(ori) # 写文字 else: break