Example #1
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()
Example #2
0
def GetKtComponent(compName, subView): #obsolete, do not use it.
    """返回指定名称的component,若没有则新建一个"""
    # subView=GetTitSubView(subViewName)
    name = kcs_draft.subpicture_name_get(subView)
    try:
        comp = kcs_draft.element_child_first_get(subView)
        name = kcs_draft.subpicture_name_get(comp)
        if name == compName:
            return comp
        while True:
            comp = kcs_draft.element_sibling_next_get(comp)
            name = kcs_draft.subpicture_name_get(comp)
            kcs_ui.message_noconfirm(name)
            if name == compName:
                return comp
    except:
        old = kcs_draft.subpicture_current_get()
        kcs_draft.subpicture_current_set(subView)
        comp = kcs_draft.component_new(compName)
        if len(old) == 3:
            kcs_draft.subpicture_current_set(old[2])
        return comp
Example #3
0
    def Draw(self):
        "draw the drawing form on current drawing"
        #check whether view exist
        hd = kcs_draft.subview_new('KT_FORM%s' % (self.Index))
        kcs_draft.subpicture_current_set(hd)
        hd = kcs_draft.component_new('FORM_CONTOUR')
        kcs_draft.subpicture_current_set(hd)

        #drawing form lines
        #outer rectangle
        lm = LineMaker(self.Location.X, self.Location.Y)
        lm.LineX(self.Width)
        lm.LineY(self.Height)
        lm.LineX(-self.Width)
        lm.LineY(-self.Height)
        #inner rectangle
        lm.Move(self.PaddingLeft, self.PaddingBottom)
        lm.LineX(self.Width - self.PaddingRight - self.PaddingLeft)
        lm.LineY(self.Height - self.PaddingBottom - self.PaddingTop)
        lm.LineX(-self.Width + self.PaddingRight + self.PaddingLeft)
        lm.LineY(-self.Height + self.PaddingBottom + self.PaddingTop)
        #onter lines
        lm.MoveTo(self.Location.X + self.PaddingLeft,
                  self.Location.Y + self.Height - self.PaddingTop - 13)
        lm.LineX(60)
        lm.LineY(13)
        lm.MoveTo(self.Location.X + self.Width - self.PaddingRight,
                  self.Location.Y + self.Height - self.PaddingTop - 13)
        lm.LineX(-14)
        lm.LineY(13)
        lm.MoveY(-13)
        lm.LineX(-46)
        lm.LineY(13)
        lm.MoveY(-13)
        lm.LineX(-65)
        lm.LineY(13)
        lm.Move(111, -13)
        lm.Line(14, 13)
Example #4
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()