]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/xforms_resize.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / xforms_resize.h
1 // -*- C++ -*-
2 /**
3  * \file xforms_resize.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef XFORMS_RESIZE_H
13 #define XFORMS_RESIZE_H
14
15
16 #include "forms_fwd.h"
17
18 /** Ascertains the scaling factor needed to ensure that all labels fit
19     within their button.
20
21     Tabfolders are searched also by recursively calling this function.
22  */
23 double get_scale_to_fit(FL_FORM * form);
24
25 /** A wrapper for fl_scale_form(form, scale, 1) that scales the parent form
26     horizontally, but also scales the leaves (FL_FORMs) of any nested
27     tabfolder, should one exist.
28
29     Tabfolders are scaled also by recursively calling this function.
30  */
31 void scale_form_horizontally(FL_FORM * form, double factor);
32
33 #endif // XFORMS_RESIZE_H