topic_message_view.py
Go to the documentation of this file.
00001 # Software License Agreement (BSD License)
00002 #
00003 # Copyright (c) 2012, Willow Garage, Inc.
00004 # All rights reserved.
00005 #
00006 # Redistribution and use in source and binary forms, with or without
00007 # modification, are permitted provided that the following conditions
00008 # are met:
00009 #
00010 #  * Redistributions of source code must retain the above copyright
00011 #    notice, this list of conditions and the following disclaimer.
00012 #  * Redistributions in binary form must reproduce the above
00013 #    copyright notice, this list of conditions and the following
00014 #    disclaimer in the documentation and/or other materials provided
00015 #    with the distribution.
00016 #  * Neither the name of Willow Garage, Inc. nor the names of its
00017 #    contributors may be used to endorse or promote products derived
00018 #    from this software without specific prior written permission.
00019 #
00020 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00021 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00022 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00023 # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00024 # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00025 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00026 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00027 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00028 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00029 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00030 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00031 # POSSIBILITY OF SUCH DAMAGE.
00032 from .message_view import MessageView
00033 
00034 from python_qt_binding.QtGui import QAction, QIcon, QToolBar
00035 
00036 
00037 class TopicMessageView(MessageView):
00038     """
00039     A message view with a toolbar for navigating messages in a single topic.
00040     """
00041     def __init__(self, timeline, parent, topic):
00042         MessageView.__init__(self, timeline, topic)
00043 
00044         self._parent = parent
00045         self._stamp = None
00046         self._name = parent.objectName()
00047 
00048         self.toolbar = QToolBar()
00049         self._first_action = QAction(QIcon.fromTheme('go-first'), '', self.toolbar)
00050         self._first_action.triggered.connect(self.navigate_first)
00051         self.toolbar.addAction(self._first_action)
00052         self._prev_action = QAction(QIcon.fromTheme('go-previous'), '', self.toolbar)
00053         self._prev_action.triggered.connect(self.navigate_previous)
00054         self.toolbar.addAction(self._prev_action)
00055         self._next_action = QAction(QIcon.fromTheme('go-next'), '', self.toolbar)
00056         self._next_action.triggered.connect(self.navigate_next)
00057         self.toolbar.addAction(self._next_action)
00058         self._last_action = QAction(QIcon.fromTheme('go-last'), '', self.toolbar)
00059         self._last_action.triggered.connect(self.navigate_last)
00060         self.toolbar.addAction(self._last_action)
00061         parent.layout().addWidget(self.toolbar)
00062 
00063     @property
00064     def parent(self):
00065         return self._parent
00066 
00067     @property
00068     def stamp(self):
00069         return self._stamp
00070 
00071     # MessageView implementation
00072 
00073     def message_viewed(self, bag, msg_details):
00074         _, _, self._stamp = msg_details[:3]
00075 
00076     # Events
00077     def navigate_first(self):
00078         for entry in self.timeline.get_entries([self.topic], *self.timeline._timeline_frame.play_region):
00079             self.timeline._timeline_frame.playhead = entry.time
00080             break
00081 
00082     def navigate_previous(self):
00083         last_entry = None
00084         for entry in self.timeline.get_entries([self.topic], self.timeline._timeline_frame.start_stamp, self.timeline._timeline_frame.playhead):
00085             if entry.time < self.timeline._timeline_frame.playhead:
00086                 last_entry = entry
00087 
00088         if last_entry:
00089             self.timeline._timeline_frame.playhead = last_entry.time
00090 
00091     def navigate_next(self):
00092         for entry in self.timeline.get_entries([self.topic], self.timeline._timeline_frame.playhead, self.timeline._timeline_frame.end_stamp):
00093             if entry.time > self.timeline._timeline_frame.playhead:
00094                 self.timeline._timeline_frame.playhead = entry.time
00095                 break
00096 
00097     def navigate_last(self):
00098         last_entry = None
00099         for entry in self.timeline.get_entries([self.topic], *self.timeline._timeline_frame.play_region):
00100             last_entry = entry
00101 
00102         if last_entry:
00103             self.timeline._timeline_frame.playhead = last_entry.time


rqt_bag
Author(s): Aaron Blasdel, Tim Field
autogenerated on Mon Oct 6 2014 07:15:30