NotifyBox is now window... to simplify a bunch of things.

This commit is contained in:
Sanel Zukan
2007-06-28 11:21:24 +00:00
parent 2bb9e5dc4c
commit cbc6571b77
3 changed files with 51 additions and 69 deletions

View File

@ -23,20 +23,21 @@
#define TIMEOUT (1.0f/60.0f)
#define TIME_SHOWN 3.0f
#define STATE_SHOWING 1
#define STATE_HIDING 2
#define STATE_DONE 3
NotifyBox::NotifyBox(int aw, int ah) : Fl_Box(0, 0, 0, 0) {
NotifyBox::NotifyBox(int aw, int ah) : Fl_Window(0, 0, 10, 10) {
area_w = aw;
area_h = ah;
lwidth = lheight = 0;
is_shown = false;
state = 0;
box(FL_BORDER_BOX);
color(FL_WHITE);
align(FL_ALIGN_WRAP);
clear_border();
set_non_modal();
begin();
txt_box = new Fl_Box(0, 0, w(), h());
txt_box->box(FL_BORDER_BOX);
txt_box->color(FL_WHITE);
txt_box->align(FL_ALIGN_WRAP);
end();
}
NotifyBox::~NotifyBox() {
@ -47,89 +48,67 @@ void NotifyBox::update_label_size(void) {
lwidth = MAX_LABEL_WIDTH;
lheight= 0;
fl_font(labelfont(), labelsize());
fl_measure(label(), lwidth, lheight, align());
fl_font(txt_box->labelfont(), txt_box->labelsize());
fl_measure(txt_box->label(), lwidth, lheight, txt_box->align());
lwidth += 10;
lheight += 10;
}
void NotifyBox::resize_all(void) {
update_label_size();
// center box
int x_pos = (area_w/2) - (lwidth/2);
resize(x_pos, 0, lwidth, lheight);
txt_box->resize(0, 0, w(), h());
}
void NotifyBox::show(void) {
if(shown())
return;
if(state == STATE_HIDING)
return;
EDEBUG(ESTRLOC ": %i %i\n", x(), y());
resize_all();
update_label_size();
// center box
int x_pos = (area_w/2) - (lwidth/2);
resize(x_pos, y() - lheight, lwidth, lheight);
Fl_Box::show();
state = STATE_SHOWING;
Fl::add_timeout(TIMEOUT, animate_cb, this);
Fl_Window::show();
is_shown = true;
Fl::add_timeout(TIME_SHOWN, visible_timeout_cb, this);
}
void NotifyBox::hide(void) {
if(!shown())
return;
// explicitely remove timer when hide() is called
Fl::remove_timeout(animate_cb);
Fl_Box::hide();
Fl_Window::hide();
is_shown = false;
state = 0;
Fl::remove_timeout(visible_timeout_cb);
Fl::remove_timeout(animate_cb);
}
void NotifyBox::label(const char* l) {
Fl_Box::label(l);
txt_box->label(l);
resize_all();
}
void NotifyBox::copy_label(const char* l) {
Fl_Box::copy_label(l);
txt_box->copy_label(l);
resize_all();
}
const char* NotifyBox::label(void) {
return Fl_Box::label();
return txt_box->label();
}
void NotifyBox::animate(void) {
if(state == STATE_SHOWING) {
if(y() < 0) {
position(x(), y() + 1);
redraw();
//EDEBUG("SHOWING...\n");
Fl::repeat_timeout(TIMEOUT, animate_cb, this);
state = STATE_SHOWING;
} else {
state = STATE_DONE;
is_shown = true;
// now set visible timeout, which will procede to hiding()
visible_timeout();
}
} else if(state == STATE_HIDING) {
if(y() > -lheight) {
position(x(), y() - 1);
//redraw();
//EDEBUG("%i %i\n", x(), y());
// this will prevent redrawing whole screen
Desktop::instance()->damage(FL_DAMAGE_ALL, x(), 0, w(), h());
//EDEBUG("HIDING...\n");
Fl::repeat_timeout(TIMEOUT, animate_cb, this);
} else {
state = STATE_DONE;
is_shown = false;
}
}
if(y() > -lheight) {
position(x(), y() - 1);
Fl::repeat_timeout(TIMEOUT, animate_cb, this);
} else
hide();
}
void NotifyBox::visible_timeout(void) {
state = STATE_HIDING;
Fl::repeat_timeout(TIME_SHOWN, animate_cb, this);
Fl::remove_timeout(visible_timeout_cb);
Fl::add_timeout(TIMEOUT, animate_cb, this);
}