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.
95 lines
2.8 KiB
95 lines
2.8 KiB
/* This file is part of the KDE project
|
|
Copyright (C) 2004 Cedric Pasteur <cedric.pasteur@free.fr>
|
|
|
|
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 <tqintdict.h>
|
|
#include <tqtoolbutton.h>
|
|
#include <kdialogbase.h>
|
|
|
|
class TQFrame;
|
|
class TQListView;
|
|
class TQListViewItem;
|
|
class KListViewItem;
|
|
class KListView;
|
|
class KListBox;
|
|
class TQListBoxItem;
|
|
|
|
namespace KoProperty {
|
|
class Property;
|
|
class Set;
|
|
class Editor;
|
|
}
|
|
|
|
namespace KFormDesigner {
|
|
|
|
//! A dialog to edit the contents of a listvuew (KListView 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 KListViewItem::setRenameable(). Pixmaps are not yet supported. */
|
|
class KFORMEDITOR_EXPORT EditListViewDialog : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
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;
|
|
KListBox *m_listbox;
|
|
KListView *m_listview;
|
|
TQIntDict<TQToolButton> m_buttons;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|