┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
AgeCommit message (Collapse)Author
2007-01-10Applied some patches found by EBN (thanks to Nicolas Lécureuil for the ↵Peter Penz
patches!). svn path=/trunk/playground/utils/dolphin/; revision=621872
2007-01-09Port to new KAction, KActionCollection API.Kevin Ottens
svn path=/trunk/playground/utils/dolphin/; revision=621553
2007-01-07Remember the position and size of the docks by using ↵Peter Penz
QMainWindow::saveState() and QMainWindow::restoreState(). I assume that in KDE 4 there will be a generic mechanism to store the position and size of docks like done for toolbars -> this is only a temporary solution to have a usable version of Dolphin in the meantime. svn path=/trunk/playground/utils/dolphin/; revision=620954
2007-01-06Minor adjustments for the panels:Peter Penz
- only let them align on the left and the right side - summarize the panels inside a sub menu entry svn path=/trunk/playground/utils/dolphin/; revision=620656
2007-01-06Reanimate drag and drop support for the URL navigator.Peter Penz
svn path=/trunk/playground/utils/dolphin/; revision=620633
2007-01-02SVN_SILENT make it compile (Dlg->Dialog)Holger Freyther
svn path=/trunk/playground/utils/dolphin/; revision=618826
2006-12-27Compile++Kevin Ottens
svn path=/trunk/playground/utils/dolphin/; revision=616917
2006-12-20- Performance optimization in DolphinView::loadDirectory() (don't store the ↵Peter Penz
view properties for each property individually) - Get rid of methods which are not used anymore due to moving to KDirModel. - Respect GeneralSettings::globalViewProps() setting when storing view properties. svn path=/trunk/playground/utils/dolphin/; revision=615255
2006-12-19KStdAction -> KStandardActionAaron J. Seigo
svn path=/trunk/playground/utils/dolphin/; revision=614825
2006-12-18make it compileHolger Freyther
svn path=/trunk/playground/utils/dolphin/; revision=614752
2006-12-17- don't use deprecated KAction constructorsSimon Hausmann
svn path=/trunk/playground/utils/dolphin/; revision=614376
2006-12-17Use KonqMimeData for the cut- and copy-operation instead of using bool ↵Peter Penz
property inside DolphinMainWindow. This assures that cut- and copy-operations also work within multiple Dolphin main windows. svn path=/trunk/playground/utils/dolphin/; revision=614351
2006-12-17Reanimated cut-, copy- and paste- functionality as preparation for moving to ↵Peter Penz
KonqUndoManager. svn path=/trunk/playground/utils/dolphin/; revision=614325
2006-12-13Don't show the 'Show Preview' property inside the toolbar per default.Peter Penz
svn path=/trunk/playground/utils/dolphin/; revision=613031
2006-12-13Instead of having a the 3 view modes "icons", "details" and "previews" only ↵Peter Penz
2 view modes are used now: "icons" and "details". Whether a preview is shown or not is part of the directory view properties. This also means that it will be possible to show previews in the "details" view in future releases. svn path=/trunk/playground/utils/dolphin/; revision=613029
2006-12-10Use a QLinkedList instead of Q3PtrListHolger Freyther
svn path=/trunk/playground/utils/dolphin/; revision=612313
2006-12-10--deprecationHolger Freyther
svn path=/trunk/playground/utils/dolphin/; revision=612307
2006-12-08Cleanup of signal/slot handling between the dolphin view and the main ↵Peter Penz
window: now the main window listens to the signals from the dolphin view and connects to private slots (previously the dolphin view connected to public slots of the main window). Also prevent naming all slots by the prefix 'slot', describe instead what the method does. svn path=/trunk/playground/utils/dolphin/; revision=611617
2006-12-08Update the FSF address to 51 Franklin Street (hopefully it is the right one)Holger Freyther
gnused rocks! svn path=/trunk/playground/utils/dolphin/; revision=611576
2006-12-06Patch from Dominik Hauman: Assure that when splitting a view both views take ↵Peter Penz
50 % of the width. Also the flickering has been eliminated. svn path=/trunk/playground/utils/dolphin/; revision=611081
2006-12-06Finally! Dock widgets can be hidden from the view menu since Kevin Ottens
KActionCollection now can take QAction*. svn path=/trunk/playground/utils/dolphin/; revision=611064
2006-12-04- compile with trunk kdelibsSimon Hausmann
svn path=/trunk/playground/utils/dolphin/; revision=610667
2006-12-04fixing more warningsZack Rusin
svn path=/trunk/playground/utils/dolphin/; revision=610636
2006-12-02reanimated the context menuPeter Penz
svn path=/trunk/playground/utils/dolphin/; revision=609962
2006-11-29Get ride of the sidebar and use dockwidgets instead.Kevin Ottens
Default is now three panes, but the dockwidgets can be stacked, etc. to the user convenience. There's a slight loss in feature since I disabled dockwidgets hiding, it's simply because some rework is still needed in kdelibs and Qt to make them work correctly. svn path=/trunk/playground/utils/dolphin/; revision=609186
2006-11-29Add a "New Window" option to DolphinHolger Freyther
svn path=/trunk/playground/utils/dolphin/; revision=609048
2006-11-29Changes to Undo/Redo in regard to ProgressIndicatorHolger Freyther
It was not important to know where the operation was executed, it is important where undo/redo was clicked and this solely indicates where the progress should be shown. Now undo/redo get the MainWindow and can pass that to ProgressIndicator. I'm about to revive m_progressIndicator again svn path=/trunk/playground/utils/dolphin/; revision=609020
2006-11-29Make it (almost) possible to have more than one Dolphin KMainWindowHolger Freyther
Create a DolphinApplication, holding DolphinMainWindows and update the code to use the DolphinView to get the MainWindow, or get a ptr to the MainWindow directly. Or if all windows are effected go through the DolphinApplication to update every mainwindow. The UndowManager and ProgressIndicator have a rather strange relationship and will need some more attention but as UndoManager will be killed anyway I have skipped this. More cleanup, debugging and thinking is needed. svn path=/trunk/playground/utils/dolphin/; revision=608945