aboutsummaryrefslogtreecommitdiff
path: root/mainwindow.h
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2015-06-14 17:17:12 +0200
committerJavier <dev.git@javispedro.com>2015-06-14 17:17:12 +0200
commite3c4aa5dffecc8f62958c44035b2e58de0228eb4 (patch)
tree8fb5f24098e094fe1f103092c6fed07a116cb91a /mainwindow.h
parentaa2999041d405215d5a7e8c494e276ebbfc089fc (diff)
downloadscribiu-e3c4aa5dffecc8f62958c44035b2e58de0228eb4.tar.gz
scribiu-e3c4aa5dffecc8f62958c44035b2e58de0228eb4.zip
better synchronization status reporting
Diffstat (limited to 'mainwindow.h')
-rw-r--r--mainwindow.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/mainwindow.h b/mainwindow.h
index 9bce36a..72d8898 100644
--- a/mainwindow.h
+++ b/mainwindow.h
@@ -2,6 +2,7 @@
#define MAINWINDOW_H
#include <QtGui/QMainWindow>
+#include <QtGui/QLabel>
#include <phonon/MediaObject>
#include <phonon/AudioOutput>
#include "notebookmodel.h"
@@ -30,6 +31,7 @@ public slots:
private slots:
void handleNotebookSelected(const QModelIndex &index);
+ void handleNotebookRowsInserted(const QModelIndex &index, int start, int end);
void handleCurPageChanged();
void handlePaperReplaySelected(const QModelIndex &index);
void handlePaperReplayRequested(const QString &file, qint64 time);
@@ -38,6 +40,7 @@ private slots:
void handleMediaStateChange(Phonon::State state);
void handleMediaTotalTimeChanged(qint64 time);
void handleMediaTick(qint64 time);
+ void handlePensBeingSynchronizedChanged();
void handleExport();
private:
@@ -57,6 +60,8 @@ private:
PaperReplay *_replay;
PaperReplayModel *_replayModel;
+
+ QLabel *_statusLabel;
};
#endif // MAINWINDOW_H