00001 /*---------------------------------------------------------------------------*\ 00002 * OpenSG * 00003 * * 00004 * * 00005 * Copyright (C) 2000-2002 by the OpenSG Forum * 00006 * * 00007 * www.opensg.org * 00008 * * 00009 * contact: dirk@opensg.org, gerrit.voss@vossg.org, jbehr@zgdv.de * 00010 * * 00011 \*---------------------------------------------------------------------------*/ 00012 /*---------------------------------------------------------------------------*\ 00013 * License * 00014 * * 00015 * * 00016 * This library is free software; you can redistribute it and/or modify it * 00017 * under the terms of the GNU Library General Public License as published * 00018 * by the Free Software Foundation, version 2. * 00019 * * 00020 * This library is distributed in the hope that it will be useful, but * 00021 * WITHOUT ANY WARRANTY; without even the implied warranty of * 00022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 00023 * Library General Public License for more details. * 00024 * * 00025 * You should have received a copy of the GNU Library General Public * 00026 * License along with this library; if not, write to the Free Software * 00027 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * 00028 * * 00029 * * 00030 \*---------------------------------------------------------------------------*/ 00031 /*---------------------------------------------------------------------------*\ 00032 * Changes * 00033 * * 00034 * * 00035 * * 00036 * * 00037 * * 00038 * * 00039 \*---------------------------------------------------------------------------*/ 00040 00041 #include "OSGQFieldView_qt.h" 00042 00043 OSG_BEGIN_NAMESPACE 00044 00045 inline UInt32 00046 QFieldValueLabelBase::getIndex(void) const 00047 { 00048 return _uiIndex; 00049 } 00050 00051 inline QFieldViewBase * 00052 QFieldValueLabelBase::getFieldView(void) 00053 { 00054 return _pView; 00055 } 00056 00057 inline const QFieldViewBase * 00058 QFieldValueLabelBase::getFieldView(void) const 00059 { 00060 return _pView; 00061 } 00062 00063 inline FieldContainerPtr & 00064 QFieldValueLabelBase::getFieldContainer(void) 00065 { 00066 return _pView->getFieldContainer(); 00067 } 00068 00069 inline const FieldContainerPtr & 00070 QFieldValueLabelBase::getFieldContainer(void) const 00071 { 00072 return _pView->getFieldContainer(); 00073 } 00074 00075 inline UInt32 00076 QFieldValueLabelBase::getFieldId(void) const 00077 { 00078 return _pView->getFieldId(); 00079 } 00080 00081 inline UInt32 00082 QFieldValueLabelBase::getAspect(void) const 00083 { 00084 return _pView->getAspect(); 00085 } 00086 00087 inline Field * 00088 QFieldValueLabelBase::getFieldPtr(void) 00089 { 00090 return _pView->getFieldPtr(); 00091 } 00092 00093 inline const Field * 00094 QFieldValueLabelBase::getFieldPtr(void) const 00095 { 00096 return _pView->getFieldPtr(); 00097 } 00098 00099 OSG_END_NAMESPACE 00100 00101 #define OSGQFIELDVALUELABEL_INLINE_CVSID "@(#)$Id: OSGQFieldValueLabel.inl,v 1.1 2003/05/07 14:03:40 neumannc Exp $"
1.4.3