mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-30 20:15:35 +08:00
* renamed to toggleFloatingWholeInfoArea() for whole info area (in contrast to toggleInfoArea for individual areas) * signal for changedWholeInfoAreaFloating (allows the main GUI to hide this area if empty) * add. flag to understand m_resetedFloating * prepared for frameless dock widget (not yet implemented)
107 lines
3.2 KiB
C++
107 lines
3.2 KiB
C++
/* Copyright (C) 2014
|
|
* 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_MAININFOAREACOMPONENT_H
|
|
#define BLACKGUI_MAININFOAREACOMPONENT_H
|
|
|
|
#include "../infoarea.h"
|
|
#include "allmaininfoareacomponents.h"
|
|
#include <QTabBar>
|
|
#include <QPixmap>
|
|
#include <QScopedPointer>
|
|
|
|
namespace Ui { class CMainInfoAreaComponent; }
|
|
namespace BlackGui
|
|
{
|
|
namespace Components
|
|
{
|
|
//! Main info area
|
|
class CMainInfoAreaComponent : public BlackGui::CInfoArea
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit CMainInfoAreaComponent(QWidget *parent = nullptr);
|
|
|
|
//! Destructor
|
|
virtual ~CMainInfoAreaComponent();
|
|
|
|
//! Info areas
|
|
enum InfoArea
|
|
{
|
|
// index must match tab index!
|
|
InfoAreaCockpit = 0,
|
|
InfoAreaAircrafts = 1,
|
|
InfoAreaAtc = 2,
|
|
InfoAreaUsers = 3,
|
|
InfoAreaTextMessages = 4,
|
|
InfoAreaSimulator = 5,
|
|
InfoAreaFlightPlan = 6,
|
|
InfoAreaWeather = 7,
|
|
InfoAreaMappings = 8,
|
|
InfoAreaLog = 9,
|
|
InfoAreaSettings = 10,
|
|
InfoAreaNone = -1
|
|
};
|
|
|
|
//! Cockpit
|
|
CCockpitComponent *getCockpitComponent();
|
|
|
|
//! ATC stations
|
|
CAtcStationComponent *getAtcStationComponent();
|
|
|
|
//! Aircrafts
|
|
CAircraftComponent *getAircraftComponent();
|
|
|
|
//! User component
|
|
CUserComponent *getUserComponent();
|
|
|
|
//! Flight plan
|
|
CFlightPlanComponent *getFlightPlanComponent();
|
|
|
|
//! Settings
|
|
CSettingsComponent *getSettingsComponent();
|
|
|
|
//! Log messages
|
|
CLogComponent *getLogComponent();
|
|
|
|
//! Simulator
|
|
CSimulatorComponent *getSimulatorComponent();
|
|
|
|
//! Text messages
|
|
CTextMessageComponent *getTextMessageComponent();
|
|
|
|
public slots:
|
|
//! Toggle floating of given area
|
|
void toggleFloating(InfoArea infoArea) { CInfoArea::toggleFloatingByIndex(static_cast<int>(infoArea)); }
|
|
|
|
//! Select area
|
|
void selectArea(InfoArea infoArea) { CInfoArea::selectArea(static_cast<int>(infoArea)); }
|
|
|
|
//! Select settings with given area
|
|
void selectSettingsTab(int index);
|
|
|
|
protected:
|
|
//! \copydoc CInfoArea::getPreferredSizeWhenFloating
|
|
virtual QSize getPreferredSizeWhenFloating(int areaIndex) const override;
|
|
|
|
//! \copydoc CInfoArea::indexToPixmap
|
|
virtual const QPixmap &indexToPixmap(int areaIndex) const override;
|
|
|
|
private:
|
|
QScopedPointer<Ui::CMainInfoAreaComponent> ui;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif // guard
|