summaryrefslogtreecommitdiffstats
path: root/kword/KWCreateBookmarkDia.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kword/KWCreateBookmarkDia.cpp
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kword/KWCreateBookmarkDia.cpp')
-rw-r--r--kword/KWCreateBookmarkDia.cpp155
1 files changed, 155 insertions, 0 deletions
diff --git a/kword/KWCreateBookmarkDia.cpp b/kword/KWCreateBookmarkDia.cpp
new file mode 100644
index 000000000..2bc3a1c71
--- /dev/null
+++ b/kword/KWCreateBookmarkDia.cpp
@@ -0,0 +1,155 @@
+/* This file is part of the KDE project
+ Copyright (C) 2002 Montel Laurent <lmontel@mandrakesoft.com>
+
+ 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 "KWDocument.h"
+#include <qvbox.h>
+#include <qlayout.h>
+#include <qlineedit.h>
+#include <qpushbutton.h>
+#include <qlistbox.h>
+#include <kmessagebox.h>
+#include "KWCommand.h"
+#include "KWCreateBookmarkDia.h"
+#include "KWCreateBookmarkDiaBase.h"
+#include "KWFrame.h"
+#include "KWFrameSet.h"
+
+KWCreateBookmarkDia::KWCreateBookmarkDia( const QStringList & _list, QWidget *parent, const char *name )
+ : KDialogBase( parent, name , true, "", Ok|Cancel, Ok, true )
+{
+ setCaption( i18n("Create New Bookmark") );
+ listBookMark = _list;
+ init();
+}
+
+KWCreateBookmarkDia::KWCreateBookmarkDia( const QStringList & _list, const QString & _name, QWidget *parent, const char *name )
+ : KDialogBase( parent, name , true, "", Ok|Cancel, Ok, true )
+{
+ setCaption( i18n("Rename Bookmark") );
+ listBookMark = _list;
+ init();
+ m_bookmarkName->setText(_name);
+}
+
+void KWCreateBookmarkDia::init()
+{
+ KWCreateBookmarkDiaBase *dia = new KWCreateBookmarkDiaBase( this );
+ m_bookmarkName = dia->m_bookmarkName;
+ enableButtonOK( false );
+ connect( m_bookmarkName, SIGNAL(textChanged ( const QString & )), this, SLOT(nameChanged( const QString &)));
+ setMainWidget( dia );
+ m_bookmarkName->setFocus();
+}
+
+void KWCreateBookmarkDia::slotOk()
+{
+ if ( listBookMark.findIndex(m_bookmarkName->text() ) != -1 )
+ {
+ KMessageBox::error(this, i18n("That name already exists, please choose another name."));
+ }
+ else
+ KDialogBase::slotOk();
+}
+
+QString KWCreateBookmarkDia::bookmarkName()const
+{
+ return m_bookmarkName->text();
+}
+
+void KWCreateBookmarkDia::nameChanged( const QString &text)
+{
+ enableButtonOK( !text.isEmpty() );
+}
+
+
+/* **************************** */
+KWSelectBookmarkDia::KWSelectBookmarkDia( const QStringList & _list, KWDocument *_doc, QWidget *parent, const char *name )
+ : KDialogBase( parent, name , true, "", Ok|Cancel, Ok, true )
+{
+ m_doc=_doc;
+ setCaption( i18n("Select Bookmark") );
+ QWidget *page = new QWidget( this );
+ setMainWidget(page);
+
+ QGridLayout * grid = new QGridLayout(page, 5, 2, KDialog::marginHint(), KDialog::spacingHint());
+ m_bookmarkList = new QListBox( page );
+ grid->addMultiCellWidget(m_bookmarkList, 0, 4, 0, 0);
+ m_bookmarkList->insertStringList(_list);
+
+ connect(m_bookmarkList, SIGNAL( selectionChanged ()), this, SLOT(slotSelectionChanged()));
+ connect(m_bookmarkList, SIGNAL(doubleClicked ( QListBoxItem * )), this, SLOT(slotOk()));
+ connect(m_bookmarkList, SIGNAL(returnPressed ( QListBoxItem * )), this, SLOT(slotOk()));
+
+ m_pbRename = new QPushButton( i18n("Rename Bookmark"), page );
+ grid->addWidget( m_pbRename, 0, 1);
+ connect( m_pbRename, SIGNAL(clicked()), this, SLOT(slotRenameBookmark()));
+
+ m_pbDelete = new QPushButton( i18n("Delete Bookmark"), page );
+ grid->addWidget( m_pbDelete, 1, 1);
+
+ connect( m_pbDelete, SIGNAL(clicked()), this, SLOT(slotDeleteBookmark()));
+
+ m_bookmarkList->setFocus();
+ slotSelectionChanged();
+}
+
+void KWSelectBookmarkDia::slotRenameBookmark()
+{
+ QString tmp =m_bookmarkList->currentText();
+ if ( tmp.isEmpty() )
+ return;
+ //all bookmark name
+ QStringList lst =m_doc->listOfBookmarkName(0L);
+ lst.remove( tmp );
+ KWCreateBookmarkDia dia( lst, tmp, this, 0 );
+ if ( dia.exec() ) {
+ QString newName = dia.bookmarkName();
+ KWRenameBookmarkCommand *cmd = new KWRenameBookmarkCommand( i18n("Rename Bookmark"), tmp, newName, m_doc);
+ m_doc->addCommand( cmd );
+ cmd->execute();
+ m_bookmarkList->changeItem ( newName, m_bookmarkList->currentItem() );
+ }
+}
+
+void KWSelectBookmarkDia::slotDeleteBookmark()
+{
+ QString tmp =m_bookmarkList->currentText();
+ if ( !tmp.isEmpty())
+ {
+ m_doc->deleteBookmark(tmp);
+ m_bookmarkList->removeItem(m_bookmarkList->currentItem());
+ }
+}
+
+
+QString KWSelectBookmarkDia::bookmarkSelected()const
+{
+ return m_bookmarkList->currentText();
+}
+
+void KWSelectBookmarkDia::slotSelectionChanged()
+{
+ bool state =!m_bookmarkList->currentText().isEmpty();
+ enableButtonOK( state );
+ m_pbRename->setEnabled( state);
+ m_pbDelete->setEnabled( state && m_doc->isReadWrite());
+}
+
+#include "KWCreateBookmarkDia.moc"