Lines Matching refs:req
303 Gtk::Requisition req;
306 _insides->get_preferred_size(req, req_natural);
308 req = _insides->size_request();
310 gint delta = allocation.get_width() - req.width;
312 if ( (delta > 4) && req.height < allocation.get_height() ) {
350 Gtk::Requisition req;
353 _scroller->get_preferred_size(req, req_natural);
355 req = _scroller->size_request();
358 if ( currW > req.width ) {
359 req.width = currW;
378 req.height -= scrollReq.height + 8;
389 int h2 = ((req2.height > 0) && (req.height > req2.height)) ? (req.height / req2.height) : 1;
390 int w2 = ((req2.width > 0) && (req.width > req2.width)) ? (req.width / req2.width) : 1;