Rivendellaudio/lib/rdlist_groups.cpp
Fred Gleason 8ca15c773d 2019-10-01 Fred Gleason <fredg@paravelsystems.com>
* Refactored dialogs in the convenience library to use the
	'RDDialog' and 'RDWidget' base classes.
2019-10-01 15:10:29 -04:00

152 lines
3.8 KiB
C++

// rdlist_groups.cpp
//
// A widget to select a Rivendell Group.
//
// (C) Copyright 2002-2019 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
//
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#include "rddb.h"
#include "rdescape_string.h"
#include "rdlist_groups.h"
RDListGroups::RDListGroups(QString *groupname,const QString &username,
QWidget *parent)
: RDDialog(parent)
{
//
// Fix the Window Size
//
setMinimumSize(sizeHint());
setMaximumSize(sizeHint());
group_name=groupname;
setWindowTitle(tr("Select Group"));
//
// Cart List
//
group_group_list=new Q3ListView(this,"group_group_list");
group_group_list->setSelectionMode(Q3ListView::Single);
group_group_list->setGeometry(10,10,
sizeHint().width()-20,sizeHint().height()-80);
group_group_list->setAllColumnsShowFocus(true);
group_group_list->setItemMargin(5);
connect(group_group_list,
SIGNAL(doubleClicked(Q3ListViewItem *,const QPoint &,int)),
this,
SLOT(doubleClickedData(Q3ListViewItem *,const QPoint &,int)));
group_group_list->addColumn(tr("NAME"));
group_group_list->setColumnAlignment(0,Qt::AlignHCenter);
group_group_list->addColumn(tr("DESCRIPTION"));
group_group_list->setColumnAlignment(1,Qt::AlignLeft);
//
// OK Button
//
QPushButton *button=new QPushButton(tr("&OK"),this,"ok_button");
button->setGeometry(sizeHint().width()-180,sizeHint().height()-60,80,50);
button->setFont(buttonFont());
button->setDefault(true);
connect(button,SIGNAL(clicked()),this,SLOT(okData()));
//
// Cancel Button
//
button=new QPushButton(tr("&Cancel"),this,"cancel_button");
button->setGeometry(sizeHint().width()-90,sizeHint().height()-60,80,50);
button->setFont(buttonFont());
connect(button,SIGNAL(clicked()),this,SLOT(cancelData()));
//
// Populate Data
//
BuildGroupList(username);
}
QSize RDListGroups::sizeHint() const
{
return QSize(400,370);
}
QSizePolicy RDListGroups::sizePolicy() const
{
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
}
void RDListGroups::doubleClickedData(Q3ListViewItem *item,const QPoint &pt,
int col)
{
okData();
}
void RDListGroups::okData()
{
Q3ListViewItem *item=group_group_list->selectedItem();
if(item==NULL) {
return;
}
*group_name=item->text(0);
done(0);
}
void RDListGroups::cancelData()
{
done(-1);
}
void RDListGroups::closeEvent(QCloseEvent *e)
{
cancelData();
}
void RDListGroups::BuildGroupList(const QString &username)
{
QString sql;
RDSqlQuery *q;
Q3ListViewItem *item=NULL;
Q3ListViewItem *cur_item=NULL;
group_group_list->clear();
sql=QString("select ")+
"USER_PERMS.GROUP_NAME,"+ // 00
"GROUPS.DESCRIPTION "+ // 01
"from USER_PERMS left join GROUPS "+
"on USER_PERMS.GROUP_NAME=GROUPS.NAME where "+
"USER_NAME=\""+RDEscapeString(username)+"\"";
q=new RDSqlQuery(sql);
while(q->next()) {
item=new Q3ListViewItem(group_group_list);
item->setText(0,q->value(0).toString());
item->setText(1,q->value(1).toString());
if(q->value(0).toString()==*group_name) {
cur_item=item;
}
}
delete q;
if(cur_item!=NULL) {
group_group_list->setSelected(cur_item,true);
group_group_list->ensureItemVisible(item);
}
}