001package org.vishia.commander; 002 003public class FcmdWidgetNames 004{ 005 006 /**Name of the Table-widget and the key in {@link Fcmd#idxFileSelector} for a file table. 007 * The name is following by the visible name of the tab. */ 008 public final static String tableFile = "panelFile_"; 009 010 public final static String labelWidgFile = "labelWidgFile_"; 011 012 /**Name of the tab panel which contains a file table. 013 * The name is following by the visible name of the tab. */ 014 public final static String tabFile = "tabFile_"; 015 016 /**Name of the main tabbed panel for left,mid and right. */ 017 public final static String panelLeftMidRigth = "mainTabs"; //+1 +2 +3 018 019 020 /**Name of the tab inside the tabbed main panel for left, mid, right 021 * which contains a tabbed panel for the tabs for selection. */ 022 public final static String tabFavoritesLeftMidRight = "tabSelectTabs"; //+1 +2 +3 023 024 /**Name of the panel inside the main left, mid, right panel 025 * which contains a tabbed panel for the tabs for selection. */ 026 public final static String panelFavoritesLeftMidRight = "selectTabs"; //+1 +2 +3 027 028 /**Name of the tab inside panelFavoritesLeftMidRight for the main selection. */ 029 public final static String tabMainFavorites = "tabSelectAll"; //+1 +2 +3 030 031 /**Name of the tab inside panelFavoritesLeftMidRight for the main selection. */ 032 public final static String tabFavorites = "tabSelect-"; //+1 +2 +3 033 034 /**Name of the tab inside panelFavoritesLeftMidRight for the main selection. */ 035 public final static String tableFavorites = "tableSelect-"; //+label +1 +2 +3 036 037 /**Name of the tab inside panelFavoritesLeftMidRight for the main selection. */ 038 public final static String tableFavoritesMain = "tableSelectMain."; //+1 +2 +3 039 040}