~ubuntu-branches/ubuntu/karmic/rosegarden/karmic

« back to all changes in this revision

Viewing changes to src/gui/general/RosegardenCanvasView.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-05-02 00:33:44 UTC
  • mfrom: (1.1.7 upstream) (6.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080502003344-67vbfhgqx2yl0ksi
Tags: 1:1.7.0-1ubuntu1
* Merge from Debian unstable. (LP: #225849) Remaining Ubuntu changes:
  - Add usr/share/doc/kde/HTML to rosegarden-data, to provide online
    help documentation.
  - Change fftw3-dev to libfftw3-dev.
  - Update maintainer field as per spec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
    Rosegarden
6
6
    A MIDI and audio sequencer and musical notation editor.
7
7
 
8
 
    This program is Copyright 2000-2007
 
8
    This program is Copyright 2000-2008
9
9
        Guillaume Laurent   <glaurent@telegraph-road.org>,
10
10
        Chris Cannam        <cannam@all-day-breakfast.com>,
11
11
        Richard Bown        <richard.bown@ferventsoftware.com>
80
80
 
81
81
    void updateBottomWidgetGeometry();
82
82
 
 
83
    /**
 
84
     * Sets the widget which will be between the scrollable part of the view
 
85
     * and the left edge of the view.
 
86
     */
 
87
    void setLeftFixedWidget(QWidget*);
 
88
 
 
89
    void updateLeftWidgetGeometry();
 
90
 
83
91
    /// Map a point with the inverse world matrix
84
92
    QPoint inverseMapPoint(const QPoint& p) { return inverseWorldMatrix().map(p); }
85
93
 
154
162
    QWidget* m_bottomWidget;
155
163
    int m_currentBottomWidgetHeight;
156
164
 
 
165
    QWidget* m_leftWidget;
 
166
 
157
167
    bool m_smoothScroll;
158
168
    int m_smoothScrollTimeInterval;
159
169
    float m_minDeltaScroll;