Exemple #1
0
def PrintColors():
    colors=KcsColour.ColourStrings
    pos=0
    for i in range(len(colors)):
        col=KcsColour.Colour(colors[i])
        kcs_draft.colour_set(col)
        
        p1=Point2D(0,pos)
        p2=Point2D(100,pos)
        ln=Rline2D(p1,p2)
        kcs_draft.line_new(ln)
        kcs_draft.text_new(colors[i],Point2D(p2.X+20,p2.Y))
        
        pos+=20
Exemple #2
0
def PrintColors():
    colors = KcsColour.ColourStrings
    pos = 0
    for i in range(len(colors)):
        col = KcsColour.Colour(colors[i])
        kcs_draft.colour_set(col)

        p1 = Point2D(0, pos)
        p2 = Point2D(100, pos)
        ln = Rline2D(p1, p2)
        kcs_draft.line_new(ln)
        kcs_draft.text_new(colors[i], Point2D(p2.X + 20, p2.Y))

        pos += 20
Exemple #3
0
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()
Exemple #4
0
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 PrintLinetypes():
    tps = KcsLinetype.GetLinetypes()
    pos = 0
    for i in range(len(tps)):
        msg(i)
        tp = tps.keys()[i]
        name = KcsLinetype.GetSystemName(tp)
        lt = KcsLinetype.Linetype(name)
        kcs_draft.linetype_set(lt)

        p1 = Point2D(0, pos)
        p2 = Point2D(100, pos)
        ln = Rline2D(p1, p2)
        kcs_draft.line_new(ln)
        kcs_draft.text_new(name, Point2D(p2.X + 20, p2.Y))

        pos += 20
Exemple #6
0
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()
Exemple #7
0
    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()
Exemple #8
0
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
Exemple #9
0
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()
Exemple #10
0
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()
Exemple #11
0
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
Exemple #12
0
def AddNote():
    res=kcs_ui.string_req("请输入标注内容")
    if res[0]==kcs_util.ok():
        content=res[1]
        cor1=Point2D()
        cor2=Point2D()
        res=kcs_ui.point2D_req("请选择标注点",cor1)
        if res[0]==kcs_util.ok():
            res=kcs_ui.point2D_req("请选择标注文字位置",cor2)
            if res[0]==kcs_util.ok(): #开始标注
                #记录原来状态
                old=kcs_draft.subpicture_current_get()
                
                #创建component
                subView=ktDraft.GetKtSubView(SUB_VIEW_NAME)
                #检查是否在KNOT_VIEW下
                parent=kcs_draft.element_parent_get(subView)
                parentName=kcs_draft.subpicture_name_get(parent)
                if parentName!="KNOT_VIEW":
                    return
                kcs_draft.subpicture_current_set(subView)
                compName="NOTE_"+str(GetID(subView))
                comp=kcs_draft.component_new(compName)
                kcs_draft.subpicture_current_set(comp)
                
                #写文字
                txt=Text(content)
                txt.SetPosition(cor2)
                txt.SetColour(Colour("Red"))
                txt.SetFont("黑体")
                txt.SetHeight(5)
                hTxt=kcs_draft.text_new(txt)
                
                #画边框
                rect=Rectangle2D()
                rect=kcs_draft.element_extent_get(hTxt)
                offset=1
                rect.SetCorner1(Point2D(rect.Corner1.X-offset,rect.Corner1.Y-offset))
                rect.SetCorner2(Point2D(rect.Corner2.X+offset,rect.Corner2.Y+offset))
                hd=kcs_draft.rectangle_new(rect)
                kcs_draft.element_colour_set(hd,Colour("Red"))
                
                #画引线
                sta=cor1
                end=rect.GetCorner1()
                if end.X<sta.X:
                    end.SetX(end.X+rect.Corner2.X-rect.Corner1.X)
                if end.Y<sta.Y:
                    end.SetY(end.Y+rect.Corner2.Y-rect.Corner1.Y)
                line=Rline2D(sta,end)
                hd=kcs_draft.line_new(line)
                kcs_draft.element_colour_set(hd,Colour("Red"))
                
                #画圆圈
                circle=Circle2D(sta,2)
                hd=kcs_draft.circle_new(circle)
                kcs_draft.element_colour_set(hd,Colour("Red"))
                
                #恢复原来状态
                if len(old)==3:
                    kcs_draft.subpicture_current_set(old[2])
                else:
                    kcs_draft.subpicture_current_set()