Example #1
0
  def __init__(self, app, parent, title, firstTabTitle, 
            record, mode, tableDef, showChildren=FALSE):
            
    guiTabDialog.__init__(self, app=app, parent=parent, title=title
       , firstTabTitle="&Texts", record=record
       , mode=mode, tableDef=tableDef, showChildren=FALSE)

    self.tagstab=TagsTab(parent, app, record, "lng_text_tag")
    guiTabDialog.addChildTab( self, "&Tags"
                         , self.tagstab, record, DETAIL)


    tabproj=tabTextProjects(parent, app, record)
    guiTabDialog.addChildTab(self, "&Projects"
                         , tabproj, record, DETAIL)
Example #2
0
    def __init__(self, app, parent, title, firstTabTitle, 
            record, mode, tableDef, showChildren=FALSE):
            
        guiTabDialog.__init__(self,
                              app=app,
                              parent=parent,
                              title=title,
                              firstTabTitle="&Streams",
                              record=record,
                              mode=mode,
                              tableDef=tableDef,
                              showChildren=FALSE,
                              addBottomSpring=TRUE)

        tagstab=TagsTab(parent, app, record, "lng_stream_tag")
        guiTabDialog.addChildTab( self, "&Tags"
                                  , tagstab, record, DETAIL)
Example #3
0
  def __init__(self, app, parent, title, firstTabTitle, 
            record, mode, tableDef, showChildren=FALSE):
            
    guiTabDialog.__init__( self
                         , app=app
                         , parent=parent
                         , title=title
                         , firstTabTitle="&Elements"
                         , record=record
                         , mode=mode
                         , tableDef=tableDef
                         , showChildren=FALSE
                         , addBottomSpring=TRUE)

    self.tagstab=TagsTab(self, app, record, "lng_element_tag")
    guiTabDialog.addChildTab( self
                            , "&Tags"
                            , self.tagstab
                            , record
                            , DETAIL)

    guiTabDialog.addChildTab(self
                            , "&Related Lexeme"
                            , tabElementLexeme(self, record)
                            , record
                            , DETAIL)
                            
    guiTabDialog.addChildTab( self
                            , "&Morphemes"
                            , tabElementSplit(self, record)
                            , record
                            , DETAIL)