┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-01-31Postpone the creating of the media object until the play- or stop-button has ↵Peter Penz
been pressed. This solves the issue that Dolphin might get blocked during hovering media files. Dolphin still gets blocked when requesting a media object the first time, but for the user this "just" means that after pressing the play-button the first time, that the playing starts a little bit later. CCMAIL: [email protected] CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=919063
2009-01-31Don't delete and recreate the phonon widget each time the URL changes, use ↵Peter Penz
the existing widget instance if possible. svn path=/trunk/KDE/kdebase/apps/; revision=919058
2009-01-31* move the search button to the endPeter Penz
* use the default search icon instead of the nepomuk icon svn path=/trunk/KDE/kdebase/apps/; revision=919051
2009-01-31Allow to enable/disable the "Expandable Folders" setting of the details-view ↵Peter Penz
by the context menu of the header. CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=919035
2009-01-31Display correct folder names in tabs, if they contain a '&' character. ↵Peter Penz
Thanks to Frank Reininghaus for the patch! BUG: 181765 svn path=/trunk/KDE/kdebase/apps/; revision=919021
2009-01-30SVN_SILENT: just mention what the method does, skip implementation detailsPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=918538
2009-01-30minor coding style fixes ↵Peter Penz
(http://techbase.kde.org/Policies/Kdelibs_Coding_Style): * use spaces instead of tabs * correct braces CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=918537
2009-01-29The mouse wheel now works on Dolphin's tabs (to switch tabs), like just ↵Shaun Reich
about every other KDE app. svn path=/trunk/KDE/kdebase/apps/; revision=918498
2009-01-29SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=918487
2009-01-28Default size and Preview size sliders, were using wrong signal to notify ↵Shaun Reich
that settings have changed. The keyboard, when used on the slider, wouldn't enable the apply button, nor clicking to either side of the slider to change it. sliderMoved signal emission changed to valueChanged. Effects all tabs in Settings Dialog->View Modes. svn path=/trunk/KDE/kdebase/apps/; revision=917972
2009-01-28SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=917787
2009-01-27Initial import of Matthias's draft patch for adding video and audio ↵Simon Paul St James
previewing (similar to the file dialog) to Dolphin's metadata panel. Since Phonon is currently in-process only with the memory/ stability issues that come with this, this might have to be disabled by default - we'll see how it goes. Thanks, Matthias! CCMAIL:[email protected] CCMAIL:[email protected] svn path=/trunk/KDE/kdebase/apps/; revision=917389
2009-01-27The apply button in the settings dialog now disables itself when settings ↵Shaun Reich
are applied, as per all of the other KDE applications, added in DolphinSettingsDialog::applySettings(). It was already setup to re-enable on a settings change. svn path=/trunk/KDE/kdebase/apps/; revision=917168
2009-01-26Don't crash if parentWidget is 0 (even though I don't recommend setting it ↵David Faure
to 0, the dirlister mainwindow won't be set if you reparent the widget later on) BUG: 161681 svn path=/trunk/KDE/kdebase/apps/; revision=916972
2009-01-25Refactor the folder expansion system. Main effect: instead of having a list ↵Simon Paul St James
of m_expandedViews which cannot yet be deleted, we more accurately identify the current source of the drag operation if any and store only this for later deletion. This also fixes folder-expansion not working in Column view. svn path=/trunk/KDE/kdebase/apps/; revision=916701
2009-01-23In rare circumstances (a very narrow viewport is a necessary, but not ↵Simon Paul St James
sufficient, condition) DolphinDetailsView::resizeColumns() is called with an empty model so that sizeHintForColumn(...) returns -1 and so the name column ultimately has width -1. Detect and prevent this. svn path=/trunk/KDE/kdebase/apps/; revision=915781
2009-01-21Two KFilePreviewGenerator's operating on the same KDirModel can lead to ↵Simon Paul St James
infinite loops of preview generation. If view is not delete'd (e.g. as a result of a FolderExpander), then m_previewGenerator won't be either: delete it manually to prevent having two active at once. svn path=/trunk/KDE/kdebase/apps/; revision=914799
2009-01-20Only actually change the resource if tags were changed.Sebastian Trueg
svn path=/trunk/KDE/kdebase/apps/; revision=914234
2009-01-19Update the KPart host's status bar info when selection changes.Simon Paul St James
svn path=/trunk/KDE/kdebase/apps/; revision=913713
2009-01-19don't use any spacing between the search button and the input fieldPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=913589
2009-01-19Fix lack of error handling in RMB/Move To... (e.g. when src is root-owned) ↵David Faure
because the parent for KonqOperations was the popupmenu, which gets deleted before the job finishes. svn path=/trunk/KDE/kdebase/apps/; revision=913576
2009-01-19Use a custom SearchWidget instead directly using a KLineEdit. Currently the ↵Peter Penz
DolphinSearchWidget acts as "playground" to test some ideas. If it works well it might be a good idea moving this widget as KSearchBox (?) to kdelibs, so that it can be used by the file dialog or other applications. svn path=/trunk/KDE/kdebase/apps/; revision=913572
2009-01-19Provide a search box for the nepomuksearch:/ KIO slave. This is just an ↵Peter Penz
initial prototype to get some feedback, the search box and the URL navigator still need some love for this usecase... CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=913451
2009-01-19use correct iconPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=913415
2009-01-19added settings module 'General' that can be used by KonquerorPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=913414
2009-01-19* enable the apply button when settings have been changedPeter Penz
* restore default settings correctly svn path=/trunk/KDE/kdebase/apps/; revision=913412
2009-01-19added settings module for 'Navigation', that can be used by KonquerorPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=913405
2009-01-19hide the tooltips when a key is pressed (thanks to Shaun Reich for the ↵Peter Penz
initial patch) CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=913383
2009-01-17Fix Dolphin's desktop file. The additional quotation of %u made dolphin be ↵Harald Sitter
started with an empty (but existing) location value which made it fall back to XDG's document path as of KDE 4.2. Without quotation it doesn't get that empty value and starts using it's configured default location. BUG: 169016 svn path=/trunk/KDE/kdebase/apps/; revision=912654
2009-01-17Relayout of the settings dialog, so that all Dolphin KPart relevant settings ↵Peter Penz
can be made available in Konqueror's settings dialog too. Further cleanups and layout fixes are required and will be done during the next week. svn path=/trunk/KDE/kdebase/apps/; revision=912587
2009-01-16Remove useless code, replaced with slotRedirection.David Faure
svn path=/trunk/KDE/kdebase/apps/; revision=912124
2009-01-16Repair redirections in DolphinPart, it used to notify of redirections by ↵David Faure
connecting to urlChanged, but iirc there were recent changes which make dolphinview emit redirection instead of urlChanged in that case Makes me wonder if urlChanged is still useful for anything? CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=911974
2009-01-16Pressing "Enter" in the folders panel should open the folder in the main ↵Peter Penz
view. Thanks to Darío Andrés for the patch! BUG: 172360 svn path=/trunk/KDE/kdebase/apps/; revision=911855
2009-01-16provide icons for "Places", "Folders", "Information" and "Terminal" actions, ↵Peter Penz
so that they can be added to the toolbar BUG: 180847 svn path=/trunk/KDE/kdebase/apps/; revision=911845
2009-01-14cleanup sort order, so that it is easier later to split the files into ↵Peter Penz
several CMakeLists.txt svn path=/trunk/KDE/kdebase/apps/; revision=911094
2009-01-14Cleanup panel related class names: The terms "sidebar"/"sidebarpage" are ↵Peter Penz
relicts from the KDE 3 version of Dolphin and are called "Panels" in the KDE 4 version of Dolphin. Yes, renaming classes may take more than 1 year ;-) svn path=/trunk/KDE/kdebase/apps/; revision=911089
2009-01-14Group classes into folders, Dolphin is too big in the meantime for having a ↵Peter Penz
flat directory hierarchy. dolphin/src/CMakeLists.txt will be cleaned up later. svn path=/trunk/KDE/kdebase/apps/; revision=911065
2009-01-13prevent that the user can open more than one instance of the settings dialogPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=910588
2009-01-12someone forgot to move the comment along with the code ;)Stefan Monov
svn path=/trunk/KDE/kdebase/apps/; revision=909814
2009-01-11SVN_SILENT: fixed indentation (was a mix of 1, 2 or 4 spaces...)Peter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=909451
2009-01-11add action "Close Tab" to the file menu, so that users get the chance to ↵Peter Penz
discover the key shortcut svn path=/trunk/KDE/kdebase/apps/; revision=909450
2009-01-10raise() and activateWindow() are not needed in this casePeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=908812
2009-01-09there is no reason that the settings dialog is modal...Peter Penz
BUG: 179757 svn path=/trunk/KDE/kdebase/apps/; revision=908577
2009-01-08same optimization as in 907877 but for the info sidebar's preview.David Faure
svn path=/trunk/KDE/kdebase/apps/; revision=907878
2009-01-08Small optimization found while having debug output in kfileitem: pass the ↵David Faure
KFileItem rather than the URL, so that previewjob doesn't have to determine the item's mimetype again. svn path=/trunk/KDE/kdebase/apps/; revision=907877
2009-01-08version updatePeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=907874
2009-01-08don't complain aboutDavid Faure
KDirModel::indexForUrl: KUrl("") not found every time the selection changes svn path=/trunk/KDE/kdebase/apps/; revision=907756
2009-01-07Fix compile with enable finalLaurent Montel
svn path=/trunk/KDE/kdebase/apps/; revision=907022
2009-01-07Not necessaryLaurent Montel
svn path=/trunk/KDE/kdebase/apps/; revision=907018
2009-01-06SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=906580