videocollection/videocollectionview/inc/videolistwidget.h
changeset 35 3738fe97f027
parent 34 bbb98528c666
child 36 8aed59de29f9
equal deleted inserted replaced
34:bbb98528c666 35:3738fe97f027
   157      */
   157      */
   158     void longPressGesture (const QPointF &point);
   158     void longPressGesture (const QPointF &point);
   159 
   159 
   160 private slots:
   160 private slots:
   161 
   161 
   162 	/**
       
   163      * Signaled for item share.
       
   164      *
       
   165      */
       
   166     void shareItemSlot();
       
   167 
       
   168     /**
   162     /**
   169      * Signaled for one item deletion.
   163      * Signaled for one item deletion.
   170      *
   164      *
   171      */
   165      */
   172     void deleteItemSlot();
   166     void deleteItemSlot();
   186     /**
   180     /**
   187      * Signaled to add an item into a collection.
   181      * Signaled to add an item into a collection.
   188      *
   182      *
   189      */
   183      */
   190     void addToCollectionSlot();
   184     void addToCollectionSlot();
       
   185     
       
   186     /**
       
   187      * Signaled to remove a particular video from collection
       
   188      */
       
   189     void removeFromCollectionSlot();
   191 
   190 
   192     /**
   191     /**
   193      * Signaled to remove a user created collection.
   192      * Signaled to remove a user created collection.
   194      *
   193      *
   195      */
   194      */
   208      * playback is initialized from context menu.
   207      * playback is initialized from context menu.
   209      *
   208      *
   210      */
   209      */
   211     void playItemSlot();
   210     void playItemSlot();
   212 
   211 
       
   212     /**
       
   213      * slot is connected to view's doDelayeds -signal
       
   214      *
       
   215      */
       
   216     void doDelayedsSlot();
       
   217     
   213     /**
   218     /**
   214      * Signaled when stepping back from collection in collection view
   219      * Signaled when stepping back from collection in collection view
   215      *
   220      *
   216      */
   221      */
   217     void back();
   222     void back();
   260     
   265     
   261 private:
   266 private:
   262 
   267 
   263     enum TContextActionIds
   268     enum TContextActionIds
   264     {
   269     {
   265         EActionShare = 1,
   270     	EActionDelete = 1,
   266         EActionDelete,
       
   267         EActionDetails,
   271         EActionDetails,
   268         EACtionRemoveFromCollection,
   272         EActionRemove,
   269         EACtionAddToCollection,
   273         EActionAddToCollection,
   270         EACtionRemoveCollection,
   274         EActionRemoveCollection,
   271         EActionRename,
   275         EActionRename,
   272     	EActionPlay
   276     	EActionPlay
   273     };
   277     };
   274 
   278 
   275     /**
   279     /**
   324 	/**
   328 	/**
   325      * True if signals have been connected
   329      * True if signals have been connected
   326      */
   330      */
   327 	bool                       mSignalsConnected;
   331 	bool                       mSignalsConnected;
   328 	
   332 	
   329 	/**
       
   330      * True if details plugin is ready
       
   331      */
       
   332 	bool                       mDetailsReady;
       
   333 
       
   334     /**
   333     /**
   335      * Boolean for knowing when the app was started as a service.
   334      * Boolean for knowing when the app was started as a service.
   336      */
   335      */
   337 	bool                       mIsService;
   336 	bool                       mIsService;
   338 
   337