/*========================================================================= Library: CTK Copyright (c) 2010 Kitware Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.commontk.org/LICENSE Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =========================================================================*/ // QT includes #include #include #include #include #include #include // CTK includes #include "ctkFileDialog.h" //------------------------------------------------------------------------------ class ctkFileDialogPrivate: public ctkPrivate { public: ctkFileDialogPrivate(); void init(); QPushButton* acceptButton()const; bool AcceptButtonEnable; bool AcceptButtonState; bool IgnoreEvent; }; //------------------------------------------------------------------------------ ctkFileDialogPrivate::ctkFileDialogPrivate() { this->IgnoreEvent = false; this->AcceptButtonEnable = true; this->AcceptButtonState = true; } //------------------------------------------------------------------------------ void ctkFileDialogPrivate::init() { CTK_P(ctkFileDialog); QPushButton* button = this->acceptButton(); Q_ASSERT(button); this->AcceptButtonState = button->isEnabledTo(qobject_cast(button->parent())); button->installEventFilter(p); } //------------------------------------------------------------------------------ QPushButton* ctkFileDialogPrivate::acceptButton()const { CTK_P(const ctkFileDialog); QDialogButtonBox* buttonBox = p->findChild(); Q_ASSERT(buttonBox); QDialogButtonBox::StandardButton button = (p->acceptMode() == QFileDialog::AcceptOpen ? QDialogButtonBox::Open : QDialogButtonBox::Save); return buttonBox->button(button); } //------------------------------------------------------------------------------ ctkFileDialog::ctkFileDialog(QWidget *parentWidget, const QString &caption, const QString &directory, const QString &filter) :QFileDialog(parentWidget, caption, directory, filter) { CTK_INIT_PRIVATE(ctkFileDialog); CTK_D(ctkFileDialog); d->init(); } //------------------------------------------------------------------------------ ctkFileDialog::~ctkFileDialog() { } //------------------------------------------------------------------------------ void ctkFileDialog::setBottomWidget(QWidget* widget, const QString& label) { QGridLayout* gridLayout = qobject_cast(this->layout()); QWidget* oldBottomWidget = this->bottomWidget(); if (oldBottomWidget) { if (oldBottomWidget == widget) { return; } gridLayout->removeWidget(oldBottomWidget); delete oldBottomWidget; } if (widget == 0) { return; } if (!label.isEmpty()) { gridLayout->addWidget(new QLabel(label), 4, 0); gridLayout->addWidget(widget,4, 1,1, 1); } else { gridLayout->addWidget(widget,4, 0,1, 2); } QDialogButtonBox* buttonBox = this->findChild(); Q_ASSERT(buttonBox); gridLayout->removeWidget(buttonBox); gridLayout->addWidget(buttonBox, 2, 2, 3, 1); } //------------------------------------------------------------------------------ QWidget* ctkFileDialog::bottomWidget()const { QGridLayout* gridLayout = qobject_cast(this->layout()); QLayoutItem* item = gridLayout->itemAtPosition(4,1); return item ? item->widget() : 0; } //------------------------------------------------------------------------------ void ctkFileDialog::setAcceptButtonEnable(bool enable) { CTK_D(ctkFileDialog); d->AcceptButtonEnable = enable; d->acceptButton()->setEnabled(d->AcceptButtonEnable && d->AcceptButtonState); } //------------------------------------------------------------------------------ bool ctkFileDialog::eventFilter(QObject *obj, QEvent *event) { CTK_D(ctkFileDialog); QPushButton* button = d->acceptButton(); if (obj == button && event->type() == QEvent::EnabledChange && !d->IgnoreEvent) { d->IgnoreEvent = true; d->AcceptButtonState = button->isEnabledTo(qobject_cast(button->parent())); button->setEnabled(d->AcceptButtonEnable && d->AcceptButtonState); d->IgnoreEvent = false; } return QFileDialog::eventFilter(obj, event); }