~ubuntu-branches/ubuntu/quantal/digikam/quantal

« back to all changes in this revision

Viewing changes to core/libs/dimg/filters/bw/mixersettings.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-10 17:30:36 UTC
  • mfrom: (1.2.37)
  • Revision ID: package-import@ubuntu.com-20111210173036-5s24adklt9vpqsac
Tags: 2:2.4.1-0ubuntu1
* New upstream release
* Build-dep on mysql-server-5.5
* Add kubuntu_disable_kvkontakte.diff to disable libkvkontakte which
  has compile failures, disable in debian/rules and debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 * Date        : 2009-02-18
7
7
 * Description : Channel mixer settings view.
8
8
 *
9
 
 * Copyright (C) 2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
9
 * Copyright (C) 2010-2011 by Gilles Caulier <caulier dot gilles at gmail dot com>
10
10
 *
11
11
 * This program is free software; you can redistribute it
12
12
 * and/or modify it under the terms of the GNU General
61
61
    void loadSettings();
62
62
    void saveAsSettings();
63
63
 
64
 
    void setCurrentChannel(int);
65
 
    int  currentChannel();
 
64
    int  currentChannel() const;
 
65
 
 
66
    void setMonochromeTipsVisible(bool b);
66
67
 
67
68
Q_SIGNALS:
68
69
 
69
70
    void signalSettingsChanged();
70
71
    void signalMonochromeActived(bool);
 
72
    void signalOutChannelChanged();
71
73
 
72
74
private:
73
75
 
74
76
    void updateSettingsWidgets();
 
77
    void updateTotalPercents();
75
78
 
76
79
private Q_SLOTS:
77
80
 
79
82
    void slotGainsChanged();
80
83
    void slotMonochromeActived(bool);
81
84
    void slotLuminosityChanged(bool);
 
85
    void slotOutChannelChanged();
82
86
 
83
87
private:
84
88