2015-09-25 21:37:19 +02:00
|
|
|
// 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
|
|
|
{
|
2015-07-26 18:24:10 +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
|
|
|
{
|
2015-07-26 18:24:10 +02:00
|
|
|
init (parent);
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FStatusKey::~FStatusKey() // destructor
|
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( getConnectedStatusbar() )
|
|
|
|
getConnectedStatusbar()->remove(this);
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2015-11-12 01:33:16 +01:00
|
|
|
delAccelerator();
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-02 00:37:58 +01: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
|
|
|
{
|
2016-10-17 08:44:38 +02:00
|
|
|
if ( isActivated() )
|
|
|
|
return;
|
2016-08-21 21:27:44 +02:00
|
|
|
|
2016-10-17 08:44:38 +02:00
|
|
|
setActive();
|
2016-08-21 21:27:44 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( getConnectedStatusbar() )
|
|
|
|
getConnectedStatusbar()->redraw();
|
2016-08-21 21:27:44 +02:00
|
|
|
|
2016-10-17 08:44:38 +02:00
|
|
|
ev->accept();
|
|
|
|
// unset after get back from callback
|
|
|
|
unsetActive();
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
// private methods of FStatusKey
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FStatusKey::init (FWidget* parent)
|
|
|
|
{
|
|
|
|
setGeometry (1,1,1,1);
|
|
|
|
|
2017-07-23 01:19:59 +02:00
|
|
|
if ( parent && parent->isInstanceOf("FStatusBar") )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
|
|
|
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)
|
2016-11-02 00:37:58 +01:00
|
|
|
, 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
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( ! key_list.empty() )
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
|
|
|
std::vector<FStatusKey*>::iterator iter;
|
2016-11-02 00:37:58 +01:00
|
|
|
iter = key_list.begin();
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
while ( iter != key_list.end() )
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
(*iter)->setConnectedStatusbar(0);
|
2015-05-23 13:35:12 +02:00
|
|
|
delAccelerator (*iter);
|
2016-11-02 00:37:58 +01:00
|
|
|
iter = key_list.erase(iter);
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-02 21:26:25 +02:00
|
|
|
|
2016-07-28 01:04:27 +02:00
|
|
|
setStatusBar(0);
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-02 00:37:58 +01: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
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
text = mgs;
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
bool FStatusBar::hasActivatedKey()
|
|
|
|
{
|
|
|
|
if ( ! key_list.empty() )
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
std::vector<FStatusKey*>::const_iterator iter, end;
|
|
|
|
iter = key_list.begin();
|
|
|
|
end = key_list.end();
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
while ( iter != end )
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( (*iter)->isActivated() )
|
|
|
|
return true;
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
++iter;
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
return false;
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2016-09-30 04:55:28 +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];
|
|
|
|
}
|
|
|
|
catch (const std::bad_alloc& ex)
|
|
|
|
{
|
|
|
|
std::cerr << "not enough memory to alloc " << ex.what() << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-10-06 23:15:09 +02:00
|
|
|
std::memset(blank, ' ', uLong(screenWidth));
|
2016-09-30 04:55:28 +02:00
|
|
|
blank[screenWidth] = '\0';
|
2016-10-11 04:57:36 +02:00
|
|
|
setPrintPos (1, 1);
|
2016-10-02 21:26:25 +02:00
|
|
|
print (blank);
|
2016-09-30 04:55:28 +02:00
|
|
|
delete[] blank;
|
|
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
2016-11-02 00:37:58 +01:00
|
|
|
void FStatusBar::drawMessage()
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
int termWidth, space_offset;
|
|
|
|
bool isLastActiveFocus, hasKeys;
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( ! (isVisible() ) )
|
2015-05-23 13:35:12 +02:00
|
|
|
return;
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( x < 0 || x_msg < 0 )
|
2015-05-23 13:35:12 +02:00
|
|
|
return;
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
x = x_msg;
|
|
|
|
termWidth = getColumnNumber();
|
|
|
|
space_offset = 1;
|
|
|
|
hasKeys = bool(! key_list.empty());
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( hasKeys )
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
std::vector<FStatusKey*>::const_iterator iter = key_list.end();
|
2017-01-15 19:48:27 +01:00
|
|
|
isLastActiveFocus = bool ( (*(iter-1))->isActivated()
|
|
|
|
|| (*(iter-1))->hasMouseFocus() );
|
2016-11-02 00:37:58 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
isLastActiveFocus = false;
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( isLastActiveFocus )
|
|
|
|
space_offset = 0;
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2016-11-02 00:37:58 +01: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",
|
2017-04-09 20:08:53 +02:00
|
|
|
F_METHOD_CALLBACK (this, &FStatusBar::cb_statuskey_activated)
|
2016-11-02 00:37:58 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
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
|
|
|
|
2016-12-18 23:34:11 +01: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
|
|
|
}
|
2016-07-09 00:01:59 +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-07-09 00:01:59 +02:00
|
|
|
|
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;
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( ! key_list.empty() )
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
|
|
|
std::vector<FStatusKey*>::const_iterator iter, end;
|
|
|
|
int X = 1;
|
2016-11-02 00:37:58 +01:00
|
|
|
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();
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
if ( mouse_x >= x1 && mouse_x <= x2 && mouse_y == 1 )
|
|
|
|
(*iter)->setActive();
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2015-10-10 03:14:14 +02:00
|
|
|
// 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
|
|
|
}
|
2016-07-09 00:01:59 +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-07-09 00:01:59 +02:00
|
|
|
|
2016-01-17 02:57:08 +01:00
|
|
|
if ( ev->getButton() != fc::LeftButton )
|
2015-05-23 13:35:12 +02:00
|
|
|
return;
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
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;
|
2016-11-02 00:37:58 +01:00
|
|
|
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();
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-12-18 23:34:11 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
X = x2 + 2;
|
|
|
|
++iter;
|
|
|
|
}
|
2016-07-09 00:01:59 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-02-24 00:30:07 +01:00
|
|
|
void FStatusBar::cb_statuskey_activated (FWidget* widget, data_ptr)
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( ! key_list.empty() )
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
|
|
|
std::vector<FStatusKey*>::const_iterator iter, end;
|
2016-11-02 00:37:58 +01:00
|
|
|
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 )
|
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( (*iter) != statuskey && (*iter)->isActivated() )
|
|
|
|
(*iter)->unsetActive();
|
2015-05-23 13:35:12 +02:00
|
|
|
++iter;
|
|
|
|
}
|
|
|
|
}
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( isVisible() && isShown() )
|
|
|
|
redraw();
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
|
|
|
|
// private methods of FStatusBar
|
2015-05-23 13:35:12 +02:00
|
|
|
//----------------------------------------------------------------------
|
2016-11-02 00:37:58 +01:00
|
|
|
void FStatusBar::init()
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01: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
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( getRootWidget() )
|
|
|
|
getRootWidget()->setBottomPadding(1, true);
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
setForegroundColor (wc.statusbar_fg);
|
|
|
|
setBackgroundColor (wc.statusbar_bg);
|
|
|
|
unsetFocusable();
|
|
|
|
}
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FStatusBar::draw()
|
|
|
|
{
|
|
|
|
drawKeys();
|
|
|
|
drawMessage();
|
|
|
|
}
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2016-11-02 00:37:58 +01: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
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
x_msg = 1;
|
|
|
|
return;
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
setPrintPos (1, 1);
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
if ( isMonochron() )
|
|
|
|
setReverse(true);
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
iter = key_list.begin();
|
|
|
|
end = key_list.end();
|
|
|
|
|
|
|
|
while ( iter != end )
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
int kname_len = int(getKeyName((*iter)->getKey()).getLength());
|
|
|
|
|
|
|
|
if ( x+kname_len+2 < screenWidth )
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( (*iter)->isActivated() || (*iter)->hasMouseFocus() )
|
2015-05-23 13:35:12 +02:00
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
int txt_length;
|
|
|
|
if ( isMonochron() )
|
|
|
|
setReverse(false);
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
setColor ( wc.statusbar_active_hotkey_fg
|
|
|
|
, wc.statusbar_active_hotkey_bg );
|
|
|
|
x++;
|
2016-10-02 21:26:25 +02:00
|
|
|
print (' ');
|
2016-11-02 00:37:58 +01:00
|
|
|
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
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( x <= screenWidth )
|
|
|
|
{
|
|
|
|
print ((*iter)->getText());
|
|
|
|
x++;
|
|
|
|
print (fc::RightHalfBlock); // ▌
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
print ( (*iter)->getText()
|
|
|
|
.left(uInt(txt_length+screenWidth-x-1)) );
|
|
|
|
print ("..");
|
|
|
|
}
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( isMonochron() )
|
|
|
|
setReverse(true);
|
|
|
|
}
|
2015-05-23 13:35:12 +02:00
|
|
|
else
|
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
int txt_length;
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2016-11-02 00:37:58 +01: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
|
|
|
|
2016-11-02 00:37:58 +01: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
|
|
|
|
2016-12-18 23:34:11 +01:00
|
|
|
if ( iter+1 != key_list.end()
|
|
|
|
&& ( (*(iter+1))->isActivated() || (*(iter+1))->hasMouseFocus() )
|
|
|
|
&& x + int(getKeyName((*(iter+1))->getKey()).getLength()) + 3
|
|
|
|
< screenWidth )
|
2016-11-02 00:37:58 +01:00
|
|
|
{
|
|
|
|
// next element is active
|
|
|
|
if ( isMonochron() )
|
|
|
|
setReverse(false);
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2016-11-13 22:08:40 +01:00
|
|
|
if ( no_half_block_character )
|
|
|
|
print (' ');
|
|
|
|
else
|
|
|
|
{
|
|
|
|
setColor (wc.statusbar_active_fg, wc.statusbar_active_bg);
|
|
|
|
print (fc::LeftHalfBlock); // ▐
|
|
|
|
}
|
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
x++;
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
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
|
|
|
|
{
|
2016-11-02 00:37:58 +01:00
|
|
|
setColor (wc.statusbar_fg, wc.statusbar_bg);
|
|
|
|
|
|
|
|
for (; x <= screenWidth; x++)
|
|
|
|
print (' ');
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
++iter;
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|
2016-11-02 00:37:58 +01:00
|
|
|
if ( isMonochron() )
|
|
|
|
setReverse(false);
|
2016-07-09 00:01:59 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
x_msg = x;
|
2015-05-23 13:35:12 +02:00
|
|
|
}
|