Package com.projity.pm.graphic

Examples of com.projity.pm.graphic.TabbedNavigation


          top = new Box(BoxLayout.Y_AXIS);
          toolBar.setAlignmentX(0.0f); // so it is left justified
      top.add(toolBar);

      JToolBar viewToolBar = getMenuManager().getToolBar(MenuManager.VIEW_TOOL_BAR_WITH_NO_SUB_VIEW_OPTION);
      topTabs = new TabbedNavigation();
      JComponent tabs = topTabs.createContentPanel(getMenuManager(),viewToolBar,0,JTabbedPane.TOP,true);
      tabs.setAlignmentX(0.0f); // so it is left justified


      top.add(tabs);
      bottom = new TabbedNavigation().createContentPanel(getMenuManager(),viewToolBar,1,JTabbedPane.BOTTOM,false);
      contentPane.add(top, BorderLayout.BEFORE_FIRST_LINE);
      contentPane.add(bottom,BorderLayout.AFTER_LAST_LINE);
      if (Environment.isNewLaf())
        contentPane.setBackground(Color.WHITE);
View Full Code Here


          top = new Box(BoxLayout.Y_AXIS);
          toolBar.setAlignmentX(0.0f); // so it is left justified
      top.add(toolBar);

      JToolBar viewToolBar = getMenuManager().getToolBar(MenuManager.VIEW_TOOL_BAR_WITH_NO_SUB_VIEW_OPTION);
      topTabs = new TabbedNavigation();
      JComponent tabs = topTabs.createContentPanel(getMenuManager(),viewToolBar,0,JTabbedPane.TOP,true);
      tabs.setAlignmentX(0.0f); // so it is left justified


      top.add(tabs);
      bottom = new TabbedNavigation().createContentPanel(getMenuManager(),viewToolBar,1,JTabbedPane.BOTTOM,false);
      contentPane.add(top, BorderLayout.BEFORE_FIRST_LINE);
      contentPane.add(bottom,BorderLayout.AFTER_LAST_LINE);
      if (Environment.isNewLaf())
        contentPane.setBackground(Color.WHITE);
View Full Code Here

TOP

Related Classes of com.projity.pm.graphic.TabbedNavigation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.