- 05 Nov, 2016 1 commit
-
-
David Faure authored
-
- 09 Jul, 2007 1 commit
-
-
David Faure authored
libkonq cleanup: remove now unused classes, move KonqSettings to konqueror, remove dependencies on KonqDirPart. svn path=/trunk/KDE/kdebase/apps/; revision=685729
-
- 13 Mar, 2002 1 commit
-
-
Malte Starostik authored
svn path=/trunk/kdebase/libkonq/; revision=142821
-
- 10 May, 2001 1 commit
-
-
Simon Hausmann authored
(with two minor additional fixes: removed unused member variable and no need to delete the layout in the dtor, qt does it for us) Maybe Tackat can make a nice icon for the 'X' ? :-) svn path=/trunk/kdebase/konqueror/; revision=96223
-
- 05 May, 2001 2 commits
-
-
David Faure authored
windows on the current desktop. svn path=/trunk/kdebase/konqueror/; revision=95293
-
David Faure authored
to prevent Alt+F4 from crashing. I could have sworn this was fixed in Qt 2.3.0 :( svn path=/trunk/kdebase/konqueror/; revision=95271
-
- 01 May, 2001 1 commit
-
-
Simon Hausmann authored
to/from the highlighting signals of the actioncollections into two separate methods, for cleanup, and use the qt child deletion mechanism to delete the bookmark actioncollection svn path=/trunk/kdebase/konqueror/; revision=94624
-
- 28 Apr, 2001 1 commit
-
-
Simon Hausmann authored
from KAction, used for the 'go url' action. when plugging the action into a toolbar make sure to align the button right. Otherwise the toolbar layout completely fucks up and QToolBar starts flickering like mad, when the window width is getting small than the lenght of the url in the combobox. - konq_mainwindow.cc (initActions): use KonqGoURLAction svn path=/trunk/kdebase/konqueror/; revision=94287
-
- 27 Apr, 2001 1 commit
-
-
Simon Hausmann authored
location toolbar, acting as if the user presses return fixes #8008 and #14737 thanks tackat for the nice icon svn path=/trunk/kdebase/konqueror/; revision=94169
-
- 07 Apr, 2001 1 commit
-
-
Simon Hausmann authored
m_currentView->lockHistory() call in KonqMainWindow::slotReload() , to fix #23818 svn path=/trunk/kdebase/konqueror/; revision=90879
-
- 31 Mar, 2001 1 commit
-
-
David Faure authored
Forgot to commit earlier (fixed yesterday after dirk's report) svn path=/trunk/kdebase/konqueror/; revision=89581
-
- 24 Mar, 2001 2 commits
-
-
Simon Hausmann authored
some actions. Likewise for some actions in KonqDirPart. Also call setHighlightingEnabled in the KonqDirPart constructor - konq_mainview.cc (slotPartActivated): connect and disconnect to/from the actionStatusText and clearStatusText signals of the part's actioncollection svn path=/trunk/kdebase/libkonq/; revision=88555
-
Simon Hausmann authored
svn path=/trunk/kdebase/konqueror/; revision=88543
-
- 02 Mar, 2001 1 commit
-
-
Simon Hausmann authored
svn path=/trunk/kdebase/konqueror/; revision=85060
-
- 06 Feb, 2001 1 commit
-
-
Simon Hausmann authored
environment variables and other sugar in bookmark URLs. @@ -2914,7 +2914,7 @@ void KonqMainWindow::disableActionsNoVie void KonqMainWindow::openBookmarkURL( const QString & url ) { kdDebug(1202) << (QString("KonqMainWindow::openBookmarkURL(%1)").arg(url)) << endl; - openURL( 0L, KURL( url ) ); + openFilteredURL( url ); } svn path=/trunk/kdebase/konqueror/; revision=81594
-
- 28 Jan, 2001 1 commit
-
-
Stephan Kulow authored
svn path=/trunk/kdebase/konqueror/; revision=80449
-
- 16 Jan, 2001 1 commit
-
-
Simon Hausmann authored
libkonq/kbookmarkmenu.cc (fillBookmarkMenu): When a Website has "&" in the Title, make sure to transform it into "&&" before inserting it into a QPopupMenu (for history or for bookmarks) , to avoid QPopupMenu interpreting it as accelerator. svn path=/trunk/kdebase/konqueror/; revision=78320
-
- 15 Jan, 2001 1 commit
-
-
David Faure authored
i18n() strings so that we can update them without breaking translations. Finished removing all English strings from the template. Removed "clear location bar" hack. svn path=/trunk/kdebase/konqueror/; revision=78231
-
- 14 Jan, 2001 2 commits
-
-
David Faure authored
so that "view-follows-view" is also applied on startup. Fixes #17679. svn path=/trunk/kdebase/konqueror/; revision=78077
-
David Faure authored
means it can be activated like a normal view now. This allows to e.g. change the view mode, and avoids the Unlock All Views item. Also added Lock / Unlock to view statusbar's popupmenu (for Njaard :). svn path=/trunk/kdebase/konqueror/; revision=78047
-
- 13 Jan, 2001 1 commit
-
-
David Faure authored
svn path=/trunk/kdebase/konqueror/; revision=77880
-
- 12 Jan, 2001 1 commit
-
-
David Faure authored
* konq_viewmgr.cc (loadViewProfile): Set active part before loading URL, so that the URL appears in the location bar. svn path=/trunk/kdebase/konqueror/; revision=77668
-
- 11 Jan, 2001 1 commit
-
-
David Faure authored
my last commit. Don't forget to add entries to the changelog in www/, for important bugfixes and for new features. svn path=/trunk/kdebase/konqueror/; revision=77534
-
- 08 Jan, 2001 1 commit
-
-
Simon Hausmann authored
(createNewWindow), (createNewWindow), (createBrowserWindowFromProfile), (createBrowserWindowFromProfile), (createBrowserWindowFromProfileAndURL), (createBrowserWindowFromProfileAndURL): changed return type from void to DCOPRef svn path=/trunk/kdebase/konqueror/; revision=76896
-
- 27 Dec, 2000 2 commits
-
-
Simon Hausmann authored
(in particular the webbrowsing one) , activate the clear_location action. This gives the focus to the location bar -> the user can type in an url right away when loading the webbrowsing profile svn path=/trunk/kdebase/konqueror/; revision=75692
-
Simon Hausmann authored
don't use the action( int index ) method of KActionCollection but instead retrieve a QValueList<KAction *> and iterate over that, as the =+(int) operator of QDictIterator isn't really fast svn path=/trunk/kdebase/konqueror/; revision=75682
-
- 12 Dec, 2000 2 commits
-
-
David Faure authored
The attribute was missing from the profile. Might be a good idea to ship a profile with that feature, now. "File Previewing", maybe... svn path=/trunk/kdebase/konqueror/; revision=74589
-
David Faure authored
svn path=/trunk/kdebase/konqueror/; revision=74582
-
- 10 Dec, 2000 3 commits
-
-
David Faure authored
Had to move all the handling of the action states to browserextension. Sorry that you have to update kdelibs... svn path=/trunk/kdebase/konqueror/; revision=74320
-
Simon Hausmann authored
svn path=/trunk/kdebase/konqueror/; revision=74243
-
Simon Hausmann authored
and there svn path=/trunk/kdebase/konqueror/; revision=74239
-
- 09 Dec, 2000 1 commit
-
-
Simon Hausmann authored
with an additional delayed popupmenu * konq_mainwindow.{cc,h}: Changed the toolbar viewmode buttons to show the available viewmodes grouped. For directories they are grouped by iconview and listview. This way one can quickly switch between the favourite list and iconview while still having the complete choice of viewmodes via delayed popupmenus (idea by Torsten and David) svn path=/trunk/kdebase/konqueror/; revision=74196
-
- 08 Dec, 2000 4 commits
-
-
David Faure authored
svn path=/trunk/kdebase/konqueror/; revision=74012
-
David Faure authored
svn path=/trunk/kdebase/konqueror/; revision=73959
-
Malte Starostik authored
svn path=/trunk/kdebase/konqueror/; revision=73889
-
David Faure authored
Everyone, please keep up to date especially for new features (malte?) svn path=/trunk/kdebase/konqueror/; revision=73886
-
- 02 Dec, 2000 1 commit
-
-
David Faure authored
part, and the result of the search is connected to the current directory part. "Close" or opening any other URL closes the 'find' part. * konq_viewmgr.cc: Support for suicidal passive views, more arguments to splitView and splitWindow. * konq_guiclients.cc: Duplicated code removed, uses splitWindow now. svn path=/trunk/kdebase/konqueror/; revision=73076
-
- 30 Nov, 2000 1 commit
-
-
David Faure authored
svn path=/trunk/kdebase/konqueror/; revision=72858
-
- 28 Nov, 2000 1 commit
-
-
David Faure authored
Kudos to Christian Lavoie <clavoi14@po-box.mcgill.ca> for the idea. konq_profiledlg.cc: Ported to KListView to fix problems with selection. (This fixes the bug Carsten reported to me long long ago). :-} svn path=/trunk/kdebase/konqueror/; revision=72601
-
- 26 Nov, 2000 1 commit
-
-
David Faure authored
Minicli), by passing the mimetype through to konqueror. This avoids a KonqRun in konqueror, so the speedup should be quite important. (konqueror takes -mimetype on the command line ; kfmclient takes it after the URL in openURL ; had to split kfmclient.desktop into two files) svn path=/trunk/kdebase/konqueror/; revision=72416
-