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.
tdevelop/buildtools/lib/widgets/addfilesdialog.cpp

79 lines
2.7 KiB

/* This file is part of the KDE project
Copyright (C) 2003 Alexander Dymo <cloudtemple@mksat.net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include <klocale.h>
#include <kapplication.h>
#include <qcombobox.h>
#include "addfilesdialog.h"
#include "addfilesdialog.moc"
AddFilesDialog::AddFilesDialog(const QString& startDir, const QString& filter,
QWidget *parent, const char *name, bool modal):
KFileDialog(startDir, filter, parent, name, modal)
{
KConfig *config = kapp->config();
config->setGroup("Add Files Dialog");
m_extraWidget = new QComboBox(false, this);
m_extraWidget->insertItem(i18n("Copy File(s)"), 0);
m_extraWidget->insertItem(i18n("Create Symbolic Link(s)"), 1);
m_extraWidget->insertItem(i18n("Add Relative Path(s)"), 2);
m_extraWidget->setCurrentItem(config->readNumEntry("Mode"));
connect(m_extraWidget, SIGNAL(activated(int)), this, SLOT(storePreferred(int)));
setPreviewWidget(m_extraWidget);
setOperationMode(Opening);
}
AddFilesDialog::AddFilesDialog(const QString& startDir, const QString& filter,
QWidget *parent, const char *name, bool modal, QComboBox *extraWidget):
KFileDialog(startDir, filter, parent, name, modal, extraWidget), m_extraWidget(extraWidget)
{
KConfig *config = kapp->config();
config->setGroup("Add Files Dialog");
m_extraWidget->insertItem(i18n("Copy File(s)"), 0);
m_extraWidget->insertItem(i18n("Create Symbolic Link(s)"), 1);
m_extraWidget->insertItem(i18n("Add Relative Path(s)"), 2);
m_extraWidget->setCurrentItem(config->readNumEntry("Mode"));
connect(m_extraWidget, SIGNAL(activated(int)), this, SLOT(storePreferred(int)));
setOperationMode(Opening);
}
AddFilesDialog::~AddFilesDialog()
{
}
AddFilesDialog::Mode AddFilesDialog::mode( )
{
return (AddFilesDialog::Mode)m_extraWidget->currentItem();
}
void AddFilesDialog::storePreferred( int index )
{
KConfig *config = kapp->config();
config->setGroup("Add Files Dialog");
config->writeEntry("Mode", index);
}