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.
144 lines
3.6 KiB
144 lines
3.6 KiB
15 years ago
|
/* This file is part of the KDE project
|
||
|
Copyright (C) 2005 Laurent Montel <montel@kde.org>
|
||
|
|
||
|
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 <qlabel.h>
|
||
|
#include <qlayout.h>
|
||
|
#include <qmultilineedit.h>
|
||
|
#include <qpushbutton.h>
|
||
|
#include <qtoolbutton.h>
|
||
|
#include <qapplication.h>
|
||
|
#include <qlayout.h>
|
||
|
#include <kiconloader.h>
|
||
|
#include <kbuttonbox.h>
|
||
|
#include <kdebug.h>
|
||
|
#include <kmessagebox.h>
|
||
|
#include <klocale.h>
|
||
|
#include <klistview.h>
|
||
|
#include <kdebug.h>
|
||
|
|
||
|
#include <qmultilineedit.h>
|
||
|
|
||
|
#include "Koversiondialog.h"
|
||
|
|
||
|
|
||
|
KoVersionDialog::KoVersionDialog( QWidget* parent, const char* name )
|
||
|
: KDialogBase( parent, name, true, i18n("Version"), Ok|Cancel )
|
||
|
{
|
||
|
QWidget* page = new QWidget( this );
|
||
|
setMainWidget( page );
|
||
|
|
||
|
QGridLayout *grid1 = new QGridLayout( page,10,3,KDialog::marginHint(), KDialog::spacingHint());
|
||
|
|
||
|
list=new KListView(page, "versionlist");
|
||
|
list->addColumn(i18n("Date & Time"));
|
||
|
list->addColumn(i18n("Saved By"));
|
||
|
list->addColumn(i18n("Comment"));
|
||
|
|
||
|
grid1->addMultiCellWidget(list,0,8,0,0);
|
||
|
|
||
|
m_pAdd=new QPushButton(i18n("&Add"),page);
|
||
|
grid1->addWidget(m_pAdd,1,2);
|
||
|
|
||
|
m_pRemove=new QPushButton(i18n("&Remove"),page);
|
||
|
grid1->addWidget(m_pRemove,2,2);
|
||
|
|
||
|
m_pModify=new QPushButton(i18n("&Modify"),page);
|
||
|
grid1->addWidget(m_pModify,3,2);
|
||
|
|
||
|
m_pOpen=new QPushButton(i18n("&Open"),page);
|
||
|
grid1->addWidget(m_pOpen,4,2);
|
||
|
|
||
|
|
||
|
connect( m_pRemove, SIGNAL( clicked() ), this, SLOT( slotRemove() ) );
|
||
|
connect( m_pAdd, SIGNAL( clicked() ), this, SLOT( slotAdd() ) );
|
||
|
connect( m_pOpen, SIGNAL( clicked() ), this, SLOT( slotOpen() ) );
|
||
|
connect( m_pModify, SIGNAL( clicked() ), this, SLOT( slotModify() ) );
|
||
|
|
||
|
updateButton();
|
||
|
|
||
|
resize( 600, 250 );
|
||
|
|
||
|
}
|
||
|
|
||
|
KoVersionDialog::~KoVersionDialog()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void KoVersionDialog::updateButton()
|
||
|
{
|
||
|
#if 0
|
||
|
bool state = ( list->currentItem() >= 0 );
|
||
|
m_pRemove->setEnabled( state );
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
void KoVersionDialog::slotAdd()
|
||
|
{
|
||
|
//TODO create entry
|
||
|
}
|
||
|
|
||
|
void KoVersionDialog::slotRemove()
|
||
|
{
|
||
|
//TODO remove entry
|
||
|
}
|
||
|
|
||
|
void KoVersionDialog::slotModify()
|
||
|
{
|
||
|
KoVersionModifyDialog * dlg = new KoVersionModifyDialog( this /*, const QString &_comment*/ /*TODO add*/ );
|
||
|
if ( dlg->exec() )
|
||
|
{
|
||
|
//TODO
|
||
|
kdDebug()<<" comment :"<<dlg->comment()<<endl;
|
||
|
}
|
||
|
delete dlg;
|
||
|
|
||
|
}
|
||
|
|
||
|
void KoVersionDialog::slotOpen()
|
||
|
{
|
||
|
//TODO open file
|
||
|
}
|
||
|
|
||
|
void KoVersionDialog::slotOk()
|
||
|
{
|
||
|
accept();
|
||
|
}
|
||
|
|
||
|
KoVersionModifyDialog::KoVersionModifyDialog( QWidget* parent, const QString &/*comment*/, const char* name )
|
||
|
: KDialogBase( parent, name, true, i18n("Comment"), Ok|Cancel )
|
||
|
{
|
||
|
QWidget* page = new QWidget( this );
|
||
|
setMainWidget( page );
|
||
|
|
||
|
QHBoxLayout *grid1 = new QHBoxLayout( page,KDialog::marginHint(), KDialog::spacingHint());
|
||
|
|
||
|
m_multiline=new QMultiLineEdit(page, "multiline");
|
||
|
grid1->addWidget( m_multiline );
|
||
|
|
||
|
}
|
||
|
|
||
|
QString KoVersionModifyDialog::comment() const
|
||
|
{
|
||
|
return m_multiline->text();
|
||
|
}
|
||
|
|
||
|
|
||
|
#include "Koversiondialog.moc"
|