Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
bibletime/bibletime/frontend/keychooser/crefselectdialog.cpp

97 rader
2.5 KiB

/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2006 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/
#include "crefselectdialog.h"
// QT
#include "tqlayout.h"
#include "tqlineedit.h"
#include "tqlabel.h"
// backend
#include "backend/cswordkey.h"
#include "backend/cswordversekey.h"
//KDE includes
#include <tdelocale.h>
//CRefSelectDialog::CRefSelectDialog(TQWidget *parent)
// : KDialogBase(parent, "Refenences",
// true, i18n("Refenence selector"),
// KDialogBase::Ok|KDialogBase::Cancel, KDialogBase::Ok, true),
// m_oldPos(0,0)
//
//{
// m_page = new TQWidget( this );
// m_placeholder = new TQWidget( m_page);
// TQVBoxLayout* layout = new TQVBoxLayout( m_page, 0, spacingHint());
// m_lineedit = new TQLineEdit( TQString(), m_page, "select" );
// m_lineedit->setMinimumWidth(fontMetrics().maxWidth()*8);
//
// TQHBoxLayout* hlayout = new TQHBoxLayout(m_page, 0, spacingHint());
// hlayout->addWidget(new TQLabel(i18n("Verse key:"), m_page));
// hlayout->addWidget(m_lineedit);
// layout->addItem(hlayout);
// layout->addWidget(m_placeholder);
//
// m_chooser = NULL;
// m_oldParent = NULL;
// setMainWidget(m_page);
//
// connect(this, TQT_SIGNAL(okClicked()), TQT_SLOT(slotPressedOk()));
// connect(this, TQT_SIGNAL(cancelClicked()), TQT_SLOT(slotPressedCancel()));
//}
//
//CRefSelectDialog::~CRefSelectDialog() {
//}
//
//
//void CRefSelectDialog::setChooser(CKeyChooser* const chooser) {
// if (chooser && chooser != m_chooser) {
// if (m_chooser) restoreParent();
//
// m_chooser = chooser;
//
// // store old owner and position
// m_oldParent = chooser->parentWidget(false);
// m_oldPos = chooser->pos();
//
// // we temporary borrow chooser widget from the MDI window
// m_placeholder->setMinimumSize(chooser->size());
// chooser->reparent(m_placeholder, TQPoint(0,0), true);
// }
//}
//
//void CRefSelectDialog::slotPressedOk() {
// // go to proper key
// CSwordKey* key = m_chooser->key();
// key->key(m_lineedit->text());
// m_chooser->setKey(key);
//
// // restore parent of stolen widget
// restoreParent();
//}
//
//void CRefSelectDialog::slotPressedCancel() {
// // restore parent of stolen widget
// restoreParent();
//}
//
//void CRefSelectDialog::restoreParent() {
// if (m_chooser && m_oldParent) {
// m_chooser->reparent(m_oldParent, m_oldPos, true);
// }
// m_chooser = NULL;
//}
#include "crefselectdialog.moc"