diff view/ViewManager.h @ 222:cd81066ac7ad

* More useful status bar text -- show the current play time and the extents of the visible area * Add update-i18n.sh to update the i18n/ts and qm files -- I can't get qmake to do the right thing now that the project file has been split up into several project files * Fix missing Q_OBJECTs, etc, reported by lupdate * Update Russian translation from AlexandrE
author Chris Cannam
date Wed, 07 Mar 2007 17:07:02 +0000
parents e2baee498ec8
children 9465b5375235
line wrap: on
line diff
--- a/view/ViewManager.h	Mon Mar 05 15:32:55 2007 +0000
+++ b/view/ViewManager.h	Wed Mar 07 17:07:02 2007 +0000
@@ -147,11 +147,8 @@
     /** Emitted when user scrolls a view, but doesn't affect global centre. */
     void viewCentreFrameChanged(View *v, unsigned long frame);
 
-    /** Emitted when a view zooms.  The originator identifies the view. */
-    void zoomLevelChanged(void *originator, unsigned long zoom, bool locked);
-
     /** Emitted when a view zooms. */
-    void zoomLevelChanged();
+    void viewZoomLevelChanged(View *v, unsigned long zoom, bool locked);
 
     /** Emitted when the playback frame changes. */
     void playbackFrameChanged(unsigned long frame);
@@ -184,12 +181,13 @@
 
 public slots:
     void viewCentreFrameChanged(unsigned long, bool, PlaybackFollowMode);
+    void viewZoomLevelChanged(unsigned long, bool);
 
 protected slots:
     void checkPlayStatus();
     void playStatusChanged(bool playing);
     void seek(unsigned long);
-    void considerZoomChange(void *, unsigned long, bool);
+//!!!    void considerZoomChange(void *, unsigned long, bool);
 
 protected:
     AudioPlaySource *m_playSource;