~ubuntu-branches/ubuntu/natty/qtpfsgui/natty

« back to all changes in this revision

Viewing changes to src/Common/commandline.h

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-01-06 04:39:36 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080106043936-a9u9g7yih3w16ru5
Tags: 1.9.0-1
* New upstream release.
* Replace “COPYING” with “LICENSE” in the NOT_NEEDED variable of
  debian/rules, following upstream's renaming.
* Update debian/links accordingly.
* Delete the matching TODO item since there's no longer needed to have a
  patched (with HTML tags) license file to get a correct display in the
  “License agreement” tab.
* Update the gcc4.3 patch (drop the hunk touching src/Libpfs/pfs.cpp):
   - 20_gcc4.3_includes.
* Add a link from /usr/share/qtpfsgui/html to the HTML documentation
  under /usr/share/doc/qtpfsgui/html since the former is used at runtime
  to display the manual.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * This file is a part of Qtpfsgui package.
 
3
 * ---------------------------------------------------------------------- 
 
4
 * Copyright (C) 2006,2007 Giuseppe Rota
 
5
 * 
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; either version 2 of the License, or
 
9
 *  (at your option) any later version.
 
10
 *
 
11
 *  This program is distributed in the hope that it will be useful,
 
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *  GNU General Public License for more details.
 
15
 *
 
16
 *  You should have received a copy of the GNU General Public License
 
17
 *  along with this program; if not, write to the Free Software
 
18
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
 * ---------------------------------------------------------------------- 
 
20
 *
 
21
 * @author Giuseppe Rota <grota@users.sourceforge.net>
 
22
 */
 
23
 
 
24
#ifndef COMMANDLINE_H
 
25
#define COMMANDLINE_H
 
26
 
 
27
#include <QString>
 
28
#include <QProcess>
 
29
#include <QDir>
 
30
#include "../HdrCreation/HdrCreationManager.h"
 
31
 
 
32
class CommandLineInterfaceManager : public QObject {
 
33
Q_OBJECT
 
34
public:
 
35
        CommandLineInterfaceManager(const int argc, char **argv);
 
36
private:
 
37
        enum operation_mode {
 
38
                CREATE_HDR_MODE,
 
39
                LOAD_HDR_MODE,
 
40
                UNKNOWN_MODE
 
41
        } operation_mode;
 
42
        
 
43
        enum align_mode {
 
44
                AIS_ALIGN,
 
45
                MTB_ALIGN,
 
46
                NO_ALIGN,
 
47
        } align_mode;
 
48
 
 
49
        const int argc;
 
50
        char **argv;
 
51
        
 
52
        float toFloatWithErrMsg(const QString &str);
 
53
        int toIntWithErrMsg(const QString &str);
 
54
        void startTonemap();
 
55
 
 
56
        QList<float> ev;
 
57
        HdrCreationManager *hdrCreationManager;
 
58
        QString saveHdrFilename;
 
59
        QString saveLdrFilename;
 
60
        qtpfsgui_opts *qtpfsgui_options;
 
61
        pfs::Frame *HDR;
 
62
        void saveHDR();
 
63
        void printHelp(char *progname);
 
64
        tonemapping_options *tmopts;
 
65
        bool verbose;
 
66
private slots:
 
67
        void finishedLoadingInputFiles(QStringList);
 
68
        void errorWhileLoading(QString errormessage);
 
69
        void ais_failed(QProcess::ProcessError);
 
70
        void createHDR();
 
71
        void loadFinished(pfs::Frame*,QString);
 
72
        void parseArgs();
 
73
        void tonemapTerminated(const QImage&,tonemapping_options*);
 
74
 
 
75
signals:
 
76
        void startParsing();
 
77
        void finishedParsing();
 
78
};
 
79
 
 
80
#endif