QTfrontend/ui/page/AbstractPage.h
changeset 8377 869f80966a77
parent 7781 6505805e7f98
child 8384 a6e7a95f3b2e
equal deleted inserted replaced
8376:c11cc7246df7 8377:869f80966a77
   119 
   119 
   120         /**
   120         /**
   121          * @brief Used during page construction.
   121          * @brief Used during page construction.
   122          * You can implement this method in your subclass.
   122          * You can implement this method in your subclass.
   123          *
   123          *
       
   124          * Use it to define layout (not behavior) of the page's footer to the left of the help text.
       
   125          */
       
   126         virtual QLayout * footerLayoutLeftDefinition()
       
   127         {
       
   128             return NULL;
       
   129         };
       
   130 
       
   131         /**
       
   132          * @brief Used during page construction.
       
   133          * You can implement this method in your subclass.
       
   134          *
   124          * This is a good place to connect signals within your page in order
   135          * This is a good place to connect signals within your page in order
   125          * to get the desired page behavior.<br />
   136          * to get the desired page behavior.<br />
   126          * Keep in mind not to expose twidgets as public!
   137          * Keep in mind not to expose twidgets as public!
   127          * instead define a signal with a meaningful name and connect the widget
   138          * instead define a signal with a meaningful name and connect the widget
   128          * signals to your page signals
   139          * signals to your page signals