~ubuntu-branches/ubuntu/hardy/kdenlive/hardy

« back to all changes in this revision

Viewing changes to kdenlive/printproperties.h

  • Committer: Bazaar Package Importer
  • Author(s): Albin Tonnerre
  • Date: 2008-01-30 17:07:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080130170751-lyc8p6xvd7o98ur5
Tags: 0.5.svn20071228-0.0ubuntu1
* Merge from debian-multimedia (LP: #150453). Remaining changes:
  - Bump compat to 5
  - Suggest dvgrab and ffmpeg (needed for firewire capture)
  - debian/{rules,control}: add a kdenlive-data package
  - Add .install files for kdenlive and kdenlive-data
  - debian/copyright: add some copyright information
  - Modify Maintainer value to match the DebianMaintainerField specification

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          printproperties  -  description
 
3
                             -------------------
 
4
    begin                : Sat Jul 28 2007
 
5
    copyright            : (C) 2007 by Jean-Baptiste Mardelle
 
6
    email                : jb@kdenlive.org
 
7
 ***************************************************************************/
 
8
 
 
9
/***************************************************************************
 
10
 *                                                                         *
 
11
 *   This program is free software; you can redistribute it and/or modify  *
 
12
 *   it under the terms of the GNU General Public License as published by  *
 
13
 *   the Free Software Foundation; either version 2 of the License, or     *
 
14
 *   (at your option) any later version.                                   *
 
15
 *                                                                         *
 
16
 ***************************************************************************/
 
17
 
 
18
 
 
19
 
 
20
#ifndef PRINTPROPS_H
 
21
#define PRINTPROPS_H
 
22
 
 
23
// include files for Qt
 
24
#include <qcheckbox.h>
 
25
#include <qcombobox.h>
 
26
 
 
27
#include <klocale.h>
 
28
#include <kdeprint/kprintdialogpage.h>
 
29
 
 
30
class PrintSettings : public KPrintDialogPage
 
31
{
 
32
public:
 
33
        PrintSettings( QWidget *parent = 0, const char *name = 0 );
 
34
 
 
35
        void setOptions(const QMap<QString,QString>& opts);
 
36
        void getOptions(QMap<QString,QString>& opts, bool include_def = false);
 
37
        bool isValid(QString& msg);
 
38
private:
 
39
        QCheckBox       *m_printFullPath;
 
40
        QCheckBox       *m_printFilter;
 
41
        QCheckBox       *m_printGray;
 
42
        QComboBox       *m_images;
 
43
 
 
44
};
 
45
 
 
46
#endif