1
0
mirror of https://invent.kde.org/system/dolphin synced 2024-07-04 17:30:55 +00:00

Commit Graph

  • 49c7a34771 - disabled some code using the toolbars in order to make konqueror show up again. BUT: the toolbars disappeared, and according to the debug output I have the impression that they get deleted by KTMainWindow :-( Simon Hausmann 1999-06-11 11:12:50 +0000
  • da98631e22 Ported to kdirlister. This removes another lot of duplicated code (didn't test how much it reduces the binary size, but it probably does a bit) David Faure 1999-06-08 23:59:57 +0000
  • 9c52b1c52a Cosmetics - in preparation for the commit in konqueror David Faure 1999-06-08 23:56:15 +0000
  • 5c4bc4826c - fix to make execution of services work again This is related to the fact that KTrader returns it's KService data using KSharedPtr (which is a very good thing) . The good way would be to continue using KSharedPtr in the QMap, but unfortunately I can't get this working, so I changed to to plain KService, although I consider this to be an ugly solution. Well, perhaps someone else gets this working, and meanwhile this solution works fine for me :-) Simon Hausmann 1999-06-08 17:25:51 +0000
  • d67a095074 changes to make konqi compile with newest khtml. Lars Knoll 1999-06-07 23:04:52 +0000
  • 9fe68fc348 Reverting bieker's commit, which broke moving icons around. It seems s.toInt() doesn't do exactly the same as atoi( s.ascii() ), but I have no idea why. Perhaps toInt is broken... No time to debug. David Faure 1999-06-07 23:04:03 +0000
  • 9098d88ab5 compiles with --enable-final now Harri Porten 1999-06-07 22:37:27 +0000
  • 49248fdf69 KMsgBox --> QMessageBox (and boy, it was no one liner change, but it had to happen). kde_whateverdir() cleanups. Preston Brown 1999-06-07 20:52:46 +0000
  • 57b2ff490e - typo Simon Hausmann 1999-06-07 20:31:10 +0000
  • 9c71d6bbac - oops, I forgot, this is needed for the plugin stuff (perhaps we can move the servicetype description of komplugin somewhere else? but where?) Simon Hausmann 1999-06-07 20:26:36 +0000
  • 1666d973ce - fixed several memory leaks (unnecessary _duplicate()'s) - rewrote plugin system, now using ktrader/kactivator - every view is now associated with a servicetype (though my implementation is ugly) - removed IOR-file stuff - use KTraderServiceProvider for KRun Simon Hausmann 1999-06-07 20:22:53 +0000
  • 597f1e43f5 * Removed all QString::data()s. * Added some QString::ascii()s. Hans Petter Bieker 1999-06-07 16:13:35 +0000
  • 0945d2ad20 string -> QString. Hans Petter Bieker 1999-06-07 16:12:40 +0000
  • e2341d6ddb cosmetics... going to bed now. David Faure 1999-06-07 00:12:51 +0000
  • 2d79a713ac konqy shows up again ! I ifdef'ed out the code that uses qxembed (opFrame) for local views and digged out (thanks CVS!) the code calling reparent() instead. Don't try to remove views or other stuff like that, but for a simple test it's nice, waiting for qxembed to be fixed ! It's nice to see the improvements done to kiconcontainer in konqueror :) David Faure 1999-06-07 00:03:53 +0000
  • bccdd0a208 Damn it was that simple ! - painter.setRasterOp( Qt::XorROP ); + painter.setRasterOp( Qt::NotROP ); Argh ! 3 hours ! Now when moving N icons you can see their 'shadow'. Phew. Also fixed rectangular selection (wrong coordinates translation). It's starting to look really nice. David Faure 1999-06-06 23:45:17 +0000
  • 6f99d406ca Connect to running kdesktop, using KNaming. -> but kfmclient hangs since KDesktop doesn't process ORB events yet. David Faure 1999-06-06 22:35:17 +0000
  • 68ca6afd67 Fixing dependencies David Faure 1999-06-06 18:38:01 +0000
  • c452624ad9 New static methods KFileItem::decodeFileName and KFileItem::encodeFileName (handle % and / in filenames) They replace KBookmark::encode and KBookmark::decode, removed. David Faure 1999-06-06 18:08:32 +0000
  • edbb6bbcdc Added kdesktop.idl in the compilation Implemented "kfmclient sortDesktop" and "kfmclient selectDesktopIcons" (it existed as selectRootIcons in 1.x kfmclient but internally (wasn't documented)) Still some problems to get kded to use the running kdesktop. David Faure 1999-06-06 16:23:00 +0000
  • 20f9a55340 KDirLister : fixed updating of dirs David Faure 1999-06-06 00:55:45 +0000
  • 8a5f7d34d9 Final fix for rectangular selection : use solid line, and use intersects() instead of contains(). Much more intuitive. David Faure 1999-06-05 23:45:54 +0000
  • 18b29eb54a Important fix in KDirLister, which didn't return the proper URLs. Cleaned up the semantics of the member variables. David Faure 1999-06-05 23:22:19 +0000
  • bdcf9de313 Rectangular selection works :) Thanks Reggie ! (The problem was really small : p.begin(this) -> p.begin(viewport()); plus RasterOp and Pen not correctly set David Faure 1999-06-05 21:26:41 +0000
  • 3f3231d21b Fixed the flickering when doing rectangular selection, and simplified the code. David Faure 1999-06-05 20:48:19 +0000
  • 4f955a0108 Started to implement rectangular selection - it selects icons but I can't get the rectangle to be drawn. Any QPainter expert out there ? :) David Faure 1999-06-05 20:10:16 +0000
  • 296e3167b4 Make it compile with latest libkio changes Dirk Mueller 1999-06-05 13:04:59 +0000
  • 687238696e Ported to STL-free kio Added KIconContainer::selectedItems David Faure 1999-06-05 10:32:57 +0000
  • a257fe15fb fixes for recent Qt QString changes removing STL string class, as in kdelibs/kio makes it compile again Dirk Mueller 1999-06-05 01:23:30 +0000
  • 1c3e27f01b KIconContainer : implemented rearrangeIcons (it works!) KDirLister : small API clean up David Faure 1999-06-04 22:26:54 +0000
  • 1efadd4450 Fixing -pedantic warnings Dirk Mueller 1999-06-04 09:47:58 +0000
  • 18b777d715 popepMenu() isn't a slot - moved David Faure 1999-06-04 08:30:42 +0000
  • 097a21d1cf Damn. I get an X Window Error even using attachLocal() ... Committing nonetheless, the code seems right. David Faure 1999-06-04 00:16:08 +0000
  • 74a3fceadf CORBA.h dependency in Makefile.am Small renaming-type fixes in {icon|tree}view but they still have to be ported to KDirLister (i.e. drop all file listing stuff) David Faure 1999-06-03 22:35:59 +0000
  • e055189905 Hold your breath : all the icon listing and updating stuff is now in its own layer, in KDirLister. KDesktop already uses it, konqueror views will use it later. This is not only a fight against duplicated code, it also improves the design by having well-defined layers. Renamed fileicon into fileitem (files don't have to be icons...) David Faure 1999-06-03 22:34:00 +0000
  • b844b196ec more fixes Stephan Kulow 1999-06-03 16:40:52 +0000
  • eddde8d36b some more Iterator changes Stephan Kulow 1999-06-03 13:09:45 +0000
  • 0c0f624d5d Some fixes for libkonq API. Can't test konqy since qxembed fails. When should Matthias be back ? I'm thinking about reverting his last commit... David Faure 1999-06-02 20:57:21 +0000
  • d80175741f Install kmultiple.xpm in kde_icondir, so that kdesktop can use it. David Faure 1999-06-02 20:56:37 +0000
  • 8ff37d31cd Implemented icons moving within kiconcontainer (code taken out of kdesktop) - this will allow to have icon moving in konqueror For this I had to add a field 'name' to KIconContainerItem, which identifies each item. We use the url of course. This allows kicondrag to be a private class I think (header not installed?). In KFileIcon : renamed name to text, since it's the text that is displayed. David Faure 1999-06-02 20:54:45 +0000
  • 673fdc6f7e some explanations on libkonq David Faure 1999-06-02 11:46:23 +0000
  • 2b004c0acb qt now returns a QPalette object, not a pointer to one, for the palette call from QApplication. Preston Brown 1999-06-02 04:23:33 +0000
  • 9fca555372 Cosmetics (comments, docu, ...) This whole thing is very complicated. Somehow I think we can't remove (centralise) all duplicated code. The listing & refreshing stuff is duplicated 3 times, but in each one the items created are a different type... A signal would be a solution, but would involve a little slowdown. (OTOH KFileIcon is a speedup I think) The whole drag & drop stuff needs to be worked on as well. David Faure 1999-06-02 00:40:40 +0000
  • 4518b0fa3e Adaptations for the new KFileIcon - simplifies the code a lot. Mode duplicated code removed. openURLRequest moved to konq_baseview. Ok, konqueror still fails with a X error (BadMatch) but I checked and it did it before :)) Is openparts embedding broken ? David Faure 1999-06-01 23:44:58 +0000
  • 9f5fb58021 Improved design of kfileicon a lot. It is now able to hide most of the udsentry stuff ; it is very well documented it is used by iconview, treeview, and soon by kdesktop David Faure 1999-06-01 23:42:16 +0000
  • 714bed70a6 QPalette and compiler warning fixes. More commits to come. David Faure 1999-06-01 23:30:10 +0000
  • 277ced3c5b many including me have mico in a standard directory while they have qt in a non-standard so place qt before mico Stephan Kulow 1999-05-31 13:21:38 +0000
  • aa9129d7ef some QPalette changes Stephan Kulow 1999-05-31 12:37:26 +0000
  • 27136a77a1 No MOC file for kfileicon + link kded David Faure 1999-05-31 09:54:33 +0000
  • 624d3c0c24 Updated with the new changes David Faure 1999-05-31 09:44:22 +0000
  • 0ccbeaed6f KonqKfmViewItem -> KFileIcon David Faure 1999-05-31 09:34:46 +0000
  • bcccedb539 Added KFileIcon, which is the old KonqKfmViewItem, so that kdesktop can use it as well. David Faure 1999-05-31 09:34:43 +0000
  • 825271a532 One more hack in plugins to avoid calling KService::services() Fixes segfault. David Faure 1999-05-31 07:49:14 +0000
  • 9d1ff85005 Use kded for getting services for a mimetype David Faure 1999-05-31 07:15:48 +0000
  • 4d51751053 Link to kded and don't load KServiceFactory anymore David Faure 1999-05-31 07:15:29 +0000
  • 14c2493ae5 kded_utils -> kded_instance David Faure 1999-05-31 07:10:37 +0000
  • 1a82b25bbe Remove two old methods, not used since a long time (implemented in knewmenu) David Faure 1999-05-30 23:41:32 +0000
  • 347b613790 No more kiconcontainerhere. Some fixes in konq_iconview to comply to the new kiconcontainer David Faure 1999-05-30 22:54:41 +0000
  • e308e7767b Moved to libkonq the new KIconContainer that Torben sent me. David Faure 1999-05-30 22:53:53 +0000
  • 38598fe06f tried to get rid of kde_htmldir and kde_appsdir, but unfortunatly k*help* and kpanel + kmenuedit use both in a very unflexible way. I'm afraid Waldo has to "patch" them alone, as I have no idea how to get rid of these without rewriting it Stephan Kulow 1999-05-30 14:21:19 +0000
  • 1792b64d76 CVS_SILENT Still syncing makefiles... Éric Bischoff 1999-05-30 13:34:35 +0000
  • f565e312a3 - konqueror.desktop: small fix (hmfp...KConfig is sooo case-sensitive ;-)) - kfmclient: remove ugly KActivator::registerService stuff and use the new smart keep-imr-in-sync-feature from KActivator :-) Simon Hausmann 1999-05-29 20:46:51 +0000
  • 38b420e504 CVS_SILENT Éric Bischoff 1999-05-29 12:19:55 +0000
  • f5efa1b3f3 Renamed to index Éric Bischoff 1999-05-29 12:18:45 +0000
  • 13fdf34c44 Renamed to index Tip: don't use sgml2html. Use ksgml2html instead (or "make doc") Éric Bischoff 1999-05-29 11:31:45 +0000
  • fb0d79f5d2 More QStrings. Hans Petter Bieker 1999-05-29 09:08:28 +0000
  • 2a82bfa07a - kfmclient: use kded instead of the iorfile-hack ;-) - konqy: use kde_servicesdir to "publish" its services, so that the trader in kded can find it - removed obsolete konqueror_part.desktop Simon Hausmann 1999-05-28 22:00:41 +0000
  • b98f3399d6 Removed hack for builtin views - Torben implemented it in opFrame. Removed some headers from konq_mainview.cc Some more debug output - trying to know why changing desktop and back makes QApp exit (!!). Any idea what could happen ? David Faure 1999-05-27 06:57:11 +0000
  • 1a04324fbb Ough... Seems noone compiled kfind on clean system... Denis Perchine II 1999-05-26 19:57:51 +0000
  • 9a1ecf5883 two changes: kde_icondir() has been removed. Use locate("icon", pixmap) instead KIconLoader::loadMiniIcon has been removed. It does the same as loadApplicationMiniIcon and the later is less confusing in what it does (loading icons out of share/icons/mini) Stephan Kulow 1999-05-25 16:17:29 +0000
  • 68842d222e take libkonq here, not the installed one David Faure 1999-05-25 14:55:08 +0000
  • 135ee355ee Ported to libkio (and libkonq, since it's needed for properties dialog) (if more apps need it, I'll probably move it to kdelibs) David Faure 1999-05-25 12:54:32 +0000
  • f7c226ee35 Some missing kdebug.h David Faure 1999-05-24 20:25:29 +0000
  • f9b0ed18f3 kdebug.h added David Faure 1999-05-24 20:04:01 +0000
  • 443da99219 minor updates for missing headers and KConfig API changes. Preston Brown 1999-05-24 02:20:33 +0000
  • 88b37df67c kdebase should compile fine now Stephan Kulow 1999-05-23 21:50:00 +0000
  • 8a3948e805 more changes Stephan Kulow 1999-05-23 21:26:10 +0000
  • cf72ae01e2 %s -> %1 for QString::arg() Harri Porten 1999-05-23 20:33:49 +0000
  • 390c73b470 more changes - it's for a good thing and fixheaders does most of the stuff for me :) Stephan Kulow 1999-05-23 20:21:39 +0000
  • bd4b5b2681 some more IconLoader changes Stephan Kulow 1999-05-23 19:58:26 +0000
  • d31cadb5a1 fixes to make it compile Stephan Kulow 1999-05-23 19:03:48 +0000
  • 8502288190 - no, I did not forget nice cute Konqy :-) Simon Hausmann 1999-05-20 21:27:36 +0000
  • cd0973fd71 getLocale->KGlobal::locale() David Faure 1999-05-20 09:53:22 +0000
  • ea07528caf I realised all those file were under the LGPL. Was that intentionnal ? I don't think so. Made it GPL. konqueror is not a library. David Faure 1999-05-20 06:39:06 +0000
  • 5aeba28dc4 WABA: Fixed e-mail address Waldo Bastian 1999-05-16 21:11:31 +0000
  • bab9980470 sprintf -> arg Hans Petter Bieker 1999-05-16 08:58:33 +0000
  • 1215d93be7 Added support for smb passwords through a dialog box. Didn't find why smb:/ is accepted, and smb:// not, though they are both OK for KURL. Nicolas Brodu 1999-05-15 17:10:04 +0000
  • e4b2978361 Fixes for *bar showing/hiding : using Toggle, not using m_Props anymore, Added showmenubar in RMB if menubar hidden Still some problems on startup (if not all *bars visible -> menu items not sync) David Faure 1999-05-12 02:27:46 +0000
  • 4341626153 Added showmenubar in RMB if menubar hidden David Faure 1999-05-12 02:26:56 +0000
  • d16accc4af synced docs Stephan Kulow 1999-05-11 19:35:39 +0000
  • 034ffd6d44 Hide menubar works. (Thanks Simon for the advice.) Don't try it ! There's no way to get the menubar back ! :))) David Faure 1999-05-11 19:14:36 +0000
  • 0a27ba323b CVS_SILENT made messages Script Kiddy 1999-05-11 16:35:12 +0000
  • b8d3e62236 Ooops, typos David Faure 1999-05-11 12:00:46 +0000
  • 089a1af643 Completed the "Options" menu. Show/Hide statusbar, toolbar, and locationbar should work. To be tested. Menubar is a lot more tricky, because of the menubarmanager. Don't know how to do it. David Faure 1999-05-11 10:18:56 +0000
  • 0d62509997 Massive commit for small change : allow views to add items to the edit menu. Currently used for Select / SelectAll (implemented in the icon view). Had to do some renaming for this. David Faure 1999-05-10 20:39:08 +0000
  • afb54d06ac Some work on TODOs : selectAll and selectRegExp (not finished), slotToolFind taken from kfm, lots of comments added on problematic methods. David Faure 1999-05-10 15:44:22 +0000
  • 00a3246c45 fixing messages target in a couple of Makefiles Stephan Kulow 1999-05-10 14:38:52 +0000
  • cfe78f60c5 Follow kiconloader api change... (kdelibs == moving target ? :) David Faure 1999-05-10 09:12:22 +0000
  • 8def61322d - QFile f( file.data() ); + QFile f( file ); Hans Petter Bieker 1999-05-08 20:12:01 +0000
  • 6071b77952 .kdelnk -> .desktop Harri Porten 1999-05-08 16:26:02 +0000