MCPcopy Create free account
hub / github.com/dillo-browser/dillo / full_width

Method full_width

dw/fltkui.cc:1557–1571  ·  view source on GitHub ↗

* Fl_Browser_ has a full_width(), but it has a tendency to contain 0, so... */

Source from the content-addressed store, hash-verified

1555 * Fl_Browser_ has a full_width(), but it has a tendency to contain 0, so...
1556 */
1557int CustBrowser::full_width() const
1558{
1559 int max = 0;
1560 void *item = item_first();
1561
1562 while (item) {
1563 int w = item_width(item);
1564
1565 if (w > max)
1566 max = w;
1567
1568 item = item_next(item);
1569 }
1570 return max;
1571}
1572
1573FltkListResource::FltkListResource (FltkPlatform *platform,
1574 core::ui::ListResource::SelectionMode

Callers 1

getMaxItemWidthMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected