~ubuntu-branches/ubuntu/vivid/kdepim/vivid

« back to all changes in this revision

Viewing changes to kmail/searchwindow.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Rohan Garg, Scott Kitterman
  • Date: 2012-11-21 13:12:36 UTC
  • mfrom: (0.2.33)
  • Revision ID: package-import@ubuntu.com-20121121131236-32ijw9a2txrar80k
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Rohan Garg ]
* Add nepomuk-core-dev to build-deps

[ Scott Kitterman ]
* Add new package, libpimcommon4
  - Add libpimcommon4.install
  - Add to debian/control, including kdepim-dbg and kdepim-dev depends
  - Add to kdepim-dev.install
* Remove usr/bin/backupmail and related files from kmail.install as they are
  not provided by upstream anymore
* Add usr/bin/pimsettingexporter and related files to kmail.install
* Add libnepomukwidgets-dev to build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
    /**
86
86
     * Destroys the search window.
87
87
     */
88
 
    virtual ~SearchWindow();
 
88
    ~SearchWindow();
89
89
 
90
90
    /**
91
91
     * Changes the base folder for search operations to a different folder.
120
120
 
121
121
  protected:
122
122
    /** Reimplemented to react to Escape. */
123
 
    virtual void keyPressEvent( QKeyEvent* );
 
123
    void keyPressEvent( QKeyEvent* );
124
124
 
125
125
    /** Reimplemented to stop searching when the window is closed */
126
 
    virtual void closeEvent( QCloseEvent* );
 
126
    void closeEvent( QCloseEvent* );
127
127
 
128
128
    void createSearchModel();
129
129
  
134
134
  private Q_SLOTS:
135
135
    void updateCollectionStatistic(Akonadi::Collection::Id,Akonadi::CollectionStatistics);
136
136
 
137
 
    virtual void slotClose();
138
 
    virtual void slotSearch();
139
 
    virtual void slotStop();
 
137
    void slotClose();
 
138
    void slotSearch();
 
139
    void slotStop();
140
140
    void scheduleRename( const QString& );
141
141
    void renameSearchFolder();
142
142
    void openSearchFolder();
143
 
    virtual bool slotShowMsg( const Akonadi::Item& );
 
143
    bool slotShowMsg( const Akonadi::Item& );
144
144
    void slotViewSelectedMsg();
145
 
    virtual bool slotViewMsg( const Akonadi::Item& );
 
145
    bool slotViewMsg( const Akonadi::Item& );
146
146
    void slotCurrentChanged( const Akonadi::Item& );
147
 
    virtual void updateContextMenuActions();
148
 
    virtual void slotFolderActivated();
 
147
    void updateContextMenuActions();
 
148
    void slotFolderActivated();
149
149
    void slotClearSelection();
150
150
    void slotReplyToMsg();
151
151
    void slotReplyAllToMsg();