┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2010-05-20Fix issue that the columns "Link Destination" and "Path" are shown outside ↵Peter Penz
the visible area when enabling them. Also it is assured, that the headline text does not get clipped per default. CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=1128951
2010-05-20SVN_SILENT: Indentation cleanupsPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1128907
2010-05-20Rename "Destination" to "Link Destination" as suggested by Frank ReininghausPeter Penz
CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=1128906
2010-05-19Fix wrong description: The selection is meant for the information panel, not ↵Peter Penz
the tooltips. svn path=/trunk/KDE/kdebase/apps/; revision=1128630
2010-05-19SVN_SILENT: Minor coding style and format cleanups. No change of behavior ↵Peter Penz
has been done. svn path=/trunk/KDE/kdebase/apps/; revision=1128629
2010-05-19Use the user provided query as UDS_DISPLAY_NAME. For 4.6 I will most likely ↵Sebastian Trueg
hide the 'userquery' URL query parameter in the Nepomuk::Query API svn path=/trunk/KDE/kdebase/apps/; revision=1128624
2010-05-19Don't change the default view properties, if the view mode is changed on a ↵Peter Penz
remote folder. BUG: 234852 svn path=/trunk/KDE/kdebase/apps/; revision=1128615
2010-05-19SVN_SILENT: Revert accidental commit of temporary debugging codee error ↵Peter Penz
message is shown in Dolphin instead. CCBUG: 229505 svn path=/trunk/KDE/kdebase/apps/; revision=1128600
2010-05-19Disable the automatic error handling in the DolphinDirLister, the error ↵Peter Penz
message is shown in Dolphin instead. CCBUG: 229505 svn path=/trunk/KDE/kdebase/apps/; revision=1128599
2010-05-18SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=1128050
2010-05-17SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=1127622
2010-05-14Use the term "Select" instead of "Configure", as it is less technical (at ↵Peter Penz
least I hope as non-native English speaker that this is the case ;-)) svn path=/trunk/KDE/kdebase/apps/; revision=1126705
2010-05-14Use the AdditionalInfoAccessor to be flexible for future changes/extensions ↵Peter Penz
in KFileItemDelegate. svn path=/trunk/KDE/kdebase/apps/; revision=1126703
2010-05-14Cleanups and simplifications, no change of behavior has been done.Peter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1126677
2010-05-14SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=1126490
2010-05-14Fix temporary regression of sorting introduced by SVN commit 1126410Peter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1126487
2010-05-14Rename AdditionalInfoManager to AdditionalInfoAccessorPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1126483
2010-05-13If an information entry will be added to KFileItemDelegate (like done ↵Peter Penz
recently), adjusting the corresponding code in Dolphin is a real pain, as the new information will be shown in Dolphin the following way: - As additional columns in the details view - As additional lines in the icons view - As menu entries in the "Sort By" and "Additional Information" groups - As popup menu entries in the details view header popup - As checkable entries in the View Properties dialog To prevent similar painful transitions in future, the class AdditionalInfoManager has been introduced. All parts in Dolphin that access/show/store additional information, use the AdditionalInfoManager now. If a new information entry will be added in KFileItemDelegate in future, only a small adjustment in AdditionalInfoManager will be required. Still open currently: - AdditionalInfoDialog does not use AdditionalInfoManager yet - DolphinView::Sorting should be replaced by KFileItemDelegate::Information, so that the sorting can also be done in a generic way. - The data for KFileItemDelegate::PathOrUrl is not determined The open issues will get fixed during the next days. Kudos to the brave warriors Sebastian and Frank, that tried to add a new information ;-) CCMAIL: [email protected] CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=1126410
2010-05-13Reset the location to the home URL, if a place has been removed (e. g. a DVD ↵Peter Penz
has been ejected). Thanks to Christian Mühlhäuser for the patch! BUG: 231518 svn path=/trunk/KDE/kdebase/apps/; revision=1126336
2010-05-12Depend directly on kcmutils.Kevin Ottens
svn path=/trunk/KDE/kdebase/apps/; revision=1125889
2010-05-11Expose the new file item property pathorurl to the Dolphin UI. This is ↵Sebastian Trueg
mostly useful for search results to see the actual local path of the result. svn path=/trunk/KDE/kdebase/apps/; revision=1125631
2010-05-10Provide the destination of a symbolic link as a column in Dolphin'sFrank Reininghaus
(and Konqueror's) Details View in KDE SC 4.5. This is based on the changes to KFileItemDelegate from commit 1124981. FEATURE: 211690 svn path=/trunk/KDE/kdebase/apps/; revision=1124982
2010-05-10SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=1124874
2010-05-08terminalAction is defined only on non-windows systemsPino Toscano
svn path=/trunk/KDE/kdebase/apps/; revision=1124310
2010-05-05Proof-reading: don't -> do not (house style).Andrew Coles
svn path=/trunk/KDE/kdebase/apps/; revision=1123270
2010-05-04Fix description for the "--select" optionPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1122794
2010-05-04Updates for the "About" dialogPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1122790
2010-05-04Don't use a ':' in a text of a group-box.Peter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1122788
2010-05-04Provide a cleaner layout and better description about the maximum file size ↵Peter Penz
setting. BUG: 230818 svn path=/trunk/KDE/kdebase/apps/; revision=1122775
2010-05-03Create QActionGroup like done for other sub menus for consistency. Although ↵Peter Penz
a few more lines of code are required, this approach is more flexible.bar, but as the group "Panels" can be added instead, this should be no issue. svn path=/trunk/KDE/kdebase/apps/; revision=1122365
2010-05-03Use the dock widgets actions directly, as they are capable of showing the ↵Peter Penz
toggle state. Drawback: The actions cannot be added directly to the toolbar, but as the group "Panels" can be added instead, this should be no issue. svn path=/trunk/KDE/kdebase/apps/; revision=1122363
2010-05-03Allow to add menu groups like "View Mode", "Sort By"... to be added as ↵Peter Penz
toolbar item (see http://reviewboard.kde.org/r/3862). Thanks to Todd for the patch! CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=1122320
2010-04-30Assure to reconnect to the version plugin signals, otherwise no information ↵Peter Penz
will be provided anymore after the first directory update svn path=/trunk/KDE/kdebase/apps/; revision=1120924
2010-04-26use KFileItemActions::runPreferredApplications to handle Key_Enter on ↵David Faure
multiple selected files. Rewritten to make a direct method call rather than using a signal from 'this'. REVIEW: 3163 CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=1119117
2010-04-24SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=1118248
2010-04-23SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=1117807
2010-04-16The KFileMetaInfoWidget does not use a hardcoded small font anymore, so it ↵Peter Penz
must be set manually nowidget svn path=/trunk/KDE/kdebase/apps/; revision=1115496
2010-04-16SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=1115355
2010-04-15SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=1115065
2010-04-13SVN_SILENT: Remove unnecessary debugging outputPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1114499
2010-04-13Allow configuring different maximum sizes for remote and local filesPeter Penz
BUG: 189501 p://reviewboard.kde.org/r/3484/ svn path=/trunk/KDE/kdebase/apps/; revision=1114485
2010-04-07SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=1112036
2010-04-06SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=1111569
2010-04-05Add progress-text label to the layoutPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1111461
2010-04-04Do expensive loading operations in the Dolphin Preferences when getting the ↵Peter Penz
QShowEvent and not the QPolish event. svn path=/trunk/KDE/kdebase/apps/; revision=1111143
2010-04-04Add the submenu-name of a service menu entry as prefix. As an alphabetic ↵Peter Penz
sorting of all list elements is done, this automatically groups the entries. svn path=/trunk/KDE/kdebase/apps/; revision=1111140
2010-04-04Invert default behavior regarding loading of version control plugins: Only ↵Peter Penz
load plugins that have been explicitly enabled by the user instead of loading all plugins per default. Most users won't use version control plugins at all and there is no need in wasting memory and performance. A user interface has been added in the "Services" settings for version control plugins. The user interface is only shown, if at least one plugin is available on the system. svn path=/trunk/KDE/kdebase/apps/; revision=1111101
2010-04-04SVN_SILENT: documentation fixesPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1110979
2010-04-04Assure that the tooltip does not flash for items at the bottom-right edgePeter Penz
BUG: 226430 svn path=/trunk/KDE/kdebase/apps/; revision=1110974
2010-04-03Cleanup of statusbar widgets:Peter Penz
- Provide proper size hints instead of hiding extensions on small widths - Provide context menu, which allows to enable/disable the zoom level extension and the space info extension. Also copying the status bar text is possible (useful e. g. for error messages). BUG: 188980 svn path=/trunk/KDE/kdebase/apps/; revision=1110498