Ejemplo n.º 1
0
    def __init__(self, parent, objt, charDetails=None):
        wx.Dialog.__init__(self,
                           parent,
                           -1,
                           'Edit Reference Synopsis',
                           style=wx.DEFAULT_DIALOG_STYLE | wx.MAXIMIZE_BOX,
                           size=(475, 250))
        self.theReference = objt.reference()
        self.theId = objt.id()
        self.theSynopsis = ''
        self.theDimension = ''
        self.theActorType = ''
        self.theActor = ''
        mainSizer = wx.BoxSizer(wx.VERTICAL)
        self.panel = ReferenceSynopsisPanel(self)
        mainSizer.Add(self.panel, 1, wx.EXPAND)
        self.SetSizer(mainSizer)
        wx.EVT_BUTTON(self, armid.REFERENCESYNOPSIS_BUTTONCOMMIT_ID,
                      self.onCommit)

        if (objt.id() == -1):
            self.theCommitVerb = 'Create'
            if (charDetails != None):
                self.SetLabel = 'Create Characteristic Synopsis'
                charType = charDetails[0]
                tpName = charDetails[1]
                if (charType == 'persona'):
                    self.theActorType = 'persona'
                    self.theActor = tpName
            else:
                self.SetLabel = 'Create Reference Synopsis'
            objt = ReferenceSynopsis(-1, self.theReference, self.theSynopsis,
                                     self.theDimension, self.theActorType,
                                     self.theActor)
        else:
            if (charDetails != None):
                self.SetLabel = 'Edit Characteristic Synopsis'

            self.theReference = objt.reference()
            self.theSynopsis = objt.synopsis()
            self.theDimension = objt.dimension()
            self.theActorType = objt.actorType()
            self.theActor = objt.actor()
            self.theCommitVerb = 'Edit'
        self.panel.load(objt, charDetails)
    def __init__(self, parent, objt, charDetails=None):
        wx.Dialog.__init__(
            self,
            parent,
            -1,
            "Edit Reference Synopsis",
            style=wx.DEFAULT_DIALOG_STYLE | wx.MAXIMIZE_BOX,
            size=(475, 250),
        )
        self.theReference = objt.reference()
        self.theId = objt.id()
        self.theSynopsis = ""
        self.theDimension = ""
        self.theActorType = ""
        self.theActor = ""
        mainSizer = wx.BoxSizer(wx.VERTICAL)
        self.panel = ReferenceSynopsisPanel(self)
        mainSizer.Add(self.panel, 1, wx.EXPAND)
        self.SetSizer(mainSizer)
        wx.EVT_BUTTON(self, REFERENCESYNOPSIS_BUTTONCOMMIT_ID, self.onCommit)

        if objt.id() == -1:
            self.theCommitVerb = "Create"
            if charDetails != None:
                self.SetLabel = "Create Characteristic Synopsis"
                charType = charDetails[0]
                tpName = charDetails[1]
                if charType == "persona":
                    self.theActorType = "persona"
                    self.theActor = tpName
            else:
                self.SetLabel = "Create Reference Synopsis"
            objt = ReferenceSynopsis(
                -1, self.theReference, self.theSynopsis, self.theDimension, self.theActorType, self.theActor
            )
        else:
            if charDetails != None:
                self.SetLabel = "Edit Characteristic Synopsis"

            self.theReference = objt.reference()
            self.theSynopsis = objt.synopsis()
            self.theDimension = objt.dimension()
            self.theActorType = objt.actorType()
            self.theActor = objt.actor()
            self.theCommitVerb = "Edit"
        self.panel.load(objt, charDetails)
