epoc32/include/aknutils.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 
     2 #ifndef __AKNUTILS_H__
     3 #define __AKNUTILS_H__
     4 
     5 //TODO: temporary fix this
     6 class AknLayoutUtils
     7 {
     8 public:
     9    enum TAknCbaLocation
    10    {
    11       EAknCbaLocationBottom, //landscape and portrait
    12       EAknCbaLocationRight,  //only landscape
    13       EAknCbaLocationLeft    //only landscape
    14    };
    15 
    16    static TAknCbaLocation CbaLocation();
    17 
    18    //SL: added
    19    static void SetCbaLocation(TAknCbaLocation aLocation);
    20 };
    21 
    22 
    23 #endif