~ubuntu-branches/ubuntu/jaunty/kdebase/jaunty-backports

« back to all changes in this revision

Viewing changes to apps/dolphin/src/dolphinview.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Stalcup
  • Date: 2009-01-08 09:49:20 UTC
  • mfrom: (1.1.22 upstream)
  • Revision ID: james.westby@ubuntu.com-20090108094920-zbm1d1y0y3t5rpff
Tags: 4:4.1.96-0ubuntu1
* New upstream release
* Updated various .install files:
  + dolphin.install
  + kappfinder.install
  + kfind.install
  + konqueror.install
* Bumped build-dep versions

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
    {
86
86
        /**
87
87
         * The directory items are shown as icons including an
88
 
         * icon name. 
 
88
         * icon name.
89
89
         */
90
90
        IconsView = 0,
91
91
 
242
242
     */
243
243
    void setZoomLevel(int level);
244
244
    int zoomLevel() const;
245
 
    
 
245
 
246
246
    /**
247
247
     * Returns true, if zooming in is possible. If false is returned,
248
248
     * the maximum zooming level has been reached.
308
308
     * filtering and hierarchical previews into account.
309
309
     */
310
310
    void calculateItemCount(int& fileCount, int& folderCount, KIO::filesize_t& totalFileSize) const;
311
 
    
 
311
 
312
312
    /**
313
313
     * Returns a textual representation of the state of the current
314
314
     * folder or selected items, suitable for use in the status bar.
476
476
 
477
477
    /** Is emitted if the additional information shown for this view has been changed. */
478
478
    void additionalInfoChanged();
479
 
    
 
479
 
480
480
    /** Is emitted if the zoom level has been changed by zooming in or out. */
481
481
    void zoomLevelChanged(int level);
482
482
 
626
626
     * to m_currentItemUrl.
627
627
     */
628
628
    void restoreCurrentItem();
629
 
    
 
629
 
630
630
    /**
631
631
     * Is connected to the enterDir() signal from the FolderExpander
632
632
     * and triggers the entering of the directory indicated by \a index.
676
676
     * Pastes the clipboard data into the URL \a url.
677
677
     */
678
678
    void pasteToUrl(const KUrl& url);
679
 
    
 
679
 
680
680
    /**
681
681
     * Checks whether the current item view has the same zoom level
682
682
     * as \a oldZoomLevel. If this is not the case, the zoom level
684
684
     * is emitted.
685
685
     */
686
686
    void updateZoomLevel(int oldZoomLevel);
687
 
    
 
687
 
688
688
    /**
689
689
     * Returns a list of URLs for all selected items. The list is
690
690
     * simplified, so that when the URLs are part of different tree
698
698
     * this method has been introduced for convenience.
699
699
     */
700
700
    bool isColumnViewActive() const;
701
 
    
 
701
 
702
702
    /**
703
703
     * Deletes all views from m_expandedViews except if the view
704
704
     * is currently shown.
705
705
     */
706
706
    void deleteExpandedViews();
707
 
    
 
707
 
708
708
    /**
709
709
     * Returns the MIME data for all selected items.
710
710
     */
717
717
    bool m_storedCategorizedSorting : 1;
718
718
    bool m_tabsForFiles : 1;
719
719
    bool m_isContextMenuOpen : 1;   // TODO: workaround for Qt-issue 207192
 
720
    bool m_ignoreViewProperties : 1;
720
721
 
721
722
    Mode m_mode;
722
723
 
739
740
 
740
741
    KUrl m_rootUrl;
741
742
    KUrl m_currentItemUrl;
742
 
    
 
743
 
743
744
    QList<QAbstractItemView*> m_expandedViews;
744
745
};
745
746