~ubuntu-branches/ubuntu/natty/kdemultimedia/natty-proposed

« back to all changes in this revision

Viewing changes to kmix/viewdockareapopup.h

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers
  • Date: 2011-05-26 02:41:36 UTC
  • mfrom: (0.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 108.
  • Revision ID: james.westby@ubuntu.com-20110526024136-jjwsigfy402jhupm
Tags: upstream-4.6.3
ImportĀ upstreamĀ versionĀ 4.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//-*-C++-*-
2
 
/*
3
 
 * KMix -- KDE's full featured mini mixer
4
 
 *
5
 
 * Copyright Christian Esken <esken@kde.org>
6
 
 *
7
 
 * This program is free software; you can redistribute it and/or
8
 
 * modify it under the terms of the GNU Library General Public
9
 
 * License as published by the Free Software Foundation; either
10
 
 * version 2 of the License, or (at your option) any later version.
11
 
 *
12
 
 * This program is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 
 * Library General Public License for more details.
16
 
 *
17
 
 * You should have received a copy of the GNU Library General Public
18
 
 * License along with this program; if not, write to the Free
19
 
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
 
 */
21
 
#ifndef ViewDockAreaPopup_h
22
 
#define ViewDockAreaPopup_h
23
 
 
24
 
#include "viewbase.h"
25
 
 
26
 
class QMouseEvent;
27
 
class QFrame;
28
 
class QGridLayout;
29
 
class QPushButton;
30
 
class QTime;
31
 
class QWidget;
32
 
 
33
 
class Mixer;
34
 
class MixDeviceWidget;
35
 
class MixDevice;
36
 
class KMixWindow;
37
 
 
38
 
class ViewDockAreaPopup : public ViewBase
39
 
{
40
 
    Q_OBJECT
41
 
public:
42
 
    ViewDockAreaPopup(QWidget* parent, const char* name, Mixer* mixer, ViewBase::ViewFlags vflags, GUIProfile *guiprof, KMixWindow *dockW);
43
 
    ~ViewDockAreaPopup();
44
 
    MixDevice* dockDevice();
45
 
 
46
 
    virtual void setMixSet();
47
 
    virtual QWidget* add(MixDevice *mdw);
48
 
    virtual void constructionFinished();
49
 
    virtual void refreshVolumeLevels();
50
 
    virtual void showContextMenu();
51
 
 
52
 
    //QSize sizeHint() const;
53
 
 
54
 
protected:
55
 
    MixDeviceWidget *_mdw;
56
 
    KMixWindow  *_dock;
57
 
    //MixDevice       *_dockDevice;
58
 
    QPushButton     *_showPanelBox;
59
 
 
60
 
    void wheelEvent ( QWheelEvent * e );
61
 
 
62
 
private:
63
 
    QGridLayout* _layoutMDW;
64
 
 
65
 
private slots:
66
 
    void showPanelSlot();
67
 
 
68
 
};
69
 
 
70
 
#endif
71