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
|
/* This file is (c) 2008-2010 Konstantin Isakov <ikm@users.berlios.de>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#include "groups.hh"
#include "instances.hh"
#include <QMessageBox>
#include <QInputDialog>
using std::vector;
Groups::Groups( QWidget * parent,
vector< sptr< Dictionary::Class > > const & dicts_,
Config::Groups const & groups_,
Config::Group const & order ): QWidget( parent ),
dicts( dicts_ ), groups( groups_ )
{
ui.setupUi( this );
// Populate the dictionaries' list
ui.dictionaries->setAsSource();
ui.dictionaries->populate( Instances::Group( order, dicts ).dictionaries,
dicts );
// Populate groups' widget
ui.groups->populate( groups, dicts );
connect( ui.addGroup, SIGNAL( clicked() ),
this, SLOT( addNew() ) );
connect( ui.renameGroup, SIGNAL( clicked() ),
this, SLOT( renameCurrent() ) );
connect( ui.removeGroup, SIGNAL( clicked() ),
this, SLOT( removeCurrent() ) );
connect( ui.removeAllGroups, SIGNAL( clicked() ),
this, SLOT( removeAll() ) );
connect( ui.addDictsToGroup, SIGNAL( clicked() ),
this, SLOT( addToGroup() ) );
connect( ui.dictionaries, SIGNAL( doubleClicked(const QModelIndex &) ),
this, SLOT( addToGroup() ) );
connect( ui.removeDictsFromGroup, SIGNAL( clicked() ),
this, SLOT( removeFromGroup() ) );
countChanged();
}
void Groups::editGroup( unsigned id )
{
for( unsigned x = 0; x < groups.size(); ++x )
{
if ( groups[ x ].id == id )
{
ui.groups->setCurrentIndex( x );
ui.groups->currentWidget()->setFocus();
break;
}
}
}
void Groups::updateDictionaryOrder( Config::Group const & order )
{
// Make sure it differs from what we have
Instances::Group newOrder( order, dicts );
if ( ui.dictionaries->getCurrentDictionaries() != newOrder.dictionaries )
{
// Repopulate
ui.dictionaries->populate( Instances::Group( order, dicts ).dictionaries,
dicts );
}
}
Config::Groups Groups::getGroups() const
{
return ui.groups->makeGroups();
}
void Groups::countChanged()
{
bool en = ui.groups->count();
ui.renameGroup->setEnabled( en );
ui.removeGroup->setEnabled( en );
ui.removeAllGroups->setEnabled( en );
}
void Groups::addNew()
{
bool ok;
QString name = QInputDialog::getText( this, tr( "Add group" ),
tr("Give a name for the new group:"), QLineEdit::Normal,
"", &ok );
if ( ok )
{
ui.groups->addNewGroup( name );
countChanged();
}
}
void Groups::renameCurrent()
{
int current = ui.groups->currentIndex();
if ( current < 0 )
return;
bool ok;
QString name = QInputDialog::getText( this, tr("Rename group"),
tr("Give a new name for the group:"), QLineEdit::Normal,
ui.groups->getCurrentGroupName(), &ok );
if ( ok )
ui.groups->renameCurrentGroup( name );
}
void Groups::removeCurrent()
{
int current = ui.groups->currentIndex();
if ( current >= 0 && QMessageBox::question( this, tr( "Remove group" ),
tr( "Are you sure you want to remove the group <b>%1</b>?" ).arg( ui.groups->getCurrentGroupName() ),
QMessageBox::Yes, QMessageBox::Cancel ) == QMessageBox::Yes )
{
ui.groups->removeCurrentGroup();
countChanged();
}
}
void Groups::removeAll()
{
int current = ui.groups->currentIndex();
if ( current >= 0 && QMessageBox::question( this, tr( "Remove all groups" ),
tr( "Are you sure you want to remove all the groups?" ),
QMessageBox::Yes, QMessageBox::Cancel ) == QMessageBox::Yes )
{
ui.groups->removeAllGroups();
countChanged();
}
}
void Groups::addToGroup()
{
int current = ui.groups->currentIndex();
if ( current >= 0 )
{
ui.groups->getCurrentModel()->addSelectedUniqueFromModel( ui.dictionaries->selectionModel() );
}
}
void Groups::removeFromGroup()
{
int current = ui.groups->currentIndex();
if ( current >= 0 )
{
ui.groups->getCurrentModel()->removeSelectedRows( ui.groups->getCurrentSelectionModel() );
}
}
|