home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / KoPartSelectDia.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-05-30  |  1.9 KB  |  71 lines

  1. /* This file is part of the KDE libraries
  2.     Copyright (C) 1998 Torben Weis <weis@kde.org>
  3.  
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.  
  9.     This library is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.     Library General Public License for more details.
  13.  
  14.     You should have received a copy of the GNU Library General Public License
  15.     along with this library; see the file COPYING.LIB.  If not, write to
  16.     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  17.  * Boston, MA 02110-1301, USA.
  18. */
  19.  
  20. #ifndef DlgPartSelect_included
  21. #define DlgPartSelect_included
  22.  
  23. #include <kdialogbase.h>
  24. #include <KoQueryTrader.h>
  25.  
  26. class QListView;
  27. class QListViewItem;
  28. class QPushButton;
  29.  
  30. /**
  31.  *  This dialog presents the user all available
  32.  *  KOffice components ( KSpread, KWord etc ) with name
  33.  *  and mini icon. The user may select one and
  34.  *  the corresponding KoDocumentEntry is returned.
  35.  */
  36. class KOFFICEUI_EXPORT KoPartSelectDia : public KDialogBase
  37. {
  38.     Q_OBJECT
  39.  
  40. public:
  41.  
  42.     /**
  43.      *  Constructor.
  44.      */
  45.     KoPartSelectDia( QWidget* parent = 0, const char* name = 0 );
  46.  
  47.     /**
  48.      *  Retrieves the result of the part selection.
  49.      *
  50.      *  @return A document entry.
  51.      */
  52.     KoDocumentEntry entry();
  53.  
  54.     /**
  55.      *  Convenience function for using the dialog.
  56.      *
  57.      *  @returns the KoDocumentEntry of the selected KOffice components
  58.      *           or an empty entry.
  59.      */
  60.     static KoDocumentEntry selectPart( QWidget *parent = 0L );
  61.  
  62. private slots:
  63.     void selectionChanged( QListViewItem * );
  64.  
  65. private:
  66.     QValueList<KoDocumentEntry> m_lstEntries;
  67.     QListView *listview;
  68. };
  69.  
  70. #endif
  71.