You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/kolf/kcomboboxdialog.cpp

153 lines
4.9 KiB

// Copyright (C) 2002 Jason Katz-Brown <jason@katzbrown.com>
// Copyright (C) 2002 Neil Stevens <neil@qualityassistant.com>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// THE AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
// AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
// Except as contained in this notice, the name(s) of the author(s) shall not be
// used in advertising or otherwise to promote the sale, use or other dealings
// in this Software without prior written authorization from the author(s).
#include <tqcheckbox.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <tdelocale.h>
#include <kcombobox.h>
#include <tdeconfig.h>
#include <kdebug.h>
#include <tdeglobal.h>
#include "kcomboboxdialog.h"
KComboBoxDialog::KComboBoxDialog( const TQString &_text, const TQStringList &_items, const TQString& _value, bool showDontAskAgain, TQWidget *parent )
: KDialogBase( Plain, TQString(), Ok, Ok, parent, 0L, true, true )
{
TQVBoxLayout *topLayout = new TQVBoxLayout( plainPage(), marginHint(), spacingHint() );
TQLabel *label = new TQLabel(_text, plainPage() );
topLayout->addWidget( label, 1 );
combo = new KHistoryCombo( plainPage() );
combo->setEditable(false);
combo->insertStringList( _items );
topLayout->addWidget( combo, 1 );
if (showDontAskAgain)
{
dontAskAgainCheckBox = new TQCheckBox( i18n("&Do not ask again"), plainPage() );
topLayout->addWidget( dontAskAgainCheckBox, 1 );
}
else
dontAskAgainCheckBox = 0;
if ( !_value.isNull() )
combo->setCurrentText( _value );
combo->setFocus();
}
KComboBoxDialog::~KComboBoxDialog()
{
}
TQString KComboBoxDialog::text() const
{
return combo->currentText();
}
bool KComboBoxDialog::dontAskAgainChecked()
{
if (dontAskAgainCheckBox)
return dontAskAgainCheckBox->isChecked();
return false;
}
TQString KComboBoxDialog::getItem( const TQString &_text, const TQStringList &_items, const TQString& _value, const TQString &dontAskAgainName, TQWidget *parent )
{
return getItem( _text, TQString(), _items, _value, dontAskAgainName, parent );
}
TQString KComboBoxDialog::getItem( const TQString &_text, const TQString &_caption, const TQStringList &_items, const TQString& _value, const TQString &dontAskAgainName, TQWidget *parent )
{
TQString prevAnswer;
if ( !dontAskAgainName.isEmpty() )
{
TDEConfig *config = TDEGlobal::config();
config->setGroup( "Notification Messages" );
prevAnswer = config->readEntry( dontAskAgainName );
if ( !prevAnswer.isEmpty() )
if ( _items.contains( prevAnswer ) > 0 )
return prevAnswer;
}
KComboBoxDialog dlg( _text, _items, _value, !dontAskAgainName.isNull(), parent );
if ( !_caption.isNull() )
dlg.setCaption( _caption );
dlg.exec();
const TQString text = dlg.text();
if (dlg.dontAskAgainChecked())
{
if ( !dontAskAgainName.isEmpty() && !text.isEmpty() )
{
TDEConfig *config = TDEGlobal::config();
config->setGroup ( "Notification Messages" );
config->writeEntry( dontAskAgainName, text );
}
}
return text;
}
TQString KComboBoxDialog::getText(const TQString &_caption, const TQString &_text, const TQString &_value, bool *ok, TQWidget *parent, const TQString &configName, TDEConfig *config)
{
KComboBoxDialog dlg(_text, TQStringList(), _value, false, parent);
if ( !_caption.isNull() )
dlg.setCaption( _caption );
KHistoryCombo * const box = dlg.comboBox();
box->setEditable(true);
const TQString historyItem = TQString("%1History").arg(configName);
const TQString completionItem = TQString("%1Completion").arg(configName);
if(!configName.isNull())
{
config->setGroup("KComboBoxDialog");
box->setHistoryItems(config->readListEntry(historyItem));
box->completionObject()->setItems(config->readListEntry(completionItem));
}
bool result = dlg.exec();
if(ok) *ok = result;
if(!configName.isNull() && result)
{
box->addToHistory(dlg.text());
box->completionObject()->addItem(dlg.text());
config->setGroup("KComboBoxDialog");
config->writeEntry(historyItem, box->historyItems());
config->writeEntry(completionItem, box->completionObject()->items());
}
return dlg.text();
}
#include "kcomboboxdialog.moc"