/* This file is part of the KDE project Copyright (C) 2004 Cedric Pasteur 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. */ #ifndef EDITLISTVIEW_DIALOG_H #define EDITLISTVIEW_DIALOG_H #include #include #include class TQFrame; class TQListView; class TQListViewItem; class TDEListViewItem; class TDEListView; class TDEListBox; class TQListBoxItem; namespace KoProperty { class Property; class Set; class Editor; } namespace KFormDesigner { //! A dialog to edit the contents of a listvuew (TDEListView or TQListView) /*! The dialog contains two pages, one to edit columns and one to edit ist items. KoProperty::Editor is used in columns to edit column properties (there are two properties not supported by TQt Designer: 'width' and 'resizable'). The user can enter list contents inside the list using TDEListViewItem::setRenameable(). Pixmaps are not yet supported. */ class KFORMEDITOR_EXPORT EditListViewDialog : public KDialogBase { TQ_OBJECT public: EditListViewDialog(TQWidget *parent); ~EditListViewDialog() {} int exec(TQListView *listview); public slots: // Columns page void updateItemProperties(TQListBoxItem*); void newItem(); void removeItem(); void MoveItemUp(); void MoveItemDown(); void changeProperty(KoProperty::Set& set, KoProperty::Property& property); // Contents page void updateButtons(TQListViewItem*); void newRow(); void newChildRow(); void removeRow(); void MoveRowUp(); void MoveRowDown(); protected: /*! Loads all child items of \a item into \a listview (may be different from the \a items 's listview) as child of \a parent item. This is used to copy the contents of a listview into another listview. */ void loadChildNodes(TQListView *listview, TQListViewItem *item, TQListViewItem *parent); protected: enum { BNewRow = 10, BNewChild, BRemRow, BRowUp, BRowDown , BColAdd = 20, BColRem, BColUp, BColDown }; KoProperty::Editor *m_editor; KoProperty::Set *m_propSet; TQFrame *m_contents, *m_column; TDEListBox *m_listbox; TDEListView *m_listview; TQIntDict m_buttons; }; } #endif