~ubuntu-branches/ubuntu/karmic/kdepim/karmic-backports

« back to all changes in this revision

Viewing changes to kmail/kmfoldercachedimap.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-10-03 22:27:55 UTC
  • mfrom: (1.1.44 upstream)
  • Revision ID: james.westby@ubuntu.com-20091003222755-nm1u1hm80385m8h3
Tags: 4:4.3.2-0ubuntu1
* New upstream release
  - Bump build-deps
  - Remove kubuntu_02_dimap_folder_rename_fix.diff fixed by upstream
  - Remove ktimeticker obsolete package from kontact suggests
  - Remove several oxygen icons which also are in kde-icons-oxygen,
    add in not-installed

Show diffs side-by-side

added added

removed removed

Lines of Context:
228
228
    /** Reimplemented from KMFolder. Moving is not supported, so aParent must be 0. */
229
229
    virtual int rename( const QString &aName, KMFolderDir *aParent = 0 );
230
230
 
231
 
    /** Reimplemented from KMFolderMaildir */
232
 
    virtual KMMessage *take( int idx );
233
231
    bool canDeleteMessages() const;
234
232
 
 
233
    /**
 
234
     * Reimplemented from KMFolderMaildir
 
235
     * This deletes the message permanently, also from the server. For this,
 
236
     * rememberDeletion() is called, so that the message can be deleted from
 
237
     * the server on the next sync.
 
238
     */
 
239
    virtual KMMessage* take( int idx );
 
240
 
 
241
    /**
 
242
     * Like take(), only that the deletion is not remembered, i.e. the
 
243
     * message will not be deleted from the server. Calling this can cause
 
244
     * inconsistencies, so make sure you re-add the message later!
 
245
     */
 
246
    void takeTemporarily( int idx );
 
247
 
235
248
    /** Reimplemented from KMFolderMaildir */
236
249
    virtual int addMsg( KMMessage *msg, int *index_return = 0 );
237
250
 
513
526
    void slotUpdateLastUid();
514
527
    void slotFolderDeletionOnServerFinished();
515
528
  void slotRescueDone( KMCommand* command );
 
529
  void slotRenameFolderFinished();
516
530
 
517
531
  signals:
518
532
    void folderComplete( KMFolderCachedImap *folder, bool success );