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

« back to all changes in this revision

Viewing changes to src/TransplantExif/transplant.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 TRANSPLANT_IMPL_H
 
25
#define TRANSPLANT_IMPL_H
 
26
 
 
27
#include <QDialog>
 
28
#include <QSettings>
 
29
#include <QSortFilterProxyModel>
 
30
#include <QStringListModel>
 
31
#include "../generated_uic/ui_transplantexifdialog.h"
 
32
 
 
33
class TransplantExifDialog : public QDialog, private Ui::TransplantExifDialog {
 
34
Q_OBJECT
 
35
public:
 
36
        TransplantExifDialog(QWidget *);
 
37
        ~TransplantExifDialog();
 
38
private:
 
39
        int start_left,stop_left,start_right,stop_right;
 
40
        QStringList from,to;
 
41
        bool done;
 
42
        void updateinterval(bool);
 
43
        QSettings settings;
 
44
        QString RecentDirEXIFfrom;
 
45
        QString RecentDirEXIFto;
 
46
        //fuction that adds a log message to the model
 
47
        void add_log_message(const QString &);
 
48
        //the class that performs regexp filtering
 
49
        QSortFilterProxyModel *log_filter;
 
50
        //the model that holds the data
 
51
        QStringListModel *full_Log_Model;
 
52
private slots:
 
53
        void transplant_requested();
 
54
        void help_requested();
 
55
        void moveup_left();
 
56
        void moveup_right();
 
57
        void movedown_left();
 
58
        void movedown_right();
 
59
        void remove_left();
 
60
        void remove_right();
 
61
        void append_left();
 
62
        void append_right();
 
63
        void filterChanged(const QString&);
 
64
        void filterComboBoxActivated(int);
 
65
};
 
66
#endif