Raw FSD message component and dialog

Maniphest Tasks: T222
This commit is contained in:
Roland Winklmeier
2018-01-22 14:19:41 +01:00
parent 704068d299
commit 7c903001d5
12 changed files with 503 additions and 15 deletions

View File

@@ -0,0 +1,44 @@
/* Copyright (C) 2018
* swift project Community / Contributors
*
* This file is part of swift Project. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
* including this file, may be copied, modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*/
//! \file
#ifndef BLACKGUI_COMPONENTS_RAWFSDMESSAGESDIALOG_H
#define BLACKGUI_COMPONENTS_RAWFSDMESSAGESDIALOG_H
#include "blackgui/blackguiexport.h"
#include "blackgui/components/rawfsdmessagescomponent.h"
#include <QDialog>
#include <QScopedPointer>
namespace Ui { class CRawFsdMessagesDialog; }
namespace BlackGui
{
namespace Components
{
//! CRawFsdMessageComponent as dialog
class BLACKGUI_EXPORT CRawFsdMessagesDialog : public QDialog
{
Q_OBJECT
public:
//! Constructor
explicit CRawFsdMessagesDialog(QWidget *parent = nullptr);
//! Destructor
virtual ~CRawFsdMessagesDialog();
private:
QScopedPointer<Ui::CRawFsdMessagesDialog> ui;
};
} // ns
} // ns
#endif // guard