diff options
author | Catalin Badea <catalin.badea392@gmail.com> | 2012-07-20 14:03:04 (GMT) |
---|---|---|
committer | Cătălin Badea <catalin.badea392@gmail.com> | 2012-08-11 15:59:12 (GMT) |
commit | 6613b634fd8175ce6e48bfa958b0f1a4e525303d (patch) | |
tree | 6e76ebbfc236665ba4c4e53f2f41695cd97888ef /Swift/Controllers/UIInterfaces | |
parent | 9ba2c6898b9bfa03f6e4b865966bb8f501f99735 (diff) | |
download | swift-contrib-6613b634fd8175ce6e48bfa958b0f1a4e525303d.zip swift-contrib-6613b634fd8175ce6e48bfa958b0f1a4e525303d.tar.bz2 |
add previous/next button callbacks
Diffstat (limited to 'Swift/Controllers/UIInterfaces')
-rw-r--r-- | Swift/Controllers/UIInterfaces/HistoryWindow.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Swift/Controllers/UIInterfaces/HistoryWindow.h b/Swift/Controllers/UIInterfaces/HistoryWindow.h index 03f4886..cb8225b 100644 --- a/Swift/Controllers/UIInterfaces/HistoryWindow.h +++ b/Swift/Controllers/UIInterfaces/HistoryWindow.h @@ -23,5 +23,7 @@ namespace Swift { boost::signal<void (const std::string&)> onReturnPressed; boost::signal<void (const boost::gregorian::date&)> onScrollReachedTop; boost::signal<void (const boost::gregorian::date&)> onScrollReachedBottom; + boost::signal<void ()> onPreviousButtonClicked(); + boost::signal<void ()> onNextButtonClicked(); }; } |