summaryrefslogtreecommitdiffstats
path: root/kcontrol/konqhtml
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-03-02 21:46:08 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-03-02 21:46:08 -0600
commitde495952421bf4846fe0e723ed8ef657d1d8beeb (patch)
treed4ddfd828ca638d10014e9b5b846fa74ed1fc7a1 /kcontrol/konqhtml
parent8f1fb61e82b6e690a166e737fa1da6e2bd1666f4 (diff)
downloadtdebase-de495952421bf4846fe0e723ed8ef657d1d8beeb.tar.gz
tdebase-de495952421bf4846fe0e723ed8ef657d1d8beeb.zip
Add GUI check box to control display of favicons in konqueror.
This resolves bug report 1361.
Diffstat (limited to 'kcontrol/konqhtml')
-rw-r--r--kcontrol/konqhtml/htmlopts.cpp11
-rw-r--r--kcontrol/konqhtml/htmlopts.h1
2 files changed, 11 insertions, 1 deletions
diff --git a/kcontrol/konqhtml/htmlopts.cpp b/kcontrol/konqhtml/htmlopts.cpp
index 5b921f217..f8731f60d 100644
--- a/kcontrol/konqhtml/htmlopts.cpp
+++ b/kcontrol/konqhtml/htmlopts.cpp
@@ -64,7 +64,7 @@ KMiscHTMLOptions::KMiscHTMLOptions(TDEConfig *config, TQString group, TQWidget *
// Form completion
TQVGroupBox *bgForm = new TQVGroupBox( i18n("Form Com&pletion"), this );
- m_pFormCompletionCheckBox = new TQCheckBox(i18n( "Enable completion of &forms" ), bgForm);
+ m_pFormCompletionCheckBox = new TQCheckBox(i18n( "Enable com&pletion of forms" ), bgForm);
TQWhatsThis::add( m_pFormCompletionCheckBox, i18n( "If this box is checked, Konqueror will remember"
" the data you enter in web forms and suggest it in similar fields for all forms." ) );
connect(m_pFormCompletionCheckBox, TQT_SIGNAL(clicked()), TQT_SLOT(slotChanged()));
@@ -141,6 +141,12 @@ KMiscHTMLOptions::KMiscHTMLOptions(TDEConfig *config, TQString group, TQWidget *
lay->addMultiCellWidget( m_pAutoLoadImagesCheckBox, row, row, 0, 1 );
row++;
+ m_pEnableFavIconCheckBox = new TQCheckBox( i18n( "Enable &favicons"), this );
+ TQWhatsThis::add( m_pEnableFavIconCheckBox, i18n( "If this box is checked, Konqueror will automatically load and display favicon images that are associated with a web page. These images appear in the Location bar. Otherwise a generic image will appear." ) );
+ connect(m_pEnableFavIconCheckBox, TQT_SIGNAL(clicked()), TQT_SLOT(slotChanged()));
+ lay->addMultiCellWidget( m_pEnableFavIconCheckBox, row, row, 0, 1 );
+ row++;
+
m_pUnfinishedImageFrameCheckBox = new TQCheckBox( i18n( "Dra&w frame around not completely loaded images"), this );
TQWhatsThis::add( m_pUnfinishedImageFrameCheckBox, i18n( "If this box is checked, Konqueror will draw a frame as placeholder around not yet fully loaded images that are embedded in a web page.<br>Especially if you have a slow network connection, you will probably want to check this box to enhance your browsing experience." ) );
connect(m_pUnfinishedImageFrameCheckBox, TQT_SIGNAL(clicked()), TQT_SLOT(slotChanged()));
@@ -253,6 +259,7 @@ void KMiscHTMLOptions::load( bool useDefaults )
bool underlineLinks = READ_BOOL("UnderlineLinks", DEFAULT_UNDERLINELINKS);
bool hoverLinks = READ_BOOL("HoverLinks", true);
bool bAutoLoadImages = READ_BOOL( "AutoLoadImages", true );
+ bool bEnableFavIcon = READ_BOOL( "EnableFavicon", true );
bool bUnfinishedImageFrame = READ_BOOL( "UnfinishedImageFrame", true );
TQString strAnimations = READ_ENTRY( "ShowAnimations" ).lower();
@@ -261,6 +268,7 @@ void KMiscHTMLOptions::load( bool useDefaults )
// *** apply to GUI ***
m_cbCursor->setChecked( changeCursor );
m_pAutoLoadImagesCheckBox->setChecked( bAutoLoadImages );
+ m_pEnableFavIconCheckBox->setChecked( bEnableFavIcon );
m_pUnfinishedImageFrameCheckBox->setChecked( bUnfinishedImageFrame );
m_pAutoRedirectCheckBox->setChecked( bAutoRedirect );
m_pOpenMiddleClick->setChecked( bOpenMiddleClick );
@@ -331,6 +339,7 @@ void KMiscHTMLOptions::save()
m_pConfig->setGroup( "HTML Settings" );
m_pConfig->writeEntry( "ChangeCursor", m_cbCursor->isChecked() );
m_pConfig->writeEntry( "AutoLoadImages", m_pAutoLoadImagesCheckBox->isChecked() );
+ m_pConfig->writeEntry( "EnableFavicon", m_pEnableFavIconCheckBox->isChecked() );
m_pConfig->writeEntry( "UnfinishedImageFrame", m_pUnfinishedImageFrameCheckBox->isChecked() );
m_pConfig->writeEntry( "AutoDelayedActions", m_pAutoRedirectCheckBox->isChecked() );
switch(m_pUnderlineCombo->currentItem())
diff --git a/kcontrol/konqhtml/htmlopts.h b/kcontrol/konqhtml/htmlopts.h
index a2a649ef2..43ba62cee 100644
--- a/kcontrol/konqhtml/htmlopts.h
+++ b/kcontrol/konqhtml/htmlopts.h
@@ -55,6 +55,7 @@ private:
TQComboBox* m_pSmoothScrollingCombo;
TQCheckBox* m_cbCursor;
TQCheckBox* m_pAutoLoadImagesCheckBox;
+ TQCheckBox* m_pEnableFavIconCheckBox;
TQCheckBox* m_pUnfinishedImageFrameCheckBox;
TQCheckBox* m_pAutoRedirectCheckBox;
TQCheckBox* m_pOpenMiddleClick;