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

« back to all changes in this revision

Viewing changes to src/Resize/resizedialog_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 RESIZEDIALOG_IMPL_H
25
 
#define RESIZEDIALOG_IMPL_H
26
 
 
27
 
#include <QDialog>
28
 
#include "../generated_uic/ui_resizedialog.h"
29
 
#include "../Libpfs/pfs.h"
30
 
 
31
 
class ResizeDialog : public QDialog, private Ui::ResizeDialog
32
 
{
33
 
Q_OBJECT
34
 
public:
35
 
        ResizeDialog(QWidget *parent,pfs::Frame *orig);
36
 
        ~ResizeDialog();
37
 
        pfs::Frame* getResizedFrame();
38
 
public slots:
39
 
        void scaledPressed();
40
 
        void switch_px_percentage(int);
41
 
        void update_heightSpinBox();
42
 
        void update_widthSpinBox();
43
 
        void defaultpressed();
44
 
private:
45
 
        pfs::Frame *original;
46
 
        pfs::Frame *resized;
47
 
        int orig_width,orig_height;
48
 
        int resized_width,resized_height;
49
 
        void updatelabel();
50
 
        int rh_from_rw();
51
 
        int rw_from_rh();
52
 
        bool from_other_spinbox;
53
 
};
54
 
 
55
 
#endif