~ubuntu-branches/debian/stretch/kdesvn/stretch

« back to all changes in this revision

Viewing changes to src/svnfrontend/kdesvnfilelist.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2005-12-19 21:47:39 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051219214739-9w63kn8qsyqcr0uh
Tags: 0.7.1-1
* New upstream release.
* Tightened build dependency on kdelibs4-dev because of the C++ allocator
  change.
* Tightened build dependency on libsvn0-dev as kdesvn now requires subversion
  1.2 or higher.
* Split up package into core application kdesvn and KIO plugin package
  kdesvn-kio-plugins.
* Updated menu icon.
* Use Debian libtool and regenerate the autotools files. Closes: #343952
  + Add build dependencies to automake1.9, autoconf and libtool.
  + Patch makefile_am.diff from Aurelien Jarno <aurel32@debian.org> adds
    missing libraries needed for linking. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
 
102
102
    virtual void refreshRecursive(FileListViewItem*,bool down=true);
103
103
    virtual void updateParents(FileListViewItem*);
 
104
    virtual void checkUnversionedDirs( FileListViewItem * _parent );
104
105
 
105
106
    /**
106
107
     * Overridden virtuals for Qt drag 'n drop (XDND)
115
116
    virtual void contentsMouseMoveEvent( QMouseEvent *e );
116
117
    virtual void contentsWheelEvent( QWheelEvent * e );
117
118
    virtual void leaveEvent(QEvent*e);
 
119
    virtual void rescanIconsRec(FileListViewItem*_parent=0);
118
120
 
119
121
private:
120
122
    KdesvnFileListPrivate*m_pList;
172
174
    virtual void slotIgnore();
173
175
    virtual void slotBlame();
174
176
    virtual void slotRangeBlame();
175
 
    virtual void slotSimpleDiff();
 
177
    virtual void slotSimpleHeadDiff();
 
178
    virtual void slotSimpleBaseDiff();
 
179
 
176
180
    virtual void slotDiffRevisions();
177
181
    virtual void slotRevisionCat();
178
182
    virtual void slotCheckUpdates();
182
186
    virtual void slotDirItemDeleted(const QString&);
183
187
protected slots:
184
188
    virtual void slotRelocate();
 
189
    virtual void slotRescanIcons();
 
190
protected slots:
 
191
    virtual void slotCheckNewItems();
185
192
};
186
193
 
187
194
#endif