comparison src/MainWindow.h @ 281:2a18f846dd6c

implemented move by one note (replacing big jumps left/right)
author matthiasm
date Thu, 22 May 2014 17:49:58 +0100
parents 46d59edfd18a
children 604816843bd4
comparison
equal deleted inserted replaced
280:3fe77ed06eba 281:2a18f846dd6c
169 169
170 virtual void selectionChangedByUser(); 170 virtual void selectionChangedByUser();
171 virtual void regionOutlined(QRect); 171 virtual void regionOutlined(QRect);
172 172
173 virtual void analyseNewMainModel(); 173 virtual void analyseNewMainModel();
174
175 void moveOneNoteRight();
176 void moveOneNoteLeft();
174 177
175 protected: 178 protected:
176 Analyser *m_analyser; 179 Analyser *m_analyser;
177 180
178 Overview *m_overview; 181 Overview *m_overview;
237 virtual void closeEvent(QCloseEvent *e); 240 virtual void closeEvent(QCloseEvent *e);
238 bool checkSaveModified(); 241 bool checkSaveModified();
239 242
240 virtual void updateVisibleRangeDisplay(Pane *p) const; 243 virtual void updateVisibleRangeDisplay(Pane *p) const;
241 virtual void updatePositionStatusDisplays() const; 244 virtual void updatePositionStatusDisplays() const;
245
246 void moveByOneNote(bool right);
242 }; 247 };
243 248
244 249
245 #endif 250 #endif