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

« back to all changes in this revision

Viewing changes to src/Common/gang.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
 * based on previous GPL code from qpfstmo
 
23
 */
 
24
 
 
25
#ifndef GANG_H
 
26
#define GANG_H
 
27
 
 
28
#include <QSlider>
 
29
#include <QDoubleSpinBox>
 
30
 
 
31
class Gang : public QObject
 
32
{
 
33
        Q_OBJECT
 
34
public:
 
35
        Gang(QSlider* s_, QDoubleSpinBox* dsb_, 
 
36
                const float minv_, const float maxv_, 
 
37
                const float vv, const bool logs = false);
 
38
        
 
39
        float v() const { return v_; };
 
40
        void setDefault();
 
41
        bool changed() const { return changed_; };
 
42
        QString flag(const QString f) const;
 
43
        QString fname(const QString f) const;
 
44
        float p2v(const int p) const;
 
45
        int v2p(const float x) const;
 
46
public slots:
 
47
        void sliderMoved(int p);
 
48
        void sliderValueChanged(int p);
 
49
//      void spinboxFocusEnter();
 
50
        void spinboxValueChanged(double);
 
51
signals:
 
52
        void finished();
 
53
private:
 
54
        QSlider *s;
 
55
        QDoubleSpinBox *dsb;
 
56
        float minv;
 
57
        float maxv;
 
58
        float defaultv;
 
59
        bool logscaling;
 
60
        float v_;
 
61
        bool value_from_text;
 
62
        bool value_from_slider;
 
63
        bool graphics_only;
 
64
        bool changed_;
 
65
};
 
66
 
 
67
#endif