]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/xforms_resize.h
fix crash with "save as"
[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 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "forms_fwd.h"
20
21 /** Ascertains the scaling factor needed to ensure that all labels fit
22     within their button.
23
24     Tabfolders are searched also by recursively calling this function.
25  */
26 double get_scale_to_fit(FL_FORM * form);
27
28 /** A wrapper for fl_scale_form(form, scale, 1) that scales the parent form
29     horizontally, but also scales the leaves (FL_FORMs) of any nested
30     tabfolder, should one exist.
31
32     Tabfolders are scaled also by recursively calling this function.
33  */
34 void scale_form_horizontally(FL_FORM * form, double factor);
35
36 #endif // XFORMS_RESIZE_H