You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
4.0 KiB
124 lines
4.0 KiB
/**
|
|
* Digital Voice Modem - Monitor
|
|
* GPLv2 Open Source. Use is subject to license terms.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* @package DVM / Monitor
|
|
*
|
|
*/
|
|
/*
|
|
* Copyright (C) 2023 by Bryan Biedenkapp N2PLL
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
#if !defined(__SELECTED_NODE_WND_H__)
|
|
#define __SELECTED_NODE_WND_H__
|
|
|
|
#include "monitor/MonitorMainWnd.h"
|
|
|
|
#include <final/final.h>
|
|
using namespace finalcut;
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Class Declaration
|
|
// This class implements the selected node display window.
|
|
// ---------------------------------------------------------------------------
|
|
|
|
class HOST_SW_API SelectedNodeWnd final : public finalcut::FDialog {
|
|
public:
|
|
/// <summary>
|
|
/// Initializes a new instance of the SelectedNodeWnd class.
|
|
/// </summary>
|
|
/// <param name="widget"></param>
|
|
explicit SelectedNodeWnd(FWidget* widget = nullptr) : FDialog{widget}
|
|
{
|
|
/* stub */
|
|
}
|
|
/// <summary>Copy constructor.</summary>
|
|
SelectedNodeWnd(const SelectedNodeWnd&) = delete;
|
|
/// <summary>Move constructor.</summary>
|
|
SelectedNodeWnd(SelectedNodeWnd&&) noexcept = delete;
|
|
/// <summary>Finalizes an instance of the SelectedNodeWnd class.</summary>
|
|
~SelectedNodeWnd() noexcept override = default;
|
|
|
|
/// <summary>Disable copy assignment operator (=).</summary>
|
|
auto operator= (const SelectedNodeWnd&) -> SelectedNodeWnd& = delete;
|
|
/// <summary>Disable move assignment operator (=).</summary>
|
|
auto operator= (SelectedNodeWnd&&) noexcept -> SelectedNodeWnd& = delete;
|
|
|
|
/// <summary>Disable set X coordinate.</summary>
|
|
void setX(int, bool = true) override { }
|
|
/// <summary>Disable set Y coordinate.</summary>
|
|
void setY(int, bool = true) override { }
|
|
/// <summary>Disable set position.</summary>
|
|
void setPos(const FPoint&, bool = true) override { }
|
|
|
|
/// <summary></summary>
|
|
void setSelectedText(std::string str)
|
|
{
|
|
m_selectedHost.setText(str);
|
|
redraw();
|
|
}
|
|
|
|
private:
|
|
FLabel m_selectedHostLabel{"Selected Host: ", this};
|
|
FLabel m_selectedHost{this};
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
void initLayout() override
|
|
{
|
|
std::size_t maxWidth;
|
|
const auto& rootWidget = getRootWidget();
|
|
|
|
if (rootWidget) {
|
|
maxWidth = rootWidget->getClientWidth() - 3;
|
|
}
|
|
else {
|
|
// fallback to xterm default size
|
|
maxWidth = 77;
|
|
}
|
|
|
|
FDialog::setGeometry(FPoint{2, 2}, FSize{maxWidth, 2});
|
|
FDialog::setMinimumSize(FSize{80, 5});
|
|
FDialog::setResizeable(false);
|
|
FDialog::setMinimizable(false);
|
|
FDialog::setTitlebarButtonVisibility(false);
|
|
FDialog::setShadow(false);
|
|
|
|
m_selectedHostLabel.setGeometry(FPoint(2, 1), FSize(18, 1));
|
|
m_selectedHost.setGeometry(FPoint(20, 1), FSize(60, 1));
|
|
m_selectedHost.setText("None");
|
|
|
|
FDialog::initLayout();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
void draw() override
|
|
{
|
|
setColor();
|
|
clearArea();
|
|
|
|
const auto& wc = getColorTheme();
|
|
setColor(wc->dialog_resize_fg, getBackgroundColor());
|
|
|
|
finalcut::drawBorder(this, FRect(FPoint{1, 1}, FPoint{(int)getWidth(), (int)getHeight()}));
|
|
}
|
|
};
|
|
|
|
#endif // __SELECTED_NODE_WND_H__
|