/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org 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 Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef __com_sun_star_form_ListSourceType_idl__ #define __com_sun_star_form_ListSourceType_idl__ //============================================================================= module com { module sun { module star { module form { //============================================================================= /** describes the kind of data source used to fill the list data of a listbox or a combobox control. @see com::sun::star::form::component::ListBox @see com::sun::star::form::component::ComboBox */ published enum ListSourceType { //------------------------------------------------------------------------- /** The control should be filled with a list of string values. */ VALUELIST, //------------------------------------------------------------------------- /** The control should be filled with the data of a table. */ TABLE, //------------------------------------------------------------------------- /** The control should be filled with the results of a database query. */ QUERY, //------------------------------------------------------------------------- /** The control should be filled with the results of a database statement. */ SQL, //------------------------------------------------------------------------- /** The control should be filled with the results of a database statement, which is not evaluated by the database engine. */ SQLPASSTHROUGH, //------------------------------------------------------------------------- /** The control should be filled with the field names of a database table. */ TABLEFIELDS }; //============================================================================= }; }; }; }; /*============================================================================= =============================================================================*/ #endif