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.
tdesvn/src/svnfrontend/importdir_logmsg.cpp

88 lines
3.6 KiB

/***************************************************************************
* Copyright (C) 2005-2007 by Rajko Albrecht *
* ral@alwins-world.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#include "importdir_logmsg.h"
#include "version_check.h"
#include <tdelocale.h>
#include <tqcheckbox.h>
#include <tqlayout.h>
#include <tqvbox.h>
#include <tqwhatsthis.h>
#include <tqtooltip.h>
Importdir_logmsg::Importdir_logmsg(TQWidget *parent, const char *name)
: Logmsg_impl(parent, name)
{
m_createDirBox = new TQCheckBox("",this,"create_dir_checkbox");
m_keepLocksButton->hide();
//delete m_keepLocksButton;
createDirboxDir();
addItemWidget(m_createDirBox);
m_createDirBox->setChecked(true);
TQHBoxLayout* tmpLayout = new TQHBoxLayout( this, 11, 6, "ExtraLayout");
m_noIgnore = new TQCheckBox("",this,"no_ignore_pattern");
m_noIgnore->setText(i18n("No ignore"));
TQToolTip::add(m_noIgnore,i18n("If set, add files or directories that match ignore patterns."));
tmpLayout->addWidget(m_noIgnore);
//LogmessageDataLayout->addWidget(m_createDirBox);
if (svn::Version::version_major()>1|| svn::Version::version_minor()>4 ) {
m_ignoreUnknownNodes = new TQCheckBox("",this,"ignore_unknown_nodes_box");
m_ignoreUnknownNodes->setText(i18n("Ignore unknown node types"));
TQToolTip::add(m_ignoreUnknownNodes,i18n("Should files with unknown node types be ignored"));
TQWhatsThis::add(m_ignoreUnknownNodes,i18n("Ignore files of which the node type is unknown, such as device files and pipes."));
tmpLayout->addWidget(m_ignoreUnknownNodes);
//addItemWidget(m_ignoreUnknownNodes);
} else {
m_ignoreUnknownNodes=0;
}
TQSpacerItem* m_leftspacer = new TQSpacerItem( 40, 20, TQSizePolicy::Expanding, TQSizePolicy::Minimum );
tmpLayout->addItem(m_leftspacer);
LogmessageDataLayout->addItem(tmpLayout);
}
Importdir_logmsg::~Importdir_logmsg()
{
}
bool Importdir_logmsg::noIgnore()
{
return m_noIgnore->isChecked();
}
bool Importdir_logmsg::ignoreUnknownNodes()
{
return m_ignoreUnknownNodes?m_ignoreUnknownNodes->isChecked():false;
}
bool Importdir_logmsg::createDir()
{
return m_createDirBox->isChecked();
}
void Importdir_logmsg::createDirboxDir(const TQString & which)
{
m_createDirBox->setText(i18n("Create subdir %1 on import").arg(which.isEmpty()?i18n("(Last part)"):which));
}
#include "importdir_logmsg.moc"