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

« back to all changes in this revision

Viewing changes to src/ToneMappingDialog/tonemappingdialog_impl.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 TONEMAPPINGDIALOG_IMPL_H
25
 
#define TONEMAPPINGDIALOG_IMPL_H
26
 
 
27
 
#include <QSettings>
28
 
#include <QWorkspace>
29
 
 
30
 
#include "../generated_uic/ui_tonemappingdialog.h"
31
 
#include "../Libpfs/pfs.h"
32
 
#include "tonemapping_widget.h"
33
 
 
34
 
class TonemappingWindow : public QMainWindow, public Ui::TonemappingWindow
35
 
{
36
 
Q_OBJECT
37
 
 
38
 
public:
39
 
        TonemappingWindow(QWidget *parent, pfs::Frame* &f, QString cachepath, QString prefixname);
40
 
        ~TonemappingWindow();
41
 
protected:
42
 
        void closeEvent ( QCloseEvent * );
43
 
signals:
44
 
        void closing();
45
 
private:
46
 
        QWorkspace* workspace;
47
 
        QSettings settings;
48
 
        QString recentPathSaveLDR, prefixname;
49
 
//      void writeExifData(const QString);
50
 
 
51
 
private slots:
52
 
        void addMDIresult(const QImage&,tonemapping_options*);
53
 
        void LevelsRequested(bool);
54
 
        void levels_closed();
55
 
        void updateActions(QWidget *);
56
 
        void viewAllAsThumbnails();
57
 
        void current_ldr_fit_to_win(bool);
58
 
        void close_all();
59
 
        void saveLDR();
60
 
        void enterWhatsThis();
61
 
};
62
 
#endif