1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
|
/*
* Dillo Widget
*
* Copyright 2005-2007 Sebastian Geerken <sgeerken@dillo.org>
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include "fltkviewport.hh"
#include <FL/Fl.H>
#include <FL/fl_draw.H>
#include <FL/names.h>
#include <stdio.h>
#include "../lout/msg.h"
#include "../lout/debug.hh"
using namespace lout;
using namespace lout::object;
using namespace lout::container::typed;
namespace dw {
namespace fltk {
/*
* Lets SHIFT+{Left,Right} go to the parent
*/
class CustScrollbar : public Fl_Scrollbar
{
public:
CustScrollbar(int x, int y, int w, int h) : Fl_Scrollbar(x,y,w,h) {};
int handle(int e) {
if (e == FL_SHORTCUT && Fl::event_state() == FL_SHIFT &&
(Fl::event_key() == FL_Left || Fl::event_key() == FL_Right))
return 0;
return Fl_Scrollbar::handle(e);
}
};
FltkViewport::FltkViewport (int X, int Y, int W, int H, const char *label):
FltkWidgetView (X, Y, W, H, label)
{
DBG_OBJ_CREATE ("dw::fltk::FltkViewport");
hscrollbar = new CustScrollbar (x (), y (), 1, 1);
hscrollbar->type(FL_HORIZONTAL);
hscrollbar->callback (hscrollbarCallback, this);
hscrollbar->hide();
add (hscrollbar);
vscrollbar = new Fl_Scrollbar (x (), y(), 1, 1);
vscrollbar->type(FL_VERTICAL);
vscrollbar->callback (vscrollbarCallback, this);
vscrollbar->hide();
add (vscrollbar);
hasDragScroll = 1;
scrollX = scrollY = scrollDX = scrollDY = 0;
horScrolling = verScrolling = dragScrolling = 0;
gadgetOrientation[0] = GADGET_HORIZONTAL;
gadgetOrientation[1] = GADGET_HORIZONTAL;
gadgetOrientation[2] = GADGET_VERTICAL;
gadgetOrientation[3] = GADGET_HORIZONTAL;
gadgets =
new container::typed::List <object::TypedPointer < Fl_Widget> >
(true);
}
FltkViewport::~FltkViewport ()
{
delete gadgets;
DBG_OBJ_DELETE ();
}
void FltkViewport::adjustScrollbarsAndGadgetsAllocation ()
{
int hdiff = 0, vdiff = 0;
int visibility = 0;
_MSG(" >>FltkViewport::adjustScrollbarsAndGadgetsAllocation\n");
if (hscrollbar->visible ())
visibility |= 1;
if (vscrollbar->visible ())
visibility |= 2;
if (gadgets->size () > 0) {
switch (gadgetOrientation [visibility]) {
case GADGET_VERTICAL:
hdiff = SCROLLBAR_THICKNESS;
vdiff = SCROLLBAR_THICKNESS * gadgets->size ();
break;
case GADGET_HORIZONTAL:
hdiff = SCROLLBAR_THICKNESS * gadgets->size ();
vdiff = SCROLLBAR_THICKNESS;
break;
}
} else {
hdiff = vscrollbar->visible () ? SCROLLBAR_THICKNESS : 0;
vdiff = hscrollbar->visible () ? SCROLLBAR_THICKNESS : 0;
}
hscrollbar->resize(x (), y () + h () - SCROLLBAR_THICKNESS,
w () - hdiff, SCROLLBAR_THICKNESS);
vscrollbar->resize(x () + w () - SCROLLBAR_THICKNESS, y (),
SCROLLBAR_THICKNESS, h () - vdiff);
int X = x () + w () - SCROLLBAR_THICKNESS;
int Y = y () + h () - SCROLLBAR_THICKNESS;
for (Iterator <TypedPointer < Fl_Widget> > it = gadgets->iterator ();
it.hasNext (); ) {
Fl_Widget *widget = it.getNext()->getTypedValue ();
widget->resize(x (), y (), SCROLLBAR_THICKNESS, SCROLLBAR_THICKNESS);
switch (gadgetOrientation [visibility]) {
case GADGET_VERTICAL:
Y -= SCROLLBAR_THICKNESS;
break;
case GADGET_HORIZONTAL:
X -= SCROLLBAR_THICKNESS;
break;
}
}
}
void FltkViewport::adjustScrollbarValues ()
{
hscrollbar->value (scrollX, hscrollbar->w (), 0, canvasWidth);
vscrollbar->value (scrollY, vscrollbar->h (), 0, canvasHeight);
}
void FltkViewport::hscrollbarChanged ()
{
scroll (hscrollbar->value () - scrollX, 0);
}
void FltkViewport::vscrollbarChanged ()
{
scroll (0, vscrollbar->value () - scrollY);
}
void FltkViewport::vscrollbarCallback (Fl_Widget *vscrollbar,void *viewportPtr)
{
((FltkViewport*)viewportPtr)->vscrollbarChanged ();
}
void FltkViewport::hscrollbarCallback (Fl_Widget *hscrollbar,void *viewportPtr)
{
((FltkViewport*)viewportPtr)->hscrollbarChanged ();
}
// ----------------------------------------------------------------------
void FltkViewport::resize(int X, int Y, int W, int H)
{
bool dimension_changed = W != w() || H != h();
Fl_Group::resize(X, Y, W, H);
if (dimension_changed) {
theLayout->viewportSizeChanged (this, W, H);
adjustScrollbarsAndGadgetsAllocation ();
}
}
void FltkViewport::draw_area (void *data, int x, int y, int w, int h)
{
FltkViewport *vp = (FltkViewport*) data;
fl_push_clip(x, y, w, h);
vp->FltkWidgetView::draw ();
for (Iterator <TypedPointer < Fl_Widget> > it = vp->gadgets->iterator();
it.hasNext (); ) {
Fl_Widget *widget = it.getNext()->getTypedValue ();
vp->draw_child (*widget);
}
fl_pop_clip();
}
void FltkViewport::draw ()
{
int hdiff = vscrollbar->visible () ? SCROLLBAR_THICKNESS : 0;
int vdiff = hscrollbar->visible () ? SCROLLBAR_THICKNESS : 0;
int d = damage();
if (d & FL_DAMAGE_SCROLL) {
clear_damage (FL_DAMAGE_SCROLL);
fl_scroll(x(), y(), w() - hdiff, h() - vdiff,
-scrollDX, -scrollDY, draw_area, this);
clear_damage (d & ~FL_DAMAGE_SCROLL);
}
if (d) {
draw_area(this, x(), y(), w () - hdiff, h () - vdiff);
if (d == FL_DAMAGE_ALL || hscrollbar->damage ())
draw_child (*hscrollbar);
if (d == FL_DAMAGE_ALL || vscrollbar->damage ())
draw_child (*vscrollbar);
if (d == FL_DAMAGE_ALL && hdiff && vdiff) {
fl_color(FL_BACKGROUND_COLOR);
fl_rectf(x()+w()-hdiff, y()+h()-vdiff, hdiff, vdiff);
}
}
scrollDX = 0;
scrollDY = 0;
}
int FltkViewport::handle (int event)
{
_MSG("FltkViewport::handle %s\n", fl_eventnames[event]);
switch(event) {
case FL_KEYBOARD:
/* When the viewport has focus (and not one of its children), FLTK
* sends the event here. Returning zero tells FLTK to resend the
* event as SHORTCUT, which we finally route to the parent. */
/* As we don't know the exact keybindings set by the user, we ask for
* all of them (except for the minimum needed to keep form navigation).*/
if (Fl::event_key() != FL_Tab || Fl::event_ctrl())
return 0;
break;
case FL_SHORTCUT:
/* send it to the parent (UI) */
return 0;
case FL_FOCUS:
/** \bug Draw focus box. */
break;
case FL_UNFOCUS:
/** \bug Undraw focus box. */
break;
case FL_PUSH:
if (vscrollbar->visible() && Fl::event_inside(vscrollbar)) {
if (vscrollbar->handle(event))
verScrolling = 1;
} else if (hscrollbar->visible() && Fl::event_inside(hscrollbar)) {
if (hscrollbar->handle(event))
horScrolling = 1;
} else if (FltkWidgetView::handle(event) == 0 &&
Fl::event_button() == FL_MIDDLE_MOUSE) {
if (!hasDragScroll) {
/* let the parent widget handle it... */
return 0;
} else {
/* receive FL_DRAG and FL_RELEASE */
dragScrolling = 1;
dragX = Fl::event_x();
dragY = Fl::event_y();
setCursor (core::style::CURSOR_MOVE);
}
}
return 1;
break;
case FL_DRAG:
if (Fl::event_inside(this))
Fl::remove_timeout(selectionScroll);
if (dragScrolling) {
scroll(dragX - Fl::event_x(), dragY - Fl::event_y());
dragX = Fl::event_x();
dragY = Fl::event_y();
return 1;
} else if (verScrolling) {
vscrollbar->handle(event);
return 1;
} else if (horScrolling) {
hscrollbar->handle(event);
return 1;
} else if (!Fl::event_inside(this)) {
mouse_x = Fl::event_x();
mouse_y = Fl::event_y();
if (!Fl::has_timeout(selectionScroll, this))
Fl::add_timeout(0.025, selectionScroll, this);
}
break;
case FL_MOUSEWHEEL:
return (Fl::event_dx() ? hscrollbar : vscrollbar)->handle(event);
break;
case FL_RELEASE:
Fl::remove_timeout(selectionScroll);
if (Fl::event_button() == FL_MIDDLE_MOUSE) {
setCursor (core::style::CURSOR_DEFAULT);
} else if (verScrolling) {
vscrollbar->handle(event);
} else if (horScrolling) {
hscrollbar->handle(event);
}
horScrolling = verScrolling = dragScrolling = 0;
break;
case FL_ENTER:
/* could be the result of, e.g., closing another window. */
mouse_x = Fl::event_x();
mouse_y = Fl::event_y();
positionChanged();
break;
case FL_LEAVE:
mouse_x = mouse_y = -1;
break;
}
return FltkWidgetView::handle (event);
}
// ----------------------------------------------------------------------
void FltkViewport::setCanvasSize (int width, int ascent, int descent)
{
FltkWidgetView::setCanvasSize (width, ascent, descent);
adjustScrollbarValues ();
}
/*
* This is used to simulate mouse motion (e.g., when scrolling).
*/
void FltkViewport::positionChanged ()
{
if (!dragScrolling && mouse_x >= x() && mouse_x < x()+w() && mouse_y >= y()
&& mouse_y < y()+h())
(void)theLayout->motionNotify (this,
translateViewXToCanvasX (mouse_x),
translateViewYToCanvasY (mouse_y),
(core::ButtonState)0);
}
/*
* For scrollbars, this currently sets the same step to both vertical and
* horizontal. It may be differentiated if necessary.
*/
void FltkViewport::setScrollStep(int step)
{
vscrollbar->linesize(step);
hscrollbar->linesize(step);
}
bool FltkViewport::usesViewport ()
{
return true;
}
int FltkViewport::getHScrollbarThickness ()
{
return SCROLLBAR_THICKNESS;
}
int FltkViewport::getVScrollbarThickness ()
{
return SCROLLBAR_THICKNESS;
}
void FltkViewport::scrollTo (int x, int y)
{
int hdiff = vscrollbar->visible () ? SCROLLBAR_THICKNESS : 0;
int vdiff = hscrollbar->visible () ? SCROLLBAR_THICKNESS : 0;
x = misc::min (x, canvasWidth - w() + hdiff);
x = misc::max (x, 0);
y = misc::min (y, canvasHeight - h() + vdiff);
y = misc::max (y, 0);
if (x == scrollX && y == scrollY) {
return;
}
/* multiple calls to scroll can happen before a redraw occurs.
* scrollDX and scrollDY can therefore be non-zero here.
*/
updateCanvasWidgets (x - scrollX, y - scrollY);
scrollDX += x - scrollX;
scrollDY += y - scrollY;
scrollX = x;
scrollY = y;
adjustScrollbarValues ();
damage(FL_DAMAGE_SCROLL);
theLayout->scrollPosChanged (this, scrollX, scrollY);
positionChanged();
}
void FltkViewport::scroll (int dx, int dy)
{
scrollTo (scrollX + dx, scrollY + dy);
}
void FltkViewport::scroll (core::ScrollCommand cmd)
{
if (cmd == core::SCREEN_UP_CMD) {
scroll (0, -h () + vscrollbar->linesize ());
} else if (cmd == core::SCREEN_DOWN_CMD) {
scroll (0, h () - vscrollbar->linesize ());
} else if (cmd == core::SCREEN_LEFT_CMD) {
scroll (-w() + hscrollbar->linesize (), 0);
} else if (cmd == core::SCREEN_RIGHT_CMD) {
scroll (w() - hscrollbar->linesize (), 0);
} else if (cmd == core::LINE_UP_CMD) {
scroll (0, (int) -vscrollbar->linesize ());
} else if (cmd == core::LINE_DOWN_CMD) {
scroll (0, (int) vscrollbar->linesize ());
} else if (cmd == core::LEFT_CMD) {
scroll ((int) -hscrollbar->linesize (), 0);
} else if (cmd == core::RIGHT_CMD) {
scroll ((int) hscrollbar->linesize (), 0);
} else if (cmd == core::TOP_CMD) {
scrollTo (scrollX, 0);
} else if (cmd == core::BOTTOM_CMD) {
scrollTo (scrollX, canvasHeight); /* gets adjusted in scrollTo () */
}
}
/*
* Scrolling in response to selection where the cursor is outside the view.
*/
void FltkViewport::selectionScroll ()
{
int distance;
int dx = 0, dy = 0;
if ((distance = x() - mouse_x) > 0)
dx = -distance * hscrollbar->linesize () / 48 - 1;
else if ((distance = mouse_x - (x() + w())) > 0)
dx = distance * hscrollbar->linesize () / 48 + 1;
if ((distance = y() - mouse_y) > 0)
dy = -distance * vscrollbar->linesize () / 48 - 1;
else if ((distance = mouse_y - (y() + h())) > 0)
dy = distance * vscrollbar->linesize () / 48 + 1;
scroll (dx, dy);
}
void FltkViewport::selectionScroll (void *data)
{
((FltkViewport *)data)->selectionScroll ();
Fl::repeat_timeout(0.025, selectionScroll, data);
}
void FltkViewport::setViewportSize (int width, int height,
int hScrollbarThickness,
int vScrollbarThickness)
{
int adjustReq =
(hscrollbar->visible() ? !hScrollbarThickness : hScrollbarThickness) ||
(vscrollbar->visible() ? !vScrollbarThickness : vScrollbarThickness);
_MSG("FltkViewport::setViewportSize old_w,old_h=%dx%d -> w,h=%dx%d\n"
"\t hThick=%d hVis=%d, vThick=%d vVis=%d, adjustReq=%d\n",
w(),h(),width,height,
hScrollbarThickness,hscrollbar->visible(),
vScrollbarThickness,vscrollbar->visible(), adjustReq);
(hScrollbarThickness > 0) ? hscrollbar->show () : hscrollbar->hide ();
(vScrollbarThickness > 0) ? vscrollbar->show () : vscrollbar->hide ();
/* If no scrollbar, go to the beginning */
scroll(hScrollbarThickness ? 0 : -scrollX,
vScrollbarThickness ? 0 : -scrollY);
/* Adjust when scrollbar visibility changes */
if (adjustReq)
adjustScrollbarsAndGadgetsAllocation ();
}
void FltkViewport::updateCanvasWidgets (int dx, int dy)
{
// scroll all child widgets except scroll bars
for (int i = children () - 1; i > 0; i--) {
Fl_Widget *widget = child (i);
if (widget == hscrollbar || widget == vscrollbar)
continue;
widget->position(widget->x () - dx, widget->y () - dy);
}
}
int FltkViewport::translateViewXToCanvasX (int X)
{
return X - x () + scrollX;
}
int FltkViewport::translateViewYToCanvasY (int Y)
{
return Y - y () + scrollY;
}
int FltkViewport::translateCanvasXToViewX (int X)
{
return X + x () - scrollX;
}
int FltkViewport::translateCanvasYToViewY (int Y)
{
return Y + y () - scrollY;
}
// ----------------------------------------------------------------------
void FltkViewport::setGadgetOrientation (bool hscrollbarVisible,
bool vscrollbarVisible,
FltkViewport::GadgetOrientation
gadgetOrientation)
{
this->gadgetOrientation[(hscrollbarVisible ? 0 : 1) |
(vscrollbarVisible ? 0 : 2)] = gadgetOrientation;
adjustScrollbarsAndGadgetsAllocation ();
}
void FltkViewport::addGadget (Fl_Widget *gadget)
{
/** \bug Reparent? */
gadgets->append (new TypedPointer < Fl_Widget> (gadget));
adjustScrollbarsAndGadgetsAllocation ();
}
} // namespace fltk
} // namespace dw
|