2017-11-04 07:03:53 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* transparent.cpp - Demonstrates transparent windows *
|
|
|
|
* *
|
|
|
|
* This file is part of the Final Cut widget toolkit *
|
|
|
|
* *
|
2020-02-02 22:34:27 +01:00
|
|
|
* Copyright 2016-2020 Markus Gans *
|
2017-11-04 07:03:53 +01:00
|
|
|
* *
|
|
|
|
* The Final Cut is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 3 of *
|
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* The Final Cut 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 Lesser General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
|
|
* License along with this program. If not, see *
|
|
|
|
* <http://www.gnu.org/licenses/>. *
|
|
|
|
***********************************************************************/
|
2016-08-21 21:29:04 +02:00
|
|
|
|
2017-10-31 00:41:59 +01:00
|
|
|
#include <final/final.h>
|
2016-08-21 21:29:04 +02:00
|
|
|
|
2019-04-26 21:06:04 +02:00
|
|
|
namespace fc = finalcut::fc;
|
2020-02-16 00:01:36 +01:00
|
|
|
using finalcut::FColorPair;
|
2019-01-21 03:42:18 +01:00
|
|
|
using finalcut::FPoint;
|
|
|
|
using finalcut::FSize;
|
2020-02-16 00:01:36 +01:00
|
|
|
using finalcut::FStyle;
|
2019-01-21 03:42:18 +01:00
|
|
|
|
2016-08-21 21:29:04 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class Transparent
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2018-09-20 23:59:01 +02:00
|
|
|
class Transparent : public finalcut::FDialog
|
2016-08-21 21:29:04 +02:00
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
public:
|
|
|
|
// Typedef and Enumeration
|
|
|
|
typedef enum ttype
|
|
|
|
{
|
|
|
|
transparent = 0,
|
|
|
|
shadow = 1,
|
|
|
|
inherit_background = 2
|
|
|
|
} trans_type;
|
2016-08-27 23:23:42 +02:00
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
// Constructor
|
2018-12-10 01:48:26 +01:00
|
|
|
explicit Transparent ( finalcut::FWidget* = nullptr
|
|
|
|
, trans_type = transparent );
|
2018-12-24 18:11:16 +01:00
|
|
|
|
2018-12-09 22:04:55 +01:00
|
|
|
// Disable copy constructor
|
|
|
|
Transparent (const Transparent&) = delete;
|
2018-12-24 18:11:16 +01:00
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
// Destructor
|
2020-02-19 21:59:13 +01:00
|
|
|
~Transparent() override;
|
2016-08-21 21:29:04 +02:00
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
// Disable assignment operator (=)
|
2018-12-09 22:04:55 +01:00
|
|
|
Transparent& operator = (const Transparent&) = delete;
|
2016-09-30 04:55:28 +02:00
|
|
|
|
2018-12-09 22:04:55 +01:00
|
|
|
private:
|
2017-09-11 03:06:02 +02:00
|
|
|
// Method
|
2019-08-06 23:45:28 +02:00
|
|
|
void draw() override;
|
2016-09-30 04:55:28 +02:00
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
// Event handlers
|
2019-08-06 23:45:28 +02:00
|
|
|
void onKeyPress (finalcut::FKeyEvent* ev) override;
|
2016-08-21 21:29:04 +02:00
|
|
|
|
2019-09-04 23:57:31 +02:00
|
|
|
// Data members
|
2017-09-11 03:06:02 +02:00
|
|
|
trans_type type;
|
2016-08-21 21:29:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-09-20 23:59:01 +02:00
|
|
|
Transparent::Transparent ( finalcut::FWidget* parent
|
|
|
|
, Transparent::trans_type tt )
|
|
|
|
: finalcut::FDialog(parent)
|
2016-08-27 23:23:42 +02:00
|
|
|
, type(tt)
|
2016-08-21 21:29:04 +02:00
|
|
|
{
|
|
|
|
setStatusbarMessage("Press Q to quit");
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
Transparent::~Transparent()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void Transparent::draw()
|
|
|
|
{
|
2018-09-20 23:59:01 +02:00
|
|
|
finalcut::FDialog::draw();
|
2016-08-21 21:29:04 +02:00
|
|
|
|
|
|
|
if ( isMonochron() )
|
|
|
|
setReverse(true);
|
|
|
|
|
2016-08-27 23:23:42 +02:00
|
|
|
if ( type == shadow )
|
2016-08-21 21:29:04 +02:00
|
|
|
{
|
2019-10-01 23:14:00 +02:00
|
|
|
const auto& wc = getFWidgetColors();
|
2020-02-16 00:01:36 +01:00
|
|
|
print() << FColorPair (wc.shadow_bg, wc.shadow_fg)
|
|
|
|
<< FStyle (fc::ColorOverlay);
|
2016-08-21 21:29:04 +02:00
|
|
|
}
|
2016-08-27 23:23:42 +02:00
|
|
|
else if ( type == inherit_background )
|
|
|
|
{
|
2016-11-05 23:12:05 +01:00
|
|
|
if ( getMaxColor() > 8 )
|
2020-02-16 00:01:36 +01:00
|
|
|
print() << FColorPair (fc::Blue, fc::Black);
|
2016-11-05 23:12:05 +01:00
|
|
|
else
|
2020-02-16 00:01:36 +01:00
|
|
|
print() << FColorPair (fc::Green, fc::Black);
|
2016-11-05 23:12:05 +01:00
|
|
|
|
2020-02-16 00:01:36 +01:00
|
|
|
print() << FStyle (fc::InheritBackground);
|
2016-08-27 23:23:42 +02:00
|
|
|
}
|
2016-08-21 21:29:04 +02:00
|
|
|
else
|
2020-02-16 00:01:36 +01:00
|
|
|
print() << FStyle (fc::Transparent);
|
2016-08-21 21:29:04 +02:00
|
|
|
|
2020-02-02 22:34:27 +01:00
|
|
|
const finalcut::FString line(getClientWidth(), '.');
|
2016-08-21 21:29:04 +02:00
|
|
|
|
2020-02-16 00:01:36 +01:00
|
|
|
// Fill window area
|
2019-08-25 22:16:00 +02:00
|
|
|
for (int n{1}; n <= int(getClientHeight()); n++)
|
2016-08-21 21:29:04 +02:00
|
|
|
{
|
2020-02-16 00:01:36 +01:00
|
|
|
print() << FPoint(2, 2 + n)
|
|
|
|
<< line;
|
2016-08-21 21:29:04 +02:00
|
|
|
}
|
|
|
|
|
2020-02-16 00:01:36 +01:00
|
|
|
print() << FStyle (fc::Reset);
|
2016-08-21 21:29:04 +02:00
|
|
|
}
|
|
|
|
|
2016-09-05 19:14:51 +02:00
|
|
|
//----------------------------------------------------------------------
|
2018-09-20 23:59:01 +02:00
|
|
|
void Transparent::onKeyPress (finalcut::FKeyEvent* ev)
|
2016-09-05 19:14:51 +02:00
|
|
|
{
|
2016-10-17 08:44:38 +02:00
|
|
|
if ( ! ev )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ( ev->key() == 'q' && getParentWidget() )
|
2016-09-05 19:14:51 +02:00
|
|
|
{
|
2019-01-07 05:03:00 +01:00
|
|
|
getParentWidget()->close();
|
|
|
|
ev->accept();
|
2016-09-05 19:14:51 +02:00
|
|
|
}
|
2016-10-17 08:44:38 +02:00
|
|
|
else
|
2018-09-20 23:59:01 +02:00
|
|
|
finalcut::FDialog::onKeyPress(ev);
|
2016-09-05 19:14:51 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 21:29:04 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class MainWindow
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2018-09-20 23:59:01 +02:00
|
|
|
class MainWindow : public finalcut::FDialog
|
2016-08-21 21:29:04 +02:00
|
|
|
{
|
2018-10-03 22:23:55 +02:00
|
|
|
public:
|
|
|
|
// Constructor
|
2018-12-10 01:48:26 +01:00
|
|
|
explicit MainWindow (finalcut::FWidget* = nullptr);
|
2018-12-24 18:11:16 +01:00
|
|
|
|
2018-12-09 22:04:55 +01:00
|
|
|
// Disable copy constructor
|
|
|
|
MainWindow (const MainWindow&) = delete;
|
2018-12-24 18:11:16 +01:00
|
|
|
|
2018-10-03 22:23:55 +02:00
|
|
|
// Destructor
|
2020-02-19 21:59:13 +01:00
|
|
|
~MainWindow() override;
|
2017-09-11 03:06:02 +02:00
|
|
|
|
|
|
|
// Disable assignment operator (=)
|
2018-12-09 22:04:55 +01:00
|
|
|
MainWindow& operator = (const MainWindow&) = delete;
|
2017-09-11 03:06:02 +02:00
|
|
|
|
2018-12-09 22:04:55 +01:00
|
|
|
private:
|
|
|
|
// Method
|
2019-08-06 23:45:28 +02:00
|
|
|
void draw() override;
|
2017-09-11 03:06:02 +02:00
|
|
|
|
|
|
|
// Event handlers
|
2019-08-06 23:45:28 +02:00
|
|
|
void onClose (finalcut::FCloseEvent*) override;
|
|
|
|
void onShow (finalcut::FShowEvent*) override;
|
|
|
|
void onTimer (finalcut::FTimerEvent*) override;
|
|
|
|
void onKeyPress (finalcut::FKeyEvent* ev) override
|
2017-09-11 03:06:02 +02:00
|
|
|
{
|
|
|
|
if ( ! ev )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ( ev->key() == 'q' )
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
ev->accept();
|
|
|
|
}
|
|
|
|
else
|
2018-09-20 23:59:01 +02:00
|
|
|
finalcut::FDialog::onKeyPress(ev);
|
2017-09-11 03:06:02 +02:00
|
|
|
}
|
|
|
|
|
2019-09-04 23:57:31 +02:00
|
|
|
// Data members
|
2018-12-03 03:22:36 +01:00
|
|
|
finalcut::FString line1{};
|
|
|
|
finalcut::FString line2{};
|
2018-12-10 01:48:26 +01:00
|
|
|
Transparent* transpwin{nullptr};
|
|
|
|
Transparent* shadowwin{nullptr};
|
|
|
|
Transparent* ibg{nullptr};
|
2018-12-03 03:22:36 +01:00
|
|
|
finalcut::FStatusBar status_bar{this};
|
2016-08-21 21:29:04 +02:00
|
|
|
};
|
2019-09-08 02:04:24 +02:00
|
|
|
|
2016-08-21 21:29:04 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-09-20 23:59:01 +02:00
|
|
|
MainWindow::MainWindow (finalcut::FWidget* parent)
|
2016-08-21 21:29:04 +02:00
|
|
|
: FDialog(parent)
|
|
|
|
{
|
|
|
|
line1 = " .-. .-. .-.";
|
|
|
|
line2 = "`._.' `._.' `._.' ";
|
|
|
|
|
2018-11-24 23:43:09 +01:00
|
|
|
// The memory allocation for the following three sub windows occurs
|
|
|
|
// with the operator new. The lifetime of the generated widget
|
|
|
|
// is managed by the parent object (this). The operator delete
|
2018-12-19 22:04:02 +01:00
|
|
|
// is not required in this class and would result in a double free.
|
2018-11-24 23:43:09 +01:00
|
|
|
transpwin = new Transparent(this);
|
|
|
|
transpwin->setText("transparent");
|
2019-01-21 03:42:18 +01:00
|
|
|
transpwin->setGeometry (FPoint(6, 3), FSize(29, 12));
|
2018-11-24 23:43:09 +01:00
|
|
|
transpwin->unsetTransparentShadow();
|
|
|
|
|
|
|
|
shadowwin = new Transparent(this, Transparent::shadow);
|
|
|
|
shadowwin->setText("shadow");
|
2019-01-21 03:42:18 +01:00
|
|
|
shadowwin->setGeometry (FPoint(46, 11), FSize(29, 12));
|
2018-11-24 23:43:09 +01:00
|
|
|
shadowwin->unsetTransparentShadow();
|
|
|
|
|
|
|
|
ibg = new Transparent(this, Transparent::inherit_background);
|
|
|
|
ibg->setText("inherit background");
|
2019-01-21 03:42:18 +01:00
|
|
|
ibg->setGeometry (FPoint(42, 3), FSize(29, 7));
|
2018-11-24 23:43:09 +01:00
|
|
|
ibg->unsetTransparentShadow();
|
2016-08-27 23:23:42 +02:00
|
|
|
|
2016-08-21 21:29:04 +02:00
|
|
|
// Statusbar at the bottom
|
2018-10-03 22:23:55 +02:00
|
|
|
status_bar.setMessage("Press Q to quit");
|
2016-08-21 21:29:04 +02:00
|
|
|
|
2016-09-04 18:31:31 +02:00
|
|
|
unsetTransparentShadow();
|
2016-08-27 23:23:42 +02:00
|
|
|
activateDialog();
|
2016-08-21 21:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void MainWindow::draw()
|
|
|
|
{
|
2018-09-20 23:59:01 +02:00
|
|
|
finalcut::FDialog::draw();
|
2016-08-28 22:43:14 +02:00
|
|
|
|
2016-08-21 21:29:04 +02:00
|
|
|
if ( isMonochron() )
|
|
|
|
setReverse(true);
|
|
|
|
|
2016-09-25 23:53:48 +02:00
|
|
|
setColor();
|
2019-01-27 13:44:13 +01:00
|
|
|
print() << FPoint(2, 4) << line1;
|
|
|
|
print() << FPoint(2, 5) << line2;
|
2016-08-21 21:29:04 +02:00
|
|
|
|
|
|
|
if ( isMonochron() )
|
|
|
|
setReverse(false);
|
|
|
|
|
2016-12-18 23:34:11 +01:00
|
|
|
updateTerminal();
|
2016-08-21 21:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-09-20 23:59:01 +02:00
|
|
|
void MainWindow::onClose (finalcut::FCloseEvent* ev)
|
2016-08-21 21:29:04 +02:00
|
|
|
{
|
2018-09-20 23:59:01 +02:00
|
|
|
finalcut::FApplication::closeConfirmationDialog (this, ev);
|
2016-08-21 21:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-09-20 23:59:01 +02:00
|
|
|
void MainWindow::onShow (finalcut::FShowEvent*)
|
2016-08-21 21:29:04 +02:00
|
|
|
{
|
|
|
|
addTimer(100);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-09-20 23:59:01 +02:00
|
|
|
void MainWindow::onTimer (finalcut::FTimerEvent*)
|
2016-08-21 21:29:04 +02:00
|
|
|
{
|
|
|
|
wchar_t first_Char[2];
|
2018-10-14 06:25:33 +02:00
|
|
|
std::size_t length = line1.getLength();
|
2016-08-21 21:29:04 +02:00
|
|
|
first_Char[0] = line1[0];
|
|
|
|
first_Char[1] = line2[0];
|
|
|
|
line1 = line1.right(length - 1) + first_Char[0];
|
|
|
|
line2 = line2.right(length - 1) + first_Char[1];
|
|
|
|
redraw();
|
2019-12-16 11:14:24 +01:00
|
|
|
flush();
|
2016-08-21 21:29:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// main part
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
int main (int argc, char* argv[])
|
|
|
|
{
|
2017-09-19 06:18:03 +02:00
|
|
|
// Create the application object
|
2018-09-20 23:59:01 +02:00
|
|
|
finalcut::FApplication app (argc, argv);
|
2016-08-21 21:29:04 +02:00
|
|
|
|
2017-09-19 06:18:03 +02:00
|
|
|
// Create main dialog object
|
2016-08-21 21:29:04 +02:00
|
|
|
MainWindow main_dlg (&app);
|
|
|
|
main_dlg.setText ("non-transparent");
|
2019-01-21 03:42:18 +01:00
|
|
|
main_dlg.setGeometry (FPoint(8, 16), FSize(26, 7));
|
2016-08-21 21:29:04 +02:00
|
|
|
|
2017-09-19 06:18:03 +02:00
|
|
|
// Set dialog main_dlg as main widget
|
2016-08-21 21:29:04 +02:00
|
|
|
app.setMainWidget (&main_dlg);
|
|
|
|
|
2017-09-19 06:18:03 +02:00
|
|
|
// Show and start the application
|
|
|
|
main_dlg.show();
|
2016-08-21 21:29:04 +02:00
|
|
|
return app.exec();
|
|
|
|
}
|