Changeset View
Changeset View
Standalone View
Standalone View
src/filewidgets/kdiroperator.h
| Show First 20 Lines • Show All 768 Lines • ▼ Show 20 Line(s) | 701 | public Q_SLOTS: | |||
|---|---|---|---|---|---|
| 769 | 769 | | |||
| 770 | /** | 770 | /** | ||
| 771 | * Notifies that the icons size should change. @p value is an int ranged from 0 to 100. | 771 | * Notifies that the icons size should change. @p value is an int ranged from 0 to 100. | ||
| 772 | * 100 means KIconLoader::SizeEnormous. | 772 | * 100 means KIconLoader::SizeEnormous. | ||
| 773 | * @since 4.2 | 773 | * @since 4.2 | ||
| 774 | */ | 774 | */ | ||
| 775 | void setIconsZoom(int value); | 775 | void setIconsZoom(int value); | ||
| 776 | 776 | | |||
| 777 | /** | ||||
| 778 | * Only used for column views. | ||||
| 779 | */ | ||||
| 780 | void scrollToUrl(const QUrl &url); | ||||
| 781 | | ||||
| 777 | protected Q_SLOTS: | 782 | protected Q_SLOTS: | ||
| 778 | /** | 783 | /** | ||
| 779 | * Restores the normal cursor after showing the busy-cursor. Also hides | 784 | * Restores the normal cursor after showing the busy-cursor. Also hides | ||
| 780 | * the progressbar. | 785 | * the progressbar. | ||
| 781 | */ | 786 | */ | ||
| 782 | void resetCursor(); | 787 | void resetCursor(); | ||
| 783 | 788 | | |||
| 784 | /** | 789 | /** | ||
| ▲ Show 20 Lines • Show All 109 Lines • ▼ Show 20 Line(s) | |||||
| 894 | private: | 899 | private: | ||
| 895 | class Private; | 900 | class Private; | ||
| 896 | Private *const d; | 901 | Private *const d; | ||
| 897 | 902 | | |||
| 898 | Q_PRIVATE_SLOT(d, void _k_slotDetailedView()) | 903 | Q_PRIVATE_SLOT(d, void _k_slotDetailedView()) | ||
| 899 | Q_PRIVATE_SLOT(d, void _k_slotSimpleView()) | 904 | Q_PRIVATE_SLOT(d, void _k_slotSimpleView()) | ||
| 900 | Q_PRIVATE_SLOT(d, void _k_slotTreeView()) | 905 | Q_PRIVATE_SLOT(d, void _k_slotTreeView()) | ||
| 901 | Q_PRIVATE_SLOT(d, void _k_slotDetailedTreeView()) | 906 | Q_PRIVATE_SLOT(d, void _k_slotDetailedTreeView()) | ||
| 907 | Q_PRIVATE_SLOT(d, void _k_slotColumnView()) | ||||
| 902 | Q_PRIVATE_SLOT(d, void _k_slotToggleHidden(bool)) | 908 | Q_PRIVATE_SLOT(d, void _k_slotToggleHidden(bool)) | ||
| 903 | Q_PRIVATE_SLOT(d, void _k_togglePreview(bool)) | 909 | Q_PRIVATE_SLOT(d, void _k_togglePreview(bool)) | ||
| 904 | Q_PRIVATE_SLOT(d, void _k_toggleInlinePreviews(bool)) | 910 | Q_PRIVATE_SLOT(d, void _k_toggleInlinePreviews(bool)) | ||
| 905 | Q_PRIVATE_SLOT(d, void _k_slotOpenFileManager()) | 911 | Q_PRIVATE_SLOT(d, void _k_slotOpenFileManager()) | ||
| 906 | Q_PRIVATE_SLOT(d, void _k_slotSortByName()) | 912 | Q_PRIVATE_SLOT(d, void _k_slotSortByName()) | ||
| 907 | Q_PRIVATE_SLOT(d, void _k_slotSortBySize()) | 913 | Q_PRIVATE_SLOT(d, void _k_slotSortBySize()) | ||
| 908 | Q_PRIVATE_SLOT(d, void _k_slotSortByDate()) | 914 | Q_PRIVATE_SLOT(d, void _k_slotSortByDate()) | ||
| 909 | Q_PRIVATE_SLOT(d, void _k_slotSortByType()) | 915 | Q_PRIVATE_SLOT(d, void _k_slotSortByType()) | ||
| Show All 25 Lines | |||||