CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EdmBrowserTab.py
Go to the documentation of this file.
1 import logging
2 
3 from PyQt4.QtGui import QWidget
4 
5 from Vispa.Gui.Header import FrameWithHeader
6 from Vispa.Plugins.Browser.BrowserTab import BrowserTab
7 from Vispa.Plugins.EdmBrowser.BranchTableView import BranchTableView
8 
10  def __init__(self, parent):
11  BrowserTab.__init__(self, parent)
12 
13  def createTreeView(self,parent=None):
14  """ Create the tree view.
15  """
16  if not parent:
17  parent=self.horizontalSplitter()
18 
20  self._treeviewArea.header().setText("Branches")
21  self._treeViewMenuButton = self._treeviewArea.header().createMenuButton()
23  self._treeviewArea.addWidget(self._treeView)