00001 /**************************************************************** 00002 * Vidalia is distributed under the following license: 00003 * 00004 * Copyright (C) 2006, Matt Edman, Justin Hipple 00005 * 00006 * This program is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU General Public License 00008 * as published by the Free Software Foundation; either version 2 00009 * of the License, or (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin Street, Fifth Floor, 00019 * Boston, MA 02110-1301, USA. 00020 ****************************************************************/ 00021 00022 /** 00023 * \file circuitevent.h 00024 * \version $Id: circuitevent.h 1238 2006-09-25 17:50:57Z edmanm $ 00025 * \brief Event dispatched containing updated circuit status information 00026 */ 00027 00028 #ifndef _CIRCUITEVENT_H 00029 #define _CIRCUITEVENT_H 00030 00031 #include <QEvent> 00032 00033 #include "eventtype.h" 00034 #include "circuit.h" 00035 00036 00037 class CircuitEvent : public QEvent 00038 { 00039 public: 00040 /** Constructor */ 00041 CircuitEvent(Circuit circuit) 00042 : QEvent((QEvent::Type)CustomEventType::CircuitEvent) 00043 { _circuit = circuit; } 00044 00045 /** Returns the Circuit object for this event. */ 00046 Circuit circuit() { return _circuit; } 00047 /** Returns the ID for this circuit event. */ 00048 quint64 id() { return _circuit.id(); } 00049 /** Returns the status of this circuit event. */ 00050 Circuit::Status status() { return _circuit.status(); } 00051 /** Returns the path chosen for this circuit event. */ 00052 QString path() { return _circuit.path(); } 00053 00054 private: 00055 /** Circuit object for this event. */ 00056 Circuit _circuit; 00057 }; 00058 00059 #endif 00060