cutter/src/common/CutterSeekable.h

81 lines
1.8 KiB
C
Raw Normal View History

#pragma once
#include "Cutter.h"
class MainWindow;
class CutterSeekable : public QObject
{
Q_OBJECT
public:
explicit CutterSeekable(QObject *parent = nullptr);
~CutterSeekable();
/**
* @brief seek changes current offset.
* If the seekable is synchronized with Core, then
* the Core offset will be modified and then the CutterCore::seekChanged
* signal will be emitted.
* In any case, CutterSeekable::seekableSeekChanged is emitted.
* @param addr the location to seek at.
*/
void seek(RVA addr);
/**
* @brief toggleSyncWithCore toggles
* Core seek synchronization.
*/
void toggleSynchronization();
/**
* @brief getOffset returns the seekable offset.
* If the seekable is synchronized with Core, this function
* is similar to Core()->getOffset.
* If it's not synchronized, it will return the seekable current seek.
* @return the seekable current offset.
*/
RVA getOffset();
/**
* @brief isSynchronized tells whether the seekable
* is synchronized with Core or not.
* @return boolean
*/
bool isSynchronized();
public slots:
/**
* @brief seekPrev seeks to last location.
*/
void seekPrev();
private slots:
/**
* @brief onCoreSeekChanged
*/
void onCoreSeekChanged(RVA addr);
private:
/**
* @brief widgetOffset widget seek location.
*/
RVA widgetOffset = RVA_INVALID;
/**
* @brief previousOffset last seek location.
* @todo maybe use an actual history?
*/
RVA previousOffset = RVA_INVALID;
/**
* @brief synchronized tells with the seekable's offset is
* synchronized with core or not.
*/
bool synchronized = true;
signals:
void seekableSeekChanged(RVA addr);
};