diff options
author | John Ankarström <john@ankarstrom.se> | 2022-09-02 00:09:56 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-09-02 00:09:56 +0200 |
commit | c624a89b4f1cccfefd60424a3181d76e4692fa4d (patch) | |
tree | 3449c8bcc9ad200c01fb2bed3154a68cb0c7c907 /c/layout.h | |
parent | a26488497cc765890dd5dff122a1f08ca6c5ca95 (diff) | |
download | EpisodeBrowser-c624a89b4f1cccfefd60424a3181d76e4692fa4d.tar.gz |
Add UniqueOk.
Diffstat (limited to 'c/layout.h')
-rw-r--r-- | c/layout.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -21,13 +21,13 @@ struct Dragger protected: bool IsDown() const; bool IsDouble(const long time, const POINT& pt); - virtual bool InDragArea(int x, int y) const; + virtual bool InDragArea(int x, int y) const = 0; /* Perform drag, resizing relevant windows. */ - virtual void Drag(int x, int y) const; + virtual void Drag(int x, int y) const = 0; /* Reset dragger to automatic position. */ - virtual void Reset() const; + virtual void Reset() const = 0; /* Called after drag, when mouse button is released. */ - virtual void Done() const; + virtual void Done() const = 0; private: bool m_bActive = false; long m_time0 = 0; |