KSpreadRowIface.cc
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include "KSpreadLayoutIface.h"
00023 #include "KSpreadRowIface.h"
00024 #include "kspread_format.h"
00025 #include <qbrush.h>
00026
00027 KSpreadRowIface::KSpreadRowIface(RowFormat *_lay)
00028 :KSpreadLayoutIface(_lay)
00029 {
00030 m_rowLayout=_lay;
00031 }
00032
00033 void KSpreadRowIface::update()
00034 {
00035
00036 }
00037
00038 int KSpreadRowIface::row()
00039 {
00040 return m_rowLayout->row();
00041 }
00042
00043 void KSpreadRowIface::setHide(bool _hide)
00044 {
00045 m_rowLayout->setHide(_hide);
00046 }
00047
00048 bool KSpreadRowIface::isHide()const
00049 {
00050 return m_rowLayout->isHide();
00051 }
00052
00053 void KSpreadRowIface::setHeight( int _h )
00054 {
00055 m_rowLayout->setHeight(_h);
00056 }
00057
00058 int KSpreadRowIface::height()
00059 {
00060 return m_rowLayout->height();
00061 }
This file is part of the documentation for kspread Library Version 1.4.2.