/* This file belongs to the Servoy development and deployment environment, Copyright (C) 1997-2012 Servoy BV This program is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program; if not, see http://www.gnu.org/licenses or write to the Free Software Foundation,Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 */ package com.servoy.j2db.solutionmodel; import com.servoy.base.scripting.annotations.ServoyClientSupport; import com.servoy.base.solutionmodel.IBaseSMForm; import com.servoy.base.solutionmodel.IBaseSMTabPanel; import com.servoy.j2db.persistence.TabPanel; /** * Solution tab panel object. * * @author rgansevles * * @since 6.1 */ public interface ISMTabPanel extends IBaseSMTabPanel, ISMComponent { /** * Constant used for restoring a tab panel orientation to it's initial state. * * @sample * var splitPane = myForm.newTabPanel('splitPane', 10, 10, 620, 460); * splitPane.tabOrientation = JSTabPanel.SPLIT_HORIZONTAL; * // (...) some code when you decide it's better to revert the orientation * splitPane.tabOrientation = JSTabPanel.DEFAULT_ORIENTATION; */ public static final int DEFAULT_ORIENTATION = TabPanel.DEFAULT_ORIENTATION; /** * Constant used for creating a tab panel that does not show tabs, by setting its tabOrientation. * * @sample * var splitPane = myForm.newTabPanel('splitPane', 10, 10, 620, 460); * splitPane.tabOrientation = JSTabPanel.HIDE; */ public static final int HIDE = TabPanel.HIDE; /** * Constant used for creating horizontal split pane from tab panel, by setting its tabOrientation. * * @sample * var splitPane = myForm.newTabPanel('splitPane', 10, 10, 620, 460); * splitPane.tabOrientation = JSTabPanel.SPLIT_HORIZONTAL; */ public static final int SPLIT_HORIZONTAL = TabPanel.SPLIT_HORIZONTAL; /** * Constant used for creating vertical split pane from tab panel, by setting its tabOrientation. * * @sample * var splitPane = myForm.newTabPanel('splitPane', 10, 10, 620, 460); * splitPane.tabOrientation = JSTabPanel.SPLIT_VERTICAL; */ public static final int SPLIT_VERTICAL = TabPanel.SPLIT_VERTICAL; /** * Constant used for creating accordion panel from tab panel, by setting its tabOrientation. * * @sample * var accordion = myForm.newTabPanel('accordion', 10, 10, 620, 460); * accordion.tabOrientation = JSTabPanel.ACCORDION_PANEL; */ public static final int ACCORDION_PANEL = TabPanel.ACCORDION_PANEL; /** * Adds a new tab with the text label and JSForm. * * @sample * // Create a parent form. * var form = solutionModel.newForm('parentForm', 'db:/example_data/parent_table', null, false, 640, 480); * // Create a first child form. * var childOne = solutionModel.newForm('childOne', 'db:/example_data/child_table', null, false, 400, 300); * childOne.newField('child_table_text', JSField.TEXT_FIELD, 10, 10, 100, 20); * // Create a relation to link the parent form to the first child form. * var parentToChild = solutionModel.newRelation('parentToChild','db:/example_data/parent_table','db:/example_data/child_table',JSRelation.INNER_JOIN); * parentToChild.newRelationItem('parent_table_id','=','child_table_parent_id'); * // Create a second child form. * var childTwo = solutionModel.newForm('childTwo', 'db:/example_data/my_table', null, false, 400, 300); * childTwo.newField('my_table_image', JSField.IMAGE_MEDIA, 10, 10, 100, 100); * // Create a tab panel and add two tabs to it, with the two child forms. * var tabPanel = form.newTabPanel('tabs', 10, 10, 620, 460); * tabPanel.newTab('tab1', 'Child Two', childOne, parentToChild); // The first form uses the relation. * tabPanel.newTab('tab2', 'Child Two', childTwo); * * @param name The name of the new tab. * * @param text The text to be displayed on the new tab. * * @param form The JSForm instance that should be displayed in the new tab. * * @return A JSTab instance representing the newly created and added tab. */ public ISMTab newTab(String name, String text, IBaseSMForm form); /** * Adds a new tab with the text label and JSForm and JSRelation (can be null for unrelated). * * @sample * // Create a parent form. * var form = solutionModel.newForm('parentForm', 'db:/example_data/parent_table', null, false, 640, 480); * // Create a first child form. * var childOne = solutionModel.newForm('childOne', 'db:/example_data/child_table', null, false, 400, 300); * childOne.newField('child_table_text', JSField.TEXT_FIELD, 10, 10, 100, 20); * // Create a relation to link the parent form to the first child form. * var parentToChild = solutionModel.newRelation('parentToChild','db:/example_data/parent_table','db:/example_data/child_table',JSRelation.INNER_JOIN); * parentToChild.newRelationItem('parent_table_id','=','child_table_parent_id'); * // Create a second child form. * var childTwo = solutionModel.newForm('childTwo', 'db:/example_data/my_table', null, false, 400, 300); * childTwo.newField('my_table_image', JSField.IMAGE_MEDIA, 10, 10, 100, 100); * // Create a tab panel and add two tabs to it, with the two child forms. * var tabPanel = form.newTabPanel('tabs', 10, 10, 620, 460); * tabPanel.newTab('tab1', 'Child Two', childOne, parentToChild); // The first form uses the relation. * tabPanel.newTab('tab2', 'Child Two', childTwo); * * @param name The name of the new tab. * * @param text The text to be displayed on the new tab. * * @param form The JSForm instance that should be displayed in the new tab. * * @param relation A JSRelation object that relates the parent form with the form * that will be displayed in the new tab. * * @return A JSTab instance representing the newly created and added tab. */ public ISMTab newTab(String name, String text, IBaseSMForm form, Object relation); /** * Returns a JSTab instance representing the tab which has the specified name. * * @param name The name of the tab that should be returned. * * @sample * var tabPanel = form.newTabPanel('tabs', 10, 10, 620, 460); * tabPanel.newTab('tab1', 'Child Two', childOne); * tabPanel.newTab('tab2', 'Child Two', childTwo); * tabPanel.getTab('tab2').text = 'Child Two Changed'; * * @return A JSTab instance represented the requested tab. */ public ISMTab getTab(String name); /** * Returns an array of JSTab instances holding the tabs of the tab panel. * * @sample * var tabPanel = form.newTabPanel('tabs', 10, 10, 620, 460); * tabPanel.newTab('tab1', 'Child Two', childOne); * tabPanel.newTab('tab2', 'Child Two', childTwo); * var tabs = tabPanel.getTabs(); * for (var i=0; i<tabs.length; i++) * application.output("Tab " + i + " has text " + tabs[i].text); * * @return An array of JSTab instances representing all tabs of this tabpanel. */ public ISMTab[] getTabs(); /** * @sameas com.servoy.j2db.solutionmodel.ISMField#getTabSeq() * @see com.servoy.j2db.solutionmodel.ISMField#getTabSeq() */ public int getTabSeq(); public void setOnChange(ISMMethod method); /** * Method to be executed when the selected tab is changed in the tab panel or divider position is changed in split pane. * * @sample * var onChangeMethod = form.newMethod('function onTabChange(previousIndex, event) { application.output("Tab changed from previous index " + previousIndex + " at " + event.getTimestamp()); }'); * var tabPanel = form.newTabPanel('tabs', 10, 10, 620, 460); * tabPanel.newTab('tab1', 'Child Two', childOne); * tabPanel.newTab('tab2', 'Child Two', childTwo); * tabPanel.onChange = onChangeMethod; */ public ISMMethod getOnChange(); public void setTabSeq(int tabSeq); /** * Flag that tells how to arrange the tabs if they don't fit on a single line. * If this flag is set, then the tabs will stay on a single line, but there will * be the possibility to scroll them to the left and to the right. If this flag * is not set, then the tabs will be arranged on multiple lines. * * @sample * var tabPanel = form.newTabPanel('tabs', 10, 10, 200, 200); * tabPanel.newTab('tab1', 'Child Two', childOne, parentToChild); // The first form uses the relation. * tabPanel.newTab('tab2', 'Child Two', childTwo); * tabPanel.scrollTabs = true; */ @ServoyClientSupport(ng = false, wc = true, sc = true) public boolean getScrollTabs(); /** * Specifies either the position of the tabs related to the tab panel or the type of tab-panel. * Can be one of SM_ALIGNMENT.(TOP, RIGHT, BOTTOM, LEFT), DEFAULT_ORIENTATION, HIDE, SPLIT_HORIZONTAL, SPLIT_VERTICAL, ACCORDION_PANEL. * * @sample * var tabPanel = form.newTabPanel('tabs', 10, 10, 620, 460); * tabPanel.newTab('tab1', 'Child Two', childOne, parentToChild); // The first form uses the relation. * tabPanel.newTab('tab2', 'Child Two', childTwo); * // The SM_ALIGNMENT constants TOP, RIGHT, BOTTOM and LEFT can be used to put the * // tabs into the needed position. Use HIDE to hide the tabs. Use DEFAULT_ORIENTATION to restore it to it's initial state. * // The constants SPLIT_HORIZONTAL, SPLIT_VERTICAL can be used to create a split pane, * // where the first tab will be the first component and the second tab will the second component. * // ACCORDION_PANEL can be used to create an accordion pane. * tabPanel.tabOrientation = SM_ALIGNMENT.BOTTOM; */ public int getTabOrientation(); @ServoyClientSupport(ng = false, wc = true, sc = true) public void setScrollTabs(boolean scrollTabs); public void setTabOrientation(int orientation); }