Ejemplo n.º 3
0
class ReferenceSynopsisDialog(wx.Dialog):
  def __init__(self,parent,objt,charDetails = None):
    wx.Dialog.__init__(self,parent,-1,'Edit Reference Synopsis',style=wx.DEFAULT_DIALOG_STYLE|wx.MAXIMIZE_BOX,size=(475,250))
    self.theReference = objt.reference()
    self.theId = objt.id()
    self.theSynopsis = ''
    self.theDimension = ''
    self.theActorType = ''
    self.theActor = ''
    mainSizer = wx.BoxSizer(wx.VERTICAL)
    self.panel = ReferenceSynopsisPanel(self)
    mainSizer.Add(self.panel,1,wx.EXPAND)
    self.SetSizer(mainSizer)
    wx.EVT_BUTTON(self,REFERENCESYNOPSIS_BUTTONCOMMIT_ID,self.onCommit)

    if (objt.id() == -1):
      self.theCommitVerb = 'Create'
      if (charDetails != None):
        self.SetLabel = 'Create Characteristic Synopsis'
        charType = charDetails[0]
        tpName = charDetails[1]
        if (charType == 'persona'):
          self.theActorType = 'persona'
          self.theActor = tpName
      else:
        self.SetLabel = 'Create Reference Synopsis'
      objt = ReferenceSynopsis(-1,self.theReference,self.theSynopsis,self.theDimension,self.theActorType,self.theActor)
    else:
      if (charDetails != None):
        self.SetLabel = 'Edit Characteristic Synopsis'

      self.theReference = objt.reference()
      self.theSynopsis = objt.synopsis()
      self.theDimension = objt.dimension()
      self.theActorType = objt.actorType()
      self.theActor = objt.actor()
      self.theCommitVerb = 'Edit'
    self.panel.load(objt,charDetails)
   

  def onCommit(self,evt):
    refCtrl = self.FindWindowById(REFERENCESYNOPSIS_TEXTREFNAME_ID)
    synCtrl = self.FindWindowById(REFERENCESYNOPSIS_TEXTSYNOPSIS_ID)
    dimCtrl = self.FindWindowById(REFERENCESYNOPSIS_COMBODIMENSION_ID)
    atCtrl = self.FindWindowById(REFERENCESYNOPSIS_COMBOACTORTYPE_ID)
    actorCtrl = self.FindWindowById(REFERENCESYNOPSIS_COMBOACTORNAME_ID)

    self.theReference = refCtrl.GetValue()
    self.theSynopsis = synCtrl.GetValue()
    self.theDimension = dimCtrl.GetValue()
    self.theActorType = atCtrl.GetValue()
    self.theActor = actorCtrl.GetValue()


    commitLabel = self.theCommitVerb + ' Reference Synopsis'

    if len(self.theReference) == 0:
      dlg = wx.MessageDialog(self,'Reference cannot be empty',commitLabel,wx.OK) 
      dlg.ShowModal()
      dlg.Destroy()
      return
    if len(self.theSynopsis) == 0:
      dlg = wx.MessageDialog(self,'Synopsis cannot be empty',commitLabel,wx.OK) 
      dlg.ShowModal()
      dlg.Destroy()
      return
    if len(self.theDimension) == 0:
      dlg = wx.MessageDialog(self,'Dimension cannot be empty',commitLabel,wx.OK) 
      dlg.ShowModal()
      dlg.Destroy()
      return
    elif len(self.theActorType) == 0:
      dlg = wx.MessageDialog(self,'Actor type cannot be empty',commitLabel,wx.OK) 
      dlg.ShowModal()
      dlg.Destroy()
      return
    elif len(self.theActor) == 0:
      dlg = wx.MessageDialog(self,'Actor cannot be empty',commitLabel,wx.OK) 
      dlg.ShowModal()
      dlg.Destroy()
      return
    else:
      self.EndModal(REFERENCESYNOPSIS_BUTTONCOMMIT_ID)

  def parameters(self):
    parameters = ReferenceSynopsis(self.theId,self.theReference,self.theSynopsis,self.theDimension,self.theActorType,self.theActor)
    return parameters
Ejemplo n.º 4
0
class ReferenceSynopsisDialog(wx.Dialog):
    def __init__(self, parent, objt, charDetails=None):
        wx.Dialog.__init__(self,
                           parent,
                           -1,
                           'Edit Reference Synopsis',
                           style=wx.DEFAULT_DIALOG_STYLE | wx.MAXIMIZE_BOX,
                           size=(475, 250))
        self.theReference = objt.reference()
        self.theId = objt.id()
        self.theSynopsis = ''
        self.theDimension = ''
        self.theActorType = ''
        self.theActor = ''
        mainSizer = wx.BoxSizer(wx.VERTICAL)
        self.panel = ReferenceSynopsisPanel(self)
        mainSizer.Add(self.panel, 1, wx.EXPAND)
        self.SetSizer(mainSizer)
        wx.EVT_BUTTON(self, REFERENCESYNOPSIS_BUTTONCOMMIT_ID, self.onCommit)

        if (objt.id() == -1):
            self.theCommitVerb = 'Create'
            if (charDetails != None):
                self.SetLabel = 'Create Characteristic Synopsis'
                charType = charDetails[0]
                tpName = charDetails[1]
                if (charType == 'persona'):
                    self.theActorType = 'persona'
                    self.theActor = tpName
            else:
                self.SetLabel = 'Create Reference Synopsis'
            objt = ReferenceSynopsis(-1, self.theReference, self.theSynopsis,
                                     self.theDimension, self.theActorType,
                                     self.theActor)
        else:
            if (charDetails != None):
                self.SetLabel = 'Edit Characteristic Synopsis'

            self.theReference = objt.reference()
            self.theSynopsis = objt.synopsis()
            self.theDimension = objt.dimension()
            self.theActorType = objt.actorType()
            self.theActor = objt.actor()
            self.theCommitVerb = 'Edit'
        self.panel.load(objt, charDetails)

    def onCommit(self, evt):
        refCtrl = self.FindWindowById(REFERENCESYNOPSIS_TEXTREFNAME_ID)
        synCtrl = self.FindWindowById(REFERENCESYNOPSIS_TEXTSYNOPSIS_ID)
        dimCtrl = self.FindWindowById(REFERENCESYNOPSIS_COMBODIMENSION_ID)
        atCtrl = self.FindWindowById(REFERENCESYNOPSIS_COMBOACTORTYPE_ID)
        actorCtrl = self.FindWindowById(REFERENCESYNOPSIS_COMBOACTORNAME_ID)

        self.theReference = refCtrl.GetValue()
        self.theSynopsis = synCtrl.GetValue()
        self.theDimension = dimCtrl.GetValue()
        self.theActorType = atCtrl.GetValue()
        self.theActor = actorCtrl.GetValue()

        commitLabel = self.theCommitVerb + ' Reference Synopsis'

        if len(self.theReference) == 0:
            dlg = wx.MessageDialog(self, 'Reference cannot be empty',
                                   commitLabel, wx.OK)
            dlg.ShowModal()
            dlg.Destroy()
            return
        if len(self.theSynopsis) == 0:
            dlg = wx.MessageDialog(self, 'Synopsis cannot be empty',
                                   commitLabel, wx.OK)
            dlg.ShowModal()
            dlg.Destroy()
            return
        if len(self.theDimension) == 0:
            dlg = wx.MessageDialog(self, 'Dimension cannot be empty',
                                   commitLabel, wx.OK)
            dlg.ShowModal()
            dlg.Destroy()
            return
        elif len(self.theActorType) == 0:
            dlg = wx.MessageDialog(self, 'Actor type cannot be empty',
                                   commitLabel, wx.OK)
            dlg.ShowModal()
            dlg.Destroy()
            return
        elif len(self.theActor) == 0:
            dlg = wx.MessageDialog(self, 'Actor cannot be empty', commitLabel,
                                   wx.OK)
            dlg.ShowModal()
            dlg.Destroy()
            return
        else:
            self.EndModal(REFERENCESYNOPSIS_BUTTONCOMMIT_ID)

    def parameters(self):
        parameters = ReferenceSynopsis(self.theId, self.theReference,
                                       self.theSynopsis, self.theDimension,
                                       self.theActorType, self.theActor)
        return parameters