~ubuntu-branches/ubuntu/utopic/fceux/utopic

« back to all changes in this revision

Viewing changes to src/drivers/win/taseditor/piano_roll.h

  • Committer: Package Import Robot
  • Author(s): Joe Nahmias
  • Date: 2014-03-02 19:22:04 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140302192204-9f0aehi5stfnhn7d
Tags: 2.2.2+dfsg0-1
* Imported Upstream version 2.2.2
  + remove patches merged upstream; refresh remaining
  + remove windows compiled help files and non-free Visual C files
* Use C++11 standard static assertion functionality
* fix upstream installation of support files
* New patch 0004-ignore-missing-windows-help-CHM-file.patch
* update d/copyright for new, renamed, deleted files
* d/control: bump std-ver to 3.9.5, no changes needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
        void updateLinesCount();
167
167
        bool isLineVisible(int frame);
168
168
 
 
169
        void recalculatePlaybackCursorOffset();
 
170
 
169
171
        void followPlaybackCursor();
170
172
        void followPlaybackCursorIfNeeded(bool followPauseframe = true);
 
173
        void updatePlaybackCursorPositionInPianoRoll();
171
174
        void followPauseframe();
172
175
        void followUndoHint();
173
176
        void followSelection();
223
226
 
224
227
private:
225
228
        void centerListAroundLine(int rowIndex);
 
229
        void setListTopRow(int rowIndex);
226
230
 
227
231
        void handlePlaybackCursorDragging();
228
232
        void finishDrag();
232
236
        int nextHeaderUpdateTime;
233
237
 
234
238
        bool mustRedrawList;
 
239
        int playbackCursorOffset;
235
240
 
236
241
        HMENU hrMenu;
237
242