summaryrefslogtreecommitdiffstats
path: root/kgamma/kcmkgamma/gammactrl.h
blob: 75dfa775dd33d462a21eeee3349d0a7516db08ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/***************************************************************************
                          gammactrl.h  -  description
                             -------------------
    begin                : Sun Oct 7 2001
    copyright            : (C) 2001 by Michael v.Ostheim
    email                : MvOstheim@web.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/
/**A horizontal slider and a text field for the gamma value.
  *@author Michael v.Ostheim
  */

#ifndef GAMMACTRL_H
#define GAMMACTRL_H

#include <tqhbox.h>
#include <tqslider.h>

class TQString;
class DisplayNumber;
class XVidExtWrap;

class GammaCtrl : public TQHBox  {

  Q_OBJECT
  TQ_OBJECT
  public:
    /** construktor */
    GammaCtrl(TQWidget *tqparent=0, XVidExtWrap *xvid=0, int channel=0, \
      const TQString& mingamma="0.40", const TQString& maxgamma="3.50", \
      const TQString& setgamma="1.00", const char *name=0 );
    /** destruktor */
    ~GammaCtrl();
    /** Return the current gamma value with precision prec */
    TQString gamma(int);
    /** Set gamma, slider and textfield */
    void setGamma(const TQString&);
    /** Set slider and textfield */
    void setControl(const TQString&);
    /** Disable the slider */
    void disableSlider() { slider->setDisabled(true);};

  private:
    TQString mgamma;
    TQSlider *slider;
    DisplayNumber *textfield;
    bool suspended, changed;
    int gchannel, oldpos;
    double ming;
    XVidExtWrap *xv;

  public slots:
    /** Disable textfield */
    void suspend();

  protected slots:
    /** Set slider and textfield */
    void setCtrl(int);
    /** Set gamma and textfield */
    void setGamma(int);
    /** Change status of GammaCtrl when pressed */
    void pressed();

  signals:
    /** Gamma change signal */
    void gammaChanged(int);
};

#endif