diff -r ba22309243a1 -r f8c3d4e6102c radioapp/radiowidgets/inc/radiocarouselitem.h --- a/radioapp/radiowidgets/inc/radiocarouselitem.h Thu Jul 08 12:44:18 2010 +0300 +++ b/radioapp/radiowidgets/inc/radiocarouselitem.h Fri Jul 23 10:16:59 2010 +0300 @@ -37,6 +37,7 @@ { Q_OBJECT Q_PROPERTY(Appearance appearance READ appearance WRITE setAppearance) + Q_PROPERTY(bool landscape READ landscape WRITE setLandscape) Q_ENUMS(Appearance) friend class RadioStationCarousel; @@ -71,6 +72,9 @@ void setAppearance( Appearance appearance ); Appearance appearance() const; + void setLandscape( bool landscape ); + bool landscape() const; + void setSeekLayout( bool seekLayout ); void setStation( const RadioStation& station ); @@ -122,6 +126,7 @@ Appearance mAppearance; bool mOwnsCss; + bool mLandscapeMode; CarouselItemFlags mFlags; };