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.
tdegraphics/kviewshell/kprintDialogPage_pageoptions.h

44 lines
1.1 KiB

// -*- C++ -*-
// KPrintDialogPage_PageOptions.h
//
// Part of KVIEWSHELL - A framework for multipage text/gfx viewers
//
// (C) 2005 Stefan Kebekus
// Distributed under the GPL
// Add header files alphabetically
#ifndef KPRINTDIALOGPAGE_PAGEOPTIONS_H
#define KPRINTDIALOGPAGE_PAGEOPTIONS_H
#include <kdeprint/kprintdialogpage.h>
class QCheckBox;
class QVBoxLayout;
// This is a fairly standard KPrintDialogPage that allows the user to
// chose page size & placement options: center page on paper, shrink
// oversized pages, and expand small pages
class KPrintDialogPage_PageOptions : public KPrintDialogPage
{
public:
KPrintDialogPage_PageOptions( QWidget *parent = 0, const char *name = 0 );
void getOptions( QMap<QString,QString>& opts, bool incldef = false );
void setOptions( const QMap<QString,QString>& opts );
bool isValid( QString& msg );
QCheckBox* checkBox_center;
QCheckBox* checkBox_rotate;
QCheckBox* checkBox_shrink;
QCheckBox* checkBox_expand;
private:
QVBoxLayout* kprintDialogPage_pageoptions_baseLayout;
};
#endif // KPRINTDIALOGPAGE_PAGEOPTIONS_H