summaryrefslogtreecommitdiffstats
path: root/lib/kofficeui/KoPartSelectDia.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kofficeui/KoPartSelectDia.cpp')
-rw-r--r--lib/kofficeui/KoPartSelectDia.cpp93
1 files changed, 93 insertions, 0 deletions
diff --git a/lib/kofficeui/KoPartSelectDia.cpp b/lib/kofficeui/KoPartSelectDia.cpp
new file mode 100644
index 00000000..773d1b88
--- /dev/null
+++ b/lib/kofficeui/KoPartSelectDia.cpp
@@ -0,0 +1,93 @@
+/* This file is part of the KDE libraries
+ Copyright (C) 1998 Torben Weis <[email protected]>
+
+ 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 <KoPartSelectDia.h>
+
+#include <kiconloader.h>
+#include <klocale.h>
+#include <qlistview.h>
+
+/****************************************************
+ *
+ * KoPartSelectDia
+ *
+ ****************************************************/
+
+KoPartSelectDia::KoPartSelectDia( QWidget* parent, const char* name ) :
+ KDialogBase( parent, name, TRUE, i18n("Insert Object"), KDialogBase::Ok | KDialogBase::Cancel )
+{
+ listview = new QListView( this );
+ listview->addColumn( i18n( "Object" ) );
+ listview->addColumn( i18n( "Comment" ) );
+ listview->setAllColumnsShowFocus( TRUE );
+ listview->setShowSortIndicator( TRUE );
+ setMainWidget( listview );
+ connect( listview, SIGNAL( doubleClicked( QListViewItem * ) ),
+ this, SLOT( slotOk() ) );
+ connect( listview, SIGNAL( selectionChanged( QListViewItem * ) ),
+ this, SLOT( selectionChanged( QListViewItem * ) ) );
+
+ // Query for documents
+ m_lstEntries = KoDocumentEntry::query();
+ QValueList<KoDocumentEntry>::Iterator it = m_lstEntries.begin();
+ for( ; it != m_lstEntries.end(); ++it ) {
+ KService::Ptr serv = (*it).service();
+ if (!serv->genericName().isEmpty()) {
+ QListViewItem *item = new QListViewItem( listview, serv->name(), serv->genericName() );
+ item->setPixmap( 0, SmallIcon( serv->icon() ) );
+ }
+ }
+
+ selectionChanged( 0 );
+ setFocus();
+ resize( listview->sizeHint().width() + 20, 300 );
+}
+
+void KoPartSelectDia::selectionChanged( QListViewItem *item )
+{
+ enableButtonOK( item != 0 );
+}
+
+KoDocumentEntry KoPartSelectDia::entry()
+{
+ if ( listview->currentItem() ) {
+ QValueList<KoDocumentEntry>::Iterator it = m_lstEntries.begin();
+ for ( ; it != m_lstEntries.end(); ++it ) {
+ if ( ( *it ).service()->name() == listview->currentItem()->text( 0 ) )
+ return *it;
+ }
+ }
+ return KoDocumentEntry();
+}
+
+KoDocumentEntry KoPartSelectDia::selectPart( QWidget *parent )
+{
+ KoDocumentEntry e;
+
+ KoPartSelectDia *dlg = new KoPartSelectDia( parent, "PartSelect" );
+ dlg->setFocus();
+ if (dlg->exec() == QDialog::Accepted)
+ e = dlg->entry();
+
+ delete dlg;
+
+ return e;
+}
+
+#include <KoPartSelectDia.moc>