┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2007-10-01Port dolphin to the KFileItemDelegate API changes.Fredrik Höglund
svn path=/trunk/KDE/kdebase/apps/; revision=719796
2007-10-01Ported KonqPopupMenu away from xmlgui to make things debuggable (we had code ↵David Faure
that dynamically created XML, and then passed it for gui merging with KonqPopupMenu's own generated XML, that was too much magic and headaches). There are now unit tests for KonqPopupMenu, and its code has a bit less magic hacks than before. There is no more KonqPopupMenuPlugin though, but I'm happy to re-create it once there's a real use case for it. svn path=/trunk/KDE/kdebase/apps/; revision=719676
2007-10-01Code adaptation because of changes on libraries related to revision 719630Rafael Fernández López
svn path=/trunk/KDE/kdebase/apps/; revision=719642
2007-10-01Making KFileItemList value based.Tobias Koenig
svn path=/trunk/KDE/kdebase/apps/; revision=719514
2007-09-30coding style nitpicking: remove spacePeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=719288
2007-09-30SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=719026
2007-09-29Test for what the error message saysPascal Létourneau
svn path=/trunk/KDE/kdebase/apps/; revision=718814
2007-09-29Init cwd with the current path (dolphin is a KUniqueApplication)Pascal Létourneau
svn path=/trunk/KDE/kdebase/apps/; revision=718808
2007-09-29SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=718575
2007-09-28Icons height is the same as the titleRafael Fernández López
svn path=/trunk/KDE/kdebase/apps/; revision=718317
2007-09-28removed unused method expandSelectionParent (it is not invoked anymore since ↵Peter Penz
KDirLister::expandToUrl() is available) svn path=/trunk/KDE/kdebase/apps/; revision=718182
2007-09-28SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=718158
2007-09-27Init the range before a value is set (via the signal valueChanged)Pascal Létourneau
svn path=/trunk/KDE/kdebase/apps/; revision=717914
2007-09-27assure that the decoration gets selected in the column-view even if the ↵Peter Penz
style has not enabled this per default svn path=/trunk/KDE/kdebase/apps/; revision=717801
2007-09-27assure that the decoration gets selected in the details-view even if the ↵Peter Penz
style has not enabled this per default svn path=/trunk/KDE/kdebase/apps/; revision=717770
2007-09-27temporary deactivate session restoring until it can be tested with a working ↵Peter Penz
desktop svn path=/trunk/KDE/kdebase/apps/; revision=717741
2007-09-27use inline keyword as suggested at ↵Peter Penz
http://www.parashift.com/c%2B%2B-faq-lite/inline-functions.html#faq-9.9 svn path=/trunk/KDE/kdebase/apps/; revision=717738
2007-09-27reactivate session managementPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=717737
2007-09-27updated version for KDE 4.0 beta 3 releasePeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=717713
2007-09-27* right-to-left layout fixesPeter Penz
* fixes to assure that active column stays visible svn path=/trunk/KDE/kdebase/apps/; revision=717684
2007-09-27allow to show/hide the columns of the details-view by a context menu for the ↵Peter Penz
header (-> no need to go into the settings menu) svn path=/trunk/KDE/kdebase/apps/; revision=717627
2007-09-27Remove ScrollPerPixel again. Beside a crash with a non-patched version of Qt ↵Peter Penz
it also decreases the usability when using the mouse wheel: one full rotation of the mouse wheel only leads to a scrolling of 1 or 2 items... svn path=/trunk/KDE/kdebase/apps/; revision=717562
2007-09-27use the proxy model categorization state to check whether it has changed, ↵Peter Penz
not the stored categorization state... svn path=/trunk/KDE/kdebase/apps/; revision=717555
2007-09-27* moved the loading of the settings into a separate methodPeter Penz
* assure that the "show in groups" action gets disabled when no categorization is allowed for the current view svn path=/trunk/KDE/kdebase/apps/; revision=717550
2007-09-27Use case: categorized sorting is enabled, the current view mode is ↵Peter Penz
icons-view. When switching to the details-view (which does not support categorized sorting yet), the 'categorized sorting' action should get only disabled to indicate that it is not available, not get unchecked (currently it gets disabled AND unchecked). This patch assures that always the stored categorization state is returned for the menu actions, but internally the categorization is turned off for the proxy model for the details view and column view. CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=717548
2007-09-27use blitz instead of deprecated kdefx, remove kdefx headers where unusedMatthew Woehlke
svn path=/trunk/KDE/kdebase/apps/; revision=717537
2007-09-26reactivate ScrollPerPixel again, as the Qt-patch for "divide by zero" has ↵Peter Penz
been applied to qt-copy now svn path=/trunk/KDE/kdebase/apps/; revision=717366
2007-09-26assure that the directory gets reloaded when the base URL has been changedPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=717365
2007-09-26Assure that the categorized sorting is applied correctly to the proxy model ↵Peter Penz
if the view does not support the categorization feature (currently only the icons view supports this). Take care that switching between e. g. the icons-view and the details-view does not change the stored categorized sorting. Thanks to Rafael for the initial patch! CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=717300
2007-09-26use the fixed resizing mode (it is assured that each column stays readable)Peter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=717263
2007-09-26assure that the width of the name-column cannot get too small when ↵Peter Penz
decreasing the width of the viewport CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=717258
2007-09-26* Fix memory leak (DolphinCategoryDrawer is leaking...)Peter Penz
* There is no need to explicitly turning on the category, as this is done automatically when reading out the view properties. @Rafael: I tested your error description and could not reproduce the problem anymore. If I miss something, please let me know, so that we can work together to fix this :-) CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=717245
2007-09-26code simplifications like done in the column viewPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=717229
2007-09-26internal cleanupPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=717223
2007-09-26lessons learned from the column view: never invoke KDirModel::expandToUrl() ↵Peter Penz
when the directory lister has not finished its loading... svn path=/trunk/KDE/kdebase/apps/; revision=717203
2007-09-26Listen to the directory lister signals to know whether the directory lister ↵Peter Penz
is still working. This information is needed as KDirModel::expandToUrl() may never get invoked if the directory lister is still busy... svn path=/trunk/KDE/kdebase/apps/; revision=717188
2007-09-26associate dolphin with inode/directory; give it a higher initial preference ↵David Faure
than konq for directories. svn path=/trunk/KDE/kdebase/apps/; revision=717185
2007-09-26prevent crash in model when invoking KDirModel::expandToUrl() before the ↵Peter Penz
directory lister has been initialized svn path=/trunk/KDE/kdebase/apps/; revision=717158
2007-09-26Revert last patch which should fix the "name column can get too small issue" ↵Peter Penz
- turning off the automatical resizing is no good solution. I'll submit another fix during this week... CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=717133
2007-09-26temporary disable the ScrollPerPixel feature until a Qt-patch is supplied ↵Peter Penz
which fixes a possible crash (see http://lists.kde.org/?l=kde-core-devel&m=119077433611662&w=2) svn path=/trunk/KDE/kdebase/apps/; revision=717132
2007-09-26SVN_SILENT made messages (.desktop file)Script Kiddy
svn path=/trunk/KDE/kdebase/apps/; revision=717121
2007-09-26This fixes the problem of the "hidden filename corner case" by setting the ↵Rafael Fernández López
column to the width of its contents. Probably is a poor solution... CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=717081
2007-09-26Hide unused and not drawn columns on the details viewRafael Fernández López
CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=717068
2007-09-25Fix the reproducible problem after the fix:Rafael Fernández López
- On the icon view, enable categorization - Switch to details view - Go back to the icon view. The categorization has been disabled for the details view to sort correctly. This fixes this problem :) CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=717051
2007-09-25When the view is the Details or Columns one do not have in count ↵Rafael Fernández López
lessThanGeneralPurpose. For that we need to force the proxy model to not to be categorized. CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=717040
2007-09-25Revert as it doesn't fix the problem completely... diving into this... sorryRafael Fernández López
CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=717031
2007-09-25Whenever we are trying to sort, bypass lessThanGeneralPurpose when is not ↵Rafael Fernández López
allowed to sort by categories. This will result as bad sortings on Detailed and in Column views. CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=717022
2007-09-25don't expand to the active URL synchronously, wait until the directory ↵Peter Penz
lister has completed its loading svn path=/trunk/KDE/kdebase/apps/; revision=716899
2007-09-25assure that "Select All" and "Invert Selection" only operate on the active ↵Peter Penz
column of the column-view instead of selecting the whole hierarchy of the model svn path=/trunk/KDE/kdebase/apps/; revision=716885
2007-09-25fix filtering issues for views that show a directory hierarchy like a tree ↵Peter Penz
view or a column view: the directories should not get filtered svn path=/trunk/KDE/kdebase/apps/; revision=716873