summaryrefslogtreecommitdiffstats
path: root/kviewshell/plugins/djvu/kprintDialogPage_DJVUpageoptions.h
blob: 5bb5833eda4adb8e6569b06dd30fb369b6dedea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// 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_DJVUPAGEOPTIONS_H
#define KPRINTDIALOGPAGE_DJVUPAGEOPTIONS_H


#include <kdeprint/kprintdialogpage.h>


class TQVBoxLayout;
class TQCheckBox;


// This is a fairly standard KPrintDialogPage that allows the user to
// chose page size & placement options: shrink oversized pages, and
// expand small pages

class KPrintDialogPage_DJVUPageOptions : public KPrintDialogPage
{
 public:
  KPrintDialogPage_DJVUPageOptions( TQWidget *parent = 0, const char *name = 0 );
  
  void getOptions( TQMap<TQString,TQString>& opts, bool incldef = false );
  void setOptions( const TQMap<TQString,TQString>& opts );
  bool isValid( TQString& msg );

  TQCheckBox* checkBox_rotate;
  TQCheckBox* checkBox_fitpage;

 private:
  TQVBoxLayout* kprintDialogPage_pageoptions_baseLayout;
};


#endif // KPRINTDIALOGPAGE_PAGEOPTIONS_H