Changeset 4422
- Timestamp:
- 07/18/07 16:06:28 (6 years ago)
- Location:
- WaveDev/trunk/WaveDev/wavedev
- Files:
-
- 2 modified
-
ComponentFrame.py (modified) (2 diffs)
-
MainFrame.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
WaveDev/trunk/WaveDev/wavedev/ComponentFrame.py
r4241 r4422 1011 1011 application.main = create(None) 1012 1012 application.main.Show() 1013 application.SetTopWindow(application.main)1014 1013 1015 1014 application.main.active_comp = CC.Component("component1") … … 1031 1030 application.main.nodeChoice.Enable(False) 1032 1031 1033 #application.main.propList.InsertStringItem(0,"Frequency") 1034 #application.main.propList.SetStringItem(0,1,"2400") 1035 #application.main.propList.InsertStringItem(1,"Power") 1036 #application.main.propList.SetStringItem(1,1,"1000") 1037 1038 application.MainLoop() 1039 1040 1041 1032 return application 1033 1034 1042 1035 ################################################################################ 1043 1036 ## If Component Developer is run as a seperate application -
WaveDev/trunk/WaveDev/wavedev/MainFrame.py
r4421 r4422 1243 1243 1244 1244 def OnMenuWaveformAddcompMenu(self, event): 1245 ComponentFrame.newComponentFrame() 1246 #self.active_comp = ComponentClass.Component() 1247 #self.EditComponent() 1248 #self.active_wave.components.append(self.active_comp) 1245 self.subApp = ComponentFrame.newComponentFrame() 1249 1246 1250 1247 def OnMenuWaveformRemovecompMenu(self, event):