File: pStringListEditor.cpp

package info (click to toggle)
monkeystudio 1.9.0.4%2Bgit20161218-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 41,500 kB
  • ctags: 22,118
  • sloc: cpp: 144,671; ansic: 33,969; python: 2,922; makefile: 127; sh: 122; php: 73; cs: 69
file content (178 lines) | stat: -rw-r--r-- 5,741 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/****************************************************************************
    Copyright (C) 2005 - 2011  Filipe AZEVEDO & The Monkey Studio Team
    http://monkeystudio.org licensing under the GNU GPL.

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program 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 General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
****************************************************************************/
#include "pStringListEditor.h"

#include <QVBoxLayout>
#include <QToolBar>
#include <QAction>
#include <QListWidget>

/*!
    \details Create a new pStringListEditor instance
    \param parent The parent widget
    \param title The editor title
*/
pStringListEditor::pStringListEditor( QWidget* parent, const QString& title )
    : QGroupBox( title, parent )
{
    // create layout
    mLayout = new QVBoxLayout( this );
    mLayout->setMargin( 5 );
    mLayout->setSpacing( 3 );
    
    // create toolbar
    QToolBar* tb = new QToolBar;
    tb->layout()->setMargin( 0 );
    tb->layout()->setSpacing( 0 );
    tb->setIconSize( QSize( 16, 16 ) );
    mLayout->addWidget( tb );

    
    // create listwidget
    mList = new QListWidget;
    mList->setMinimumHeight( 40 );
    mList->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
    mLayout->addWidget( mList );
    
    // create actions
    QAction* aAdd = new QAction( QIcon( ":/listeditor/icons/listeditor/add.png" ), tr( "Add Item" ), tb );
    QAction* aRemove = new QAction( QIcon( ":/listeditor/icons/listeditor/remove.png" ), tr( "Remove Item" ), tb );
    QAction* aClear = new QAction( QIcon( ":/listeditor/icons/listeditor/clear.png" ), tr( "Clear Items" ), tb );
    QAction* aUp = new QAction( QIcon( ":/listeditor/icons/listeditor/up.png" ), tr( "Move Item Up" ), tb );
    QAction* aDown = new QAction( QIcon( ":/listeditor/icons/listeditor/down.png" ), tr( "Move Item Down" ), tb );
    QAction* aEdit = new QAction( QIcon( ":/listeditor/icons/listeditor/edit.png" ), tr( "Edit Item" ), tb );
    
    // add actions to toolbar
    tb->addAction( aAdd );
    tb->addAction( aRemove );
    tb->addAction( aClear );
    tb->addAction( aUp );
    tb->addAction( aDown );
    tb->addAction( aEdit );
    
    // connections
    connect( aAdd, SIGNAL( triggered() ), this, SLOT( onAddItem() ) );
    connect( aRemove, SIGNAL( triggered() ), this, SLOT( onRemoveItem() ) );
    connect( aClear, SIGNAL( triggered() ), this, SLOT( onClearItem() ) );
    connect( aUp, SIGNAL( triggered() ), this, SLOT( onMoveUpItem() ) );
    connect( aDown, SIGNAL( triggered() ), this, SLOT( onMoveDownItem() ) );
    connect( aEdit, SIGNAL( triggered() ), this, SLOT( onEditItem() ) );
    connect( mList, SIGNAL( itemChanged( QListWidgetItem* ) ), this, SIGNAL( edited() ) );
    connect( this, SIGNAL( edited() ), this, SLOT( onEdited() ) );
}

QVBoxLayout* pStringListEditor::verticalLayout() const
{
    return mLayout;
}

/*!
    \details Set the editor values
    \param values The string list to set as values
*/
void pStringListEditor::setValues( const QStringList& values )
{
    mList->clear();
    foreach ( QString value, values )
    {
        QListWidgetItem* it = new QListWidgetItem( value, mList );
        it->setFlags( it->flags() | Qt::ItemIsEditable );
        mList->setCurrentItem( it );
        mList->scrollToItem( it );
    }
    emit edited();
}

/*!
    \details Return the editor QStringList values
*/
QStringList pStringListEditor::values() const
{
    QStringList values;
    foreach ( QListWidgetItem* it, mList->findItems( "*", Qt::MatchWildcard | Qt::MatchRecursive ) )
        values << it->text();
    return values;
}

void pStringListEditor::onEdited()
{
    for ( int i = 0; i < mList->count(); i++ )
    {
        QListWidgetItem* item = mList->item( i );
        item->setToolTip( item->text() );
    }
}

void pStringListEditor::onAddItem()
{
    QListWidgetItem* it = new QListWidgetItem( tr( "New item" ), mList );
    it->setFlags( it->flags() | Qt::ItemIsEditable );
    mList->setCurrentItem( it );
    mList->scrollToItem( it );
    mList->editItem( it );
    emit edited();
}

void pStringListEditor::onRemoveItem()
{
    if ( QListWidgetItem* it = mList->selectedItems().value( 0 ) )
    {
        delete it;
        emit edited();
    }
}

void pStringListEditor::onClearItem()
{
    if ( mList->count() )
    {
        mList->clear();
        emit edited();
    }
}

void pStringListEditor::onMoveUpItem()
{
    if ( QListWidgetItem* it = mList->selectedItems().value( 0 ) )
    {
        int i = mList->row( it );
        if ( i != 0 )
            mList->insertItem( i -1, mList->takeItem( i ) );
        mList->setCurrentItem( it );
        emit edited();
    }
}

void pStringListEditor::onMoveDownItem()
{
    if ( QListWidgetItem* it = mList->selectedItems().value( 0 ) )
    {
        int i = mList->row( it );
        if ( i != mList->count() -1 )
            mList->insertItem( i +1, mList->takeItem( i ) );
        mList->setCurrentItem( it );
        emit edited();
    }
}

void pStringListEditor::onEditItem()
{
    if ( QListWidgetItem* it = mList->selectedItems().value( 0 ) )
        mList->editItem( it );
}