diff -r c11cc7246df7 -r 869f80966a77 QTfrontend/ui/page/AbstractPage.h --- a/QTfrontend/ui/page/AbstractPage.h Mon Jan 14 12:07:06 2013 +0400 +++ b/QTfrontend/ui/page/AbstractPage.h Mon Jan 14 11:19:59 2013 +0100 @@ -121,6 +121,17 @@ * @brief Used during page construction. * You can implement this method in your subclass. * + * Use it to define layout (not behavior) of the page's footer to the left of the help text. + */ + virtual QLayout * footerLayoutLeftDefinition() + { + return NULL; + }; + + /** + * @brief Used during page construction. + * You can implement this method in your subclass. + * * This is a good place to connect signals within your page in order * to get the desired page behavior.
* Keep in mind not to expose twidgets as public!