QTfrontend/ui/page/AbstractPage.h
changeset 8377 869f80966a77
parent 7781 6505805e7f98
child 8384 a6e7a95f3b2e
--- 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.<br />
          * Keep in mind not to expose twidgets as public!