diff options
Diffstat (limited to 'kspread/dialogs/kspread_dlg_paperlayout.h')
-rw-r--r-- | kspread/dialogs/kspread_dlg_paperlayout.h | 59 |
1 files changed, 30 insertions, 29 deletions
diff --git a/kspread/dialogs/kspread_dlg_paperlayout.h b/kspread/dialogs/kspread_dlg_paperlayout.h index 93981628..a7316f22 100644 --- a/kspread/dialogs/kspread_dlg_paperlayout.h +++ b/kspread/dialogs/kspread_dlg_paperlayout.h @@ -20,16 +20,16 @@ * Boston, MA 02110-1301, USA. */ -#ifndef __kspread_dlg_paperlayout__ -#define __kspread_dlg_paperlayout__ +#ifndef __kspread_dlg_papertqlayout__ +#define __kspread_dlg_papertqlayout__ #include <kdialogbase.h> #include <KoPageLayoutDia.h> -class QCheckBox; -class QComboBox; -class QRadioButton; -class QLineEdit; +class TQCheckBox; +class TQComboBox; +class TQRadioButton; +class TQLineEdit; namespace KSpread { @@ -39,14 +39,15 @@ class View; class PaperLayout: public KoPageLayoutDia { Q_OBJECT + TQ_OBJECT public: - PaperLayout( QWidget* parent, const char* name, - const KoPageLayout& layout, + PaperLayout( TQWidget* tqparent, const char* name, + const KoPageLayout& tqlayout, const KoHeadFoot& headfoot, int tabs, KoUnit::Unit unit, Sheet * sheet, View *view); - bool eventFilter( QObject* obj, QEvent* ev ); + bool eventFilter( TQObject* obj, TQEvent* ev ); protected slots: virtual void slotOk(); @@ -57,36 +58,36 @@ protected: void initTab(); protected: - virtual void closeEvent ( QCloseEvent * ); + virtual void closeEvent ( TQCloseEvent * ); private slots: void slotChooseZoom( int index ); void slotChoosePageLimit( int index ); private: - void initGeneralOptions( QWidget * tab, QVBoxLayout * vbox ); - void initRanges( QWidget * tab, QVBoxLayout * vbox ); - void initScaleOptions( QWidget * tab, QVBoxLayout * vbox ); + void initGeneralOptions( TQWidget * tab, TQVBoxLayout * vbox ); + void initRanges( TQWidget * tab, TQVBoxLayout * vbox ); + void initScaleOptions( TQWidget * tab, TQVBoxLayout * vbox ); Sheet * m_pSheet; View * m_pView; - QCheckBox * pApplyToAll; - QCheckBox * pPrintGrid; - QCheckBox * pPrintCommentIndicator; - QCheckBox * pPrintFormulaIndicator; - QCheckBox * pPrintObjects; - QCheckBox * pPrintCharts; - QCheckBox * pPrintGraphics; - QLineEdit * ePrintRange; - QLineEdit * eRepeatCols; - QLineEdit * eRepeatRows; - QLineEdit * m_focus; - QComboBox * m_cZoom; - QComboBox * m_cLimitPagesX; - QComboBox * m_cLimitPagesY; - QRadioButton * m_rScalingZoom; - QRadioButton * m_rScalingLimitPages; + TQCheckBox * pApplyToAll; + TQCheckBox * pPrintGrid; + TQCheckBox * pPrintCommentIndicator; + TQCheckBox * pPrintFormulaIndicator; + TQCheckBox * pPrintObjects; + TQCheckBox * pPrintCharts; + TQCheckBox * pPrintGraphics; + TQLineEdit * ePrintRange; + TQLineEdit * eRepeatCols; + TQLineEdit * eRepeatRows; + TQLineEdit * m_focus; + TQComboBox * m_cZoom; + TQComboBox * m_cLimitPagesX; + TQComboBox * m_cLimitPagesY; + TQRadioButton * m_rScalingZoom; + TQRadioButton * m_rScalingLimitPages; }; } // namespace KSpread |