/* * Copyright (c) 2012 Catalin Badea * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include "Swift/Controllers/UIInterfaces/HistoryWindow.h" #include "QtTabbable.h" class QTextEdit; class QCheckBox; class QColor; namespace Swift { class QtHistoryWindow : public QtTabbable, public HistoryWindow { Q_OBJECT public: QtHistoryWindow(); ~QtHistoryWindow(); void show(); void activate(); private: virtual void closeEvent(QCloseEvent* event); virtual void showEvent(QShowEvent* event); }; }