Add fleet browser, view and service (basic skeleton)

This commit is contained in:
cncfanatics
2010-11-19 14:43:01 +01:00
parent 6b3c175aab
commit 768f9c9471
5 changed files with 83 additions and 1 deletions

View File

@@ -33,6 +33,7 @@ from gui.patternEditor import DmgPatternEditorDlg
from gui.preferenceDialog import PreferenceDialog
from gui.graphFrame import GraphFrame
from gui.copySelectDialog import CopySelectDialog
from gui.fleetBrowser import FleetBrowser
import aboutData
import gui.fittingView as fv
from wx._core import PyDeadObjectError
@@ -97,6 +98,10 @@ class MainFrame(wx.Frame):
self.shipBrowser = ShipBrowser(self.notebookBrowsers)
self.notebookBrowsers.AddPage(self.shipBrowser, "Ships", showClose = False)
self.fleetBrowser = FleetBrowser(self.notebookBrowsers)
self.notebookBrowsers.AddPage(self.fleetBrowser, "Fleets", showClose = False)
self.notebookBrowsers.SetSelection(1)
self.splitter.SplitVertically(self.notebookBrowsers, self.FitviewAdditionsPanel)