kspread
KSpreadRowIface.cc00001
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 using namespace KSpread;
00028
00029 RowIface::RowIface(RowFormat *_lay)
00030 :LayoutIface(_lay)
00031 {
00032 m_rowLayout=_lay;
00033 }
00034
00035 void RowIface::update()
00036 {
00037
00038 }
00039
00040 int RowIface::row()
00041 {
00042 return m_rowLayout->row();
00043 }
00044
00045 void RowIface::setHide(bool _hide)
00046 {
00047 m_rowLayout->setHide(_hide);
00048 }
00049
00050 bool RowIface::isHide()const
00051 {
00052 return m_rowLayout->isHide();
00053 }
00054
00055 void RowIface::setHeight( int _h )
00056 {
00057 m_rowLayout->setHeight(_h);
00058 }
00059
00060 int RowIface::height()
00061 {
00062 return m_rowLayout->height();
00063 }
|