finalcut/src/fstatusbar.cpp

692 lines
15 KiB
C++
Raw Normal View History

// File: fstatusbar.cpp
// Provides: class FStatusKey
// class FStatusBar
2015-05-23 13:35:12 +02:00
#include "fstatusbar.h"
//----------------------------------------------------------------------
// class FStatusKey
//----------------------------------------------------------------------
// constructor and destructor
//----------------------------------------------------------------------
2015-09-22 04:18:20 +02:00
FStatusKey::FStatusKey(FWidget* parent)
: FWidget(parent)
, key(0)
, text()
, active(false)
, mouse_focus(false)
, bar(0)
2015-05-23 13:35:12 +02:00
{
init (parent);
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
2017-03-17 22:59:06 +01:00
FStatusKey::FStatusKey (int k, const FString& txt, FWidget* parent)
2015-09-22 04:18:20 +02:00
: FWidget(parent)
, key(k)
, text(txt)
, active(false)
, mouse_focus(false)
, bar(0)
2015-05-23 13:35:12 +02:00
{
init (parent);
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
FStatusKey::~FStatusKey() // destructor
{
if ( getConnectedStatusbar() )
getConnectedStatusbar()->remove(this);
2015-11-12 01:33:16 +01:00
delAccelerator();
2015-05-23 13:35:12 +02:00
}
// public methods of FStatusKey
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
2015-09-20 05:44:50 +02:00
void FStatusKey::onAccel (FAccelEvent* ev)
2015-05-23 13:35:12 +02:00
{
if ( isActivated() )
return;
setActive();
if ( getConnectedStatusbar() )
getConnectedStatusbar()->redraw();
ev->accept();
// unset after get back from callback
unsetActive();
if ( getConnectedStatusbar() )
getConnectedStatusbar()->redraw();
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
2015-10-17 19:40:43 +02:00
void FStatusKey::setActive()
2015-05-23 13:35:12 +02:00
{
2015-09-22 04:18:20 +02:00
active = true;
2015-05-23 13:35:12 +02:00
processActivate();
}
//----------------------------------------------------------------------
bool FStatusKey::setMouseFocus(bool on)
{
if ( on == mouse_focus )
return true;
return mouse_focus = (on) ? true : false;
}
// private methods of FStatusKey
//----------------------------------------------------------------------
void FStatusKey::init (FWidget* parent)
{
setGeometry (1,1,1,1);
if ( parent && parent->isInstanceOf("FStatusBar") )
{
setConnectedStatusbar (static_cast<FStatusBar*>(parent));
if ( getConnectedStatusbar() )
getConnectedStatusbar()->insert(this);
}
}
//----------------------------------------------------------------------
void FStatusKey::processActivate()
{
emitCallback("activate");
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
// class FStatusBar
//----------------------------------------------------------------------
// constructor and destructor
//----------------------------------------------------------------------
2015-09-22 04:18:20 +02:00
FStatusBar::FStatusBar(FWidget* parent)
: FWindow(parent)
, key_list()
2015-09-22 04:18:20 +02:00
, text("")
, mouse_down()
, x(-1)
, x_msg(-1)
2015-05-23 13:35:12 +02:00
{
2015-09-22 04:18:20 +02:00
init();
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
FStatusBar::~FStatusBar()
{
// delete all keys
if ( ! key_list.empty() )
2015-05-23 13:35:12 +02:00
{
std::vector<FStatusKey*>::iterator iter;
iter = key_list.begin();
2015-05-23 13:35:12 +02:00
while ( iter != key_list.end() )
2015-05-23 13:35:12 +02:00
{
(*iter)->setConnectedStatusbar(0);
2015-05-23 13:35:12 +02:00
delAccelerator (*iter);
iter = key_list.erase(iter);
2015-05-23 13:35:12 +02:00
}
}
2016-07-28 01:04:27 +02:00
setStatusBar(0);
2015-05-23 13:35:12 +02:00
}
// public methods of FStatusBar
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
2017-03-17 22:59:06 +01:00
void FStatusBar::setMessage (const FString& mgs)
2015-05-23 13:35:12 +02:00
{
text = mgs;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
bool FStatusBar::hasActivatedKey()
{
if ( ! key_list.empty() )
2015-05-23 13:35:12 +02:00
{
std::vector<FStatusKey*>::const_iterator iter, end;
iter = key_list.begin();
end = key_list.end();
while ( iter != end )
2015-05-23 13:35:12 +02:00
{
if ( (*iter)->isActivated() )
return true;
++iter;
2015-05-23 13:35:12 +02:00
}
}
return false;
2015-05-23 13:35:12 +02:00
}
//----------------------------------------------------------------------
void FStatusBar::hide()
{
int screenWidth;
short fg, bg;
char* blank;
FWindow::hide();
fg = wc.term_fg;
bg = wc.term_bg;
setColor (fg, bg);
screenWidth = getColumnNumber();
if ( screenWidth < 0 )
return;
2017-08-12 22:55:29 +02:00
try
{
blank = new char[screenWidth + 1];
2017-08-12 22:55:29 +02:00
}
catch (const std::bad_alloc& ex)
{
std::cerr << "not enough memory to alloc " << ex.what() << std::endl;
return;
}
std::memset(blank, ' ', uLong(screenWidth));
blank[screenWidth] = '\0';
setPrintPos (1, 1);
print (blank);
delete[] blank;
}
//----------------------------------------------------------------------
void FStatusBar::drawMessage()
2015-05-23 13:35:12 +02:00
{
int termWidth, space_offset;
bool isLastActiveFocus, hasKeys;
if ( ! (isVisible() ) )
2015-05-23 13:35:12 +02:00
return;
if ( x < 0 || x_msg < 0 )
2015-05-23 13:35:12 +02:00
return;
x = x_msg;
termWidth = getColumnNumber();
space_offset = 1;
hasKeys = bool(! key_list.empty());
2015-05-23 13:35:12 +02:00
if ( hasKeys )
2015-05-23 13:35:12 +02:00
{
std::vector<FStatusKey*>::const_iterator iter = key_list.end();
isLastActiveFocus = bool ( (*(iter - 1))->isActivated()
|| (*(iter - 1))->hasMouseFocus() );
}
else
isLastActiveFocus = false;
2015-05-23 13:35:12 +02:00
if ( isLastActiveFocus )
space_offset = 0;
2015-05-23 13:35:12 +02:00
setColor (wc.statusbar_fg, wc.statusbar_bg);
setPrintPos (x, 1);
if ( isMonochron() )
setReverse(true);
if ( x + space_offset + 3 < termWidth )
{
if ( text )
{
if ( ! isLastActiveFocus )
{
x++;
print (' ');
}
if ( hasKeys )
{
x += 2;
print (fc::BoxDrawingsVertical); // │
print (' ');
}
int msg_length = int(getMessage().getLength());
x += msg_length;
if ( x - 1 <= termWidth )
print (getMessage());
else
{
print ( getMessage().left(uInt(msg_length + termWidth - x - 1)) );
print ("..");
}
}
}
for (int i = x; i <= termWidth; i++)
print (' ');
if ( isMonochron() )
setReverse(false);
}
//----------------------------------------------------------------------
void FStatusBar::insert (FStatusKey* skey)
{
key_list.push_back (skey);
addAccelerator (skey->getKey(), skey);
skey->addCallback
(
"activate",
F_METHOD_CALLBACK (this, &FStatusBar::cb_statuskey_activated)
);
}
//----------------------------------------------------------------------
void FStatusBar::remove (FStatusKey* skey)
{
std::vector<FStatusKey*>::iterator iter;
delAccelerator (skey);
if ( key_list.empty() )
return;
iter = key_list.begin();
while ( iter != key_list.end() )
{
if ( (*iter) == skey )
{
iter = key_list.erase(iter);
skey->setConnectedStatusbar(0);
break;
}
else
++iter;
}
}
//----------------------------------------------------------------------
void FStatusBar::remove (int pos)
{
if ( int(getCount()) < pos )
return;
key_list.erase (key_list.begin() + pos - 1);
}
//----------------------------------------------------------------------
void FStatusBar::clear()
{
key_list.clear();
}
//----------------------------------------------------------------------
void FStatusBar::adjustSize()
{
setGeometry (1, getLineNumber(), getColumnNumber(), 1, false);
}
//----------------------------------------------------------------------
void FStatusBar::onMouseDown (FMouseEvent* ev)
{
if ( hasActivatedKey() )
return;
if ( ev->getButton() != fc::LeftButton )
{
mouse_down = false;
if ( ! key_list.empty() )
{
std::vector<FStatusKey*>::const_iterator iter, end;
iter = key_list.begin();
end = key_list.end();
while ( iter != end )
{
(*iter)->unsetMouseFocus();
++iter;
}
}
redraw();
return;
}
if ( mouse_down )
return;
mouse_down = true;
if ( ! key_list.empty() )
{
std::vector<FStatusKey*>::const_iterator iter, end;
int X = 1;
iter = key_list.begin();
end = key_list.end();
while ( iter != end )
{
int x1, x2, mouse_x, mouse_y, kname_len, txt_length;
x1 = X;
kname_len = int(getKeyName((*iter)->getKey()).getLength());
txt_length = int((*iter)->getText().getLength());
x2 = x1 + kname_len + txt_length + 1;
mouse_x = ev->getX();
mouse_y = ev->getY();
2015-05-23 13:35:12 +02:00
if ( mouse_x >= x1
&& mouse_x <= x2
&& mouse_y == 1
&& ! (*iter)->hasMouseFocus() )
2015-05-23 13:35:12 +02:00
{
(*iter)->setMouseFocus();
2015-09-22 04:18:20 +02:00
redraw();
2015-05-23 13:35:12 +02:00
}
2015-05-23 13:35:12 +02:00
X = x2 + 2;
++iter;
}
}
}
//----------------------------------------------------------------------
2015-09-20 05:44:50 +02:00
void FStatusBar::onMouseUp (FMouseEvent* ev)
2015-05-23 13:35:12 +02:00
{
if ( hasActivatedKey() )
return;
2016-01-17 02:57:08 +01:00
if ( ev->getButton() != fc::LeftButton )
2015-05-23 13:35:12 +02:00
return;
if ( mouse_down )
{
mouse_down = false;
if ( ! key_list.empty() )
2015-05-23 13:35:12 +02:00
{
std::vector<FStatusKey*>::const_iterator iter, end;
int X = 1;
iter = key_list.begin();
end = key_list.end();
2015-05-23 13:35:12 +02:00
while ( iter != end )
{
2015-09-28 04:31:29 +02:00
int x1, x2, kname_len, txt_length;
x1 = X;
kname_len = int(getKeyName((*iter)->getKey()).getLength());
txt_length = int((*iter)->getText().getLength());
x2 = x1 + kname_len + txt_length + 1;
2015-05-23 13:35:12 +02:00
if ( (*iter)->hasMouseFocus() )
{
2015-09-28 04:31:29 +02:00
int mouse_x, mouse_y;
2015-05-23 13:35:12 +02:00
(*iter)->unsetMouseFocus();
2015-09-28 04:31:29 +02:00
mouse_x = ev->getX();
mouse_y = ev->getY();
2015-05-23 13:35:12 +02:00
if ( mouse_x >= x1 && mouse_x <= x2 && mouse_y == 1 )
(*iter)->setActive();
// unset after get back from callback
(*iter)->unsetActive();
2015-09-22 04:18:20 +02:00
redraw();
2015-05-23 13:35:12 +02:00
}
2015-05-23 13:35:12 +02:00
X = x2 + 2;
++iter;
}
}
}
}
//----------------------------------------------------------------------
2015-09-20 05:44:50 +02:00
void FStatusBar::onMouseMove (FMouseEvent* ev)
2015-05-23 13:35:12 +02:00
{
if ( hasActivatedKey() )
return;
2016-01-17 02:57:08 +01:00
if ( ev->getButton() != fc::LeftButton )
2015-05-23 13:35:12 +02:00
return;
if ( mouse_down && ! key_list.empty() )
2015-05-23 13:35:12 +02:00
{
std::vector<FStatusKey*>::const_iterator iter, end;
bool focus_changed = false;
int X = 1;
iter = key_list.begin();
end = key_list.end();
2015-05-23 13:35:12 +02:00
while ( iter != end )
{
2015-09-28 04:31:29 +02:00
int x1, x2, mouse_x, mouse_y, kname_len, txt_length;
x1 = X;
kname_len = int(getKeyName((*iter)->getKey()).getLength());
txt_length = int((*iter)->getText().getLength());
x2 = x1 + kname_len + txt_length + 1;
mouse_x = ev->getX();
mouse_y = ev->getY();
if ( mouse_x >= x1
&& mouse_x <= x2
&& mouse_y == 1 )
2015-05-23 13:35:12 +02:00
{
if ( ! (*iter)->hasMouseFocus() )
{
(*iter)->setMouseFocus();
focus_changed = true;
}
}
else
{
if ( (*iter)->hasMouseFocus() )
{
(*iter)->unsetMouseFocus();
focus_changed = true;
}
}
2015-05-23 13:35:12 +02:00
X = x2 + 2;
++iter;
}
2015-05-23 13:35:12 +02:00
if ( focus_changed )
2015-09-22 04:18:20 +02:00
redraw();
2015-05-23 13:35:12 +02:00
}
}
//----------------------------------------------------------------------
void FStatusBar::cb_statuskey_activated (FWidget* widget, data_ptr)
2015-05-23 13:35:12 +02:00
{
if ( ! key_list.empty() )
2015-05-23 13:35:12 +02:00
{
std::vector<FStatusKey*>::const_iterator iter, end;
FStatusKey* statuskey = static_cast<FStatusKey*>(widget);
iter = key_list.begin();
end = key_list.end();
2015-05-23 13:35:12 +02:00
while ( iter != end )
{
if ( (*iter) != statuskey && (*iter)->isActivated() )
(*iter)->unsetActive();
2015-05-23 13:35:12 +02:00
++iter;
}
}
if ( isVisible() && isShown() )
redraw();
2015-05-23 13:35:12 +02:00
}
// private methods of FStatusBar
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
void FStatusBar::init()
2015-05-23 13:35:12 +02:00
{
FWidget* r = getRootWidget();
int w = r->getWidth();
int h = r->getHeight();
// initialize geometry values
setGeometry (1, h, w, 1, false);
setAlwaysOnTop();
setStatusBar(this);
ignorePadding();
mouse_down = false;
2015-05-23 13:35:12 +02:00
if ( getRootWidget() )
getRootWidget()->setBottomPadding(1, true);
setForegroundColor (wc.statusbar_fg);
setBackgroundColor (wc.statusbar_bg);
unsetFocusable();
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
void FStatusBar::draw()
{
drawKeys();
drawMessage();
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
void FStatusBar::drawKeys()
{
std::vector<FStatusKey*>::const_iterator iter, end;
int screenWidth;
screenWidth = getColumnNumber();
x = 1;
if ( key_list.empty() )
2015-05-23 13:35:12 +02:00
{
x_msg = 1;
return;
2015-05-23 13:35:12 +02:00
}
setPrintPos (1, 1);
2015-05-23 13:35:12 +02:00
if ( isMonochron() )
setReverse(true);
iter = key_list.begin();
end = key_list.end();
while ( iter != end )
2015-05-23 13:35:12 +02:00
{
int kname_len = int(getKeyName((*iter)->getKey()).getLength());
if ( x + kname_len + 2 < screenWidth )
2015-05-23 13:35:12 +02:00
{
if ( (*iter)->isActivated() || (*iter)->hasMouseFocus() )
2015-05-23 13:35:12 +02:00
{
int txt_length;
if ( isMonochron() )
setReverse(false);
setColor ( wc.statusbar_active_hotkey_fg
, wc.statusbar_active_hotkey_bg );
x++;
print (' ');
x += kname_len;
print (getKeyName((*iter)->getKey()));
setColor (wc.statusbar_active_fg, wc.statusbar_active_bg);
x++;
print ('-');
txt_length = int((*iter)->getText().getLength());
x += txt_length;
2015-05-23 13:35:12 +02:00
if ( x <= screenWidth )
{
print ((*iter)->getText());
x++;
print (fc::RightHalfBlock); // ▌
}
else
{
print ( (*iter)->getText()
.left(uInt(txt_length + screenWidth - x - 1)) );
print ("..");
}
if ( isMonochron() )
setReverse(true);
}
2015-05-23 13:35:12 +02:00
else
{
int txt_length;
2015-05-23 13:35:12 +02:00
// not active
setColor (wc.statusbar_hotkey_fg, wc.statusbar_hotkey_bg);
x++;
print (' ');
x += kname_len;
print (getKeyName((*iter)->getKey()));
setColor (wc.statusbar_fg, wc.statusbar_bg);
x++;
print ('-');
txt_length = int((*iter)->getText().getLength());
x += txt_length;
2015-05-23 13:35:12 +02:00
if ( x - 1 <= screenWidth )
print ((*iter)->getText());
else
{
print ( (*iter)->getText()
.left(uInt(txt_length + screenWidth - x - 1)) );
print ("..");
}
2015-05-23 13:35:12 +02:00
if ( iter + 1 != key_list.end()
&& ( (*(iter + 1))->isActivated() || (*(iter + 1))->hasMouseFocus() )
&& x + int(getKeyName((*(iter + 1))->getKey()).getLength()) + 3
< screenWidth )
{
// next element is active
if ( isMonochron() )
setReverse(false);
2015-05-23 13:35:12 +02:00
if ( no_half_block_character )
print (' ');
else
{
setColor (wc.statusbar_active_fg, wc.statusbar_active_bg);
print (fc::LeftHalfBlock); // ▐
}
x++;
if ( isMonochron() )
setReverse(true);
}
else if ( iter + 1 != key_list.end() && x < screenWidth )
{
// not the last element
setColor (wc.statusbar_separator_fg, wc.statusbar_bg);
x++;
print (fc::BoxDrawingsVertical); // │
}
}
2015-05-23 13:35:12 +02:00
}
else
{
setColor (wc.statusbar_fg, wc.statusbar_bg);
for (; x <= screenWidth; x++)
print (' ');
2015-05-23 13:35:12 +02:00
}
++iter;
2015-05-23 13:35:12 +02:00
}
if ( isMonochron() )
setReverse(false);
x_msg = x;
2015-05-23 13:35:12 +02:00
}