mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-18 22:22:36 +02:00
* Removed Qt3-style accelerators from rdadmin(1). * Removed Qt3-style accelerators from rdairplay(1). * Removed Qt3-style accelerators from rdcastmanager(1). * Removed Qt3-style accelerators from rdcatch(1). * Removed Qt3-style accelerators from rdlibrary(1). * Removed Qt3-style accelerators from rdlogedit(1). * Removed Qt3-style accelerators from rdlogin(1). * Removed Qt3-style accelerators from rdlogmanager(1). * Removed Qt3-style accelerators from rdselect(1). * Removed Qt3-style accelerators from rddbconfig(8). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
111 lines
2.8 KiB
C++
111 lines
2.8 KiB
C++
// list_grids.cpp
|
|
//
|
|
// List Rivendell Log Grids
|
|
//
|
|
// (C) Copyright 2002-2021 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 "edit_grid.h"
|
|
#include "globals.h"
|
|
#include "list_grids.h"
|
|
|
|
ListGrids::ListGrids(QWidget *parent)
|
|
: RDDialog(parent)
|
|
{
|
|
setWindowTitle("RDLogManager - "+tr("Log Grids"));
|
|
|
|
//
|
|
// Fix the Window Size
|
|
//
|
|
setMinimumSize(sizeHint());
|
|
setMaximumSize(sizeHint());
|
|
|
|
//
|
|
// Grids List
|
|
//
|
|
edit_grids_view=new RDTableView(this);
|
|
edit_grids_view->
|
|
setGeometry(10,10,sizeHint().width()-20,sizeHint().height()-80);
|
|
edit_grids_model=new RDServiceListModel(false,this);
|
|
edit_grids_model->setFont(font());
|
|
edit_grids_model->setPalette(palette());
|
|
edit_grids_view->setModel(edit_grids_model);
|
|
for(int i=2;i<edit_grids_model->columnCount();i++) {
|
|
edit_grids_view->hideColumn(i);
|
|
}
|
|
connect(edit_grids_view,SIGNAL(doubleClicked(const QModelIndex &)),
|
|
this,SLOT(doubleClickedData(const QModelIndex &)));
|
|
connect(edit_grids_model,SIGNAL(modelReset()),
|
|
edit_grids_view,SLOT(resizeColumnsToContents()));
|
|
edit_grids_view->resizeColumnsToContents();
|
|
|
|
//
|
|
// Edit Button
|
|
//
|
|
QPushButton *button=new QPushButton(this);
|
|
button->setGeometry(10,sizeHint().height()-60,80,50);
|
|
button->setFont(buttonFont());
|
|
button->setText(tr("Edit"));
|
|
connect(button,SIGNAL(clicked()),this,SLOT(editData()));
|
|
|
|
//
|
|
// Close Button
|
|
//
|
|
button=new QPushButton(this);
|
|
button->setGeometry(sizeHint().width()-90,sizeHint().height()-60,80,50);
|
|
button->setDefault(true);
|
|
button->setFont(buttonFont());
|
|
button->setText(tr("Close"));
|
|
connect(button,SIGNAL(clicked()),this,SLOT(closeData()));
|
|
}
|
|
|
|
|
|
QSize ListGrids::sizeHint() const
|
|
{
|
|
return QSize(400,300);
|
|
}
|
|
|
|
|
|
QSizePolicy ListGrids::sizePolicy() const
|
|
{
|
|
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
|
}
|
|
|
|
|
|
void ListGrids::editData()
|
|
{
|
|
QModelIndexList rows=edit_grids_view->selectionModel()->selectedRows();
|
|
|
|
if(rows.size()!=1) {
|
|
return;
|
|
}
|
|
EditGrid *d=new EditGrid(edit_grids_model->serviceName(rows.first()),this);
|
|
d->exec();
|
|
delete d;
|
|
}
|
|
|
|
|
|
void ListGrids::doubleClickedData(const QModelIndex &index)
|
|
{
|
|
editData();
|
|
}
|
|
|
|
|
|
void ListGrids::closeData()
|
|
{
|
|
done(true);
|
|
}
|