You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/kword/KWTableTemplateSelector.h

129 lines
3.9 KiB

/* This file is part of the KDE project
Copyright (C) 2002 Nash Hoogwater <nrhoogwater@wanadoo.nl>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; using
version 2 of the License.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef kwtabletemplateselector_h
#define kwtabletemplateselector_h
#include <tqwidget.h>
#include <tqgroupbox.h>
#include <tqptrlist.h>
#include <tqlabel.h>
#include <tqpushbutton.h>
/*#include <tqlayout.h>
#include <tqfont.h>
#include <tqbrush.h>
*/
class TQListBox;
class TQCheckBox;
class TQButtonGroup;
class TQGroupBox;
class TQRect;
class KWTableTemplate;
class KWTableTemplateCollection;
class KoRect;
class KoTextZoomHandler;
class KWTextDocument;
class KWDocument;
class KWTableFrameSet;
class KWTableStyle;
/******************************************************************/
/* Class: KWTableTemplatePreview */
/******************************************************************/
class KWTableTemplatePreview : public TQGroupBox
{
TQ_OBJECT
public:
KWTableTemplatePreview( const TQString& title, KWTableStyle *_emptyStyle, TQWidget* parent, const char* name=0L );
~KWTableTemplatePreview();
void setTableTemplate(KWTableTemplate *_tableTemplate);
KWTableTemplate *getTableTemplate()const ;
void disableRepaint(bool _b) { m_disableRepaint =_b;}
public slots:
void cbFirstRowChanged( bool );
void cbFirstColChanged( bool );
void cbLastRowChanged( bool );
void cbLastColChanged( bool );
void cbBodyChanged( bool );
protected:
int bottomBorder(const int rows, const int cols, const int rowpos, const int colpos);
int rightBorder(const int rows, const int cols, const int rowpos, const int colpos);
void drawCell( TQPainter *p, const KWTableStyle *ts, const TQRect globalRect,
const int rows, int cols, int rowpos, int colpos, const TQString & txt);
void drawPreviewTable(TQPainter *p, int rows, int cols, TQRect globalRect);
void drawContents( TQPainter *p );
void setSpecialCells(KWTableTemplate *);
KWTableStyle *m_emptyStyle;
KWTextDocument *m_textdoc;
KoTextZoomHandler *m_zoomHandler;
KWTableTemplate *tableTemplate;
KWTableTemplate *origTableTemplate;
//necessary when we init preview
bool m_disableRepaint;
private:
TQString m_contents[2][5];
void fillContents();
};
/******************************************************************/
/* Class: KWTableTemplateSelector */
/******************************************************************/
class KWTableTemplateSelector : public TQWidget
{
TQ_OBJECT
public:
enum FormatType { FirstRow = 1 , FirstColumn = 2, LastRow = 4, LastCol =8, Body =16 };
KWTableTemplateSelector( KWDocument *_doc, TQWidget * _parent, const TQString & _tableTemplate, int _type = 31 , const char * _name = 0 );
KWTableTemplate *getTableTemplate()const ;
int getFormatType() const ;
protected:
KWDocument *m_doc;
KWTableTemplatePreview *preview;
TQLabel *lTemplates;
TQListBox *lbTemplates;
TQPushButton *pbCustomize;
TQButtonGroup *bgCustomize;
TQCheckBox *cbFirstRow, *cbFirstCol, *cbLastRow, *cbLastCol, *cbBody;
int selectedTableTemplate;
void initFormat( int format);
void initPreview();
protected slots:
void changeTableTemplate();
};
#endif