QTfrontend/ui/page/AbstractPage.h
changeset 6616 f77bb02b669f
parent 6577 9e49e6a8585b
child 6700 e04da46ee43c
equal deleted inserted replaced
6615:65602f1ef0f8 6616:f77bb02b669f
    52 class QSlider;
    52 class QSlider;
    53 class QGridlayout;
    53 class QGridlayout;
    54 
    54 
    55 class AbstractPage : public QWidget
    55 class AbstractPage : public QWidget
    56 {
    56 {
    57     Q_OBJECT
    57         Q_OBJECT
    58 
    58 
    59     public:
    59     public:
    60 
    60 
    61         /**
    61         /**
    62         * @brief Changes the desc text (should not be called manualy)
    62         * @brief Changes the desc text (should not be called manualy)
   110          * @brief Used during page construction.
   110          * @brief Used during page construction.
   111          * You can implement this method in your subclass.
   111          * You can implement this method in your subclass.
   112          *
   112          *
   113          * Use it to define layout (not behavior) of the page's footer.
   113          * Use it to define layout (not behavior) of the page's footer.
   114          */
   114          */
   115         virtual QLayout * footerLayoutDefinition() { return NULL; };
   115         virtual QLayout * footerLayoutDefinition()
       
   116         {
       
   117             return NULL;
       
   118         };
   116 
   119 
   117         /**
   120         /**
   118          * @brief Used during page construction.
   121          * @brief Used during page construction.
   119          * You can implement this method in your subclass.
   122          * You can implement this method in your subclass.
   120          *
   123          *