mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-17 12:40:35 +01:00
Add an diagramselection widget
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2132 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
111
sources/ui/diagramselection.cpp
Normal file
111
sources/ui/diagramselection.cpp
Normal file
@@ -0,0 +1,111 @@
|
||||
/*
|
||||
Copyright 2006-2013 The QElectroTech Team
|
||||
This file is part of QElectroTech.
|
||||
|
||||
QElectroTech 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.
|
||||
|
||||
QElectroTech 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 QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "diagramselection.h"
|
||||
#include "ui_diagramselection.h"
|
||||
|
||||
diagramselection::diagramselection(QETProject *prj, QWidget *parent) :
|
||||
QWidget(parent),
|
||||
ui(new Ui::diagramselection)
|
||||
{
|
||||
ui -> setupUi(this);
|
||||
prj_ = prj;
|
||||
// list all diagrams presents in project
|
||||
list_diagram_ = prj_ -> diagrams();
|
||||
|
||||
ui -> label_prj -> setText( tr("Projet : ") + prj_ -> title() );
|
||||
load_TableDiagram();
|
||||
}
|
||||
|
||||
diagramselection::~diagramselection() {
|
||||
delete ui;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief load all Diagrams of project in table
|
||||
*/
|
||||
void diagramselection::load_TableDiagram() {
|
||||
// Clear all items
|
||||
ui -> tableDiagram -> clear();
|
||||
for (int i=ui -> tableDiagram -> rowCount()-1; i >= 0; --i) {
|
||||
ui -> tableDiagram->removeRow(i);
|
||||
}
|
||||
for (int i=ui -> tableDiagram -> columnCount()-1; i>=0; --i) {
|
||||
ui -> tableDiagram->removeColumn(i);
|
||||
}
|
||||
|
||||
// Set the setting of table
|
||||
ui -> tableDiagram -> setColumnCount(2);
|
||||
ui -> tableDiagram -> setSelectionBehavior (QAbstractItemView::SelectRows);
|
||||
ui -> tableDiagram -> setSelectionMode (QAbstractItemView::SingleSelection);
|
||||
ui -> tableDiagram -> setEditTriggers (QAbstractItemView::NoEditTriggers);
|
||||
QStringList titles;
|
||||
titles.clear();
|
||||
titles << tr("Nom") << tr("S\351lection");
|
||||
ui-> tableDiagram -> setHorizontalHeaderLabels( titles );
|
||||
|
||||
// List Diagrams
|
||||
for(int i=0,j=0; i<list_diagram_.count(); i++,j++){
|
||||
QTableWidgetItem *item_Name = new QTableWidgetItem();
|
||||
QTableWidgetItem *item_State = new QTableWidgetItem();
|
||||
|
||||
item_Name -> setData(Qt::DisplayRole, list_diagram_.at(i) -> title() );
|
||||
item_State -> setData(Qt::CheckStateRole, Qt::Checked);
|
||||
|
||||
ui -> tableDiagram -> setRowCount(j+1);
|
||||
ui -> tableDiagram -> setItem(j, 0, item_Name);
|
||||
ui -> tableDiagram -> setItem(j, 1, item_State);
|
||||
}
|
||||
ui -> tableDiagram -> resizeColumnsToContents();
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief get list of Diagrams is selected
|
||||
* @return this list of Diagrams
|
||||
*/
|
||||
QList<Diagram *> diagramselection::list_of_DiagramSelected() {
|
||||
QList<Diagram *> listDiag;
|
||||
for(int i=0; i<ui -> tableDiagram -> rowCount();i++){
|
||||
if(ui -> tableDiagram -> item(i, 1)->checkState()){
|
||||
listDiag.push_back( list_diagram_[i] );
|
||||
}
|
||||
}
|
||||
|
||||
return listDiag;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief contextMenuRequested
|
||||
* @param pos
|
||||
*/
|
||||
void diagramselection::on_tableDiagram_customContextMenuRequested(const QPoint &pos){
|
||||
QMenu menu(this);
|
||||
QAction *desl = menu.addAction( tr("D\351s\351lectionner tout") );
|
||||
QAction *sel = menu.addAction(QIcon(":/ico/16x16/dialog-ok.png"), tr("S\351lectionner tout") );
|
||||
|
||||
// Exec Menu
|
||||
QAction *ret = menu.exec(ui -> tableDiagram -> viewport() -> mapToGlobal(pos));
|
||||
if (ret == desl) {
|
||||
for(int i=0; i<ui -> tableDiagram -> rowCount();i++)
|
||||
ui -> tableDiagram -> item(i, 1)->setCheckState(Qt::Unchecked);
|
||||
}
|
||||
else{
|
||||
for(int i=0; i<ui -> tableDiagram -> rowCount();i++)
|
||||
ui -> tableDiagram -> item(i, 1)->setCheckState(Qt::Checked);
|
||||
}
|
||||
}
|
||||
|
||||
51
sources/ui/diagramselection.h
Normal file
51
sources/ui/diagramselection.h
Normal file
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
Copyright 2006-2013 The QElectroTech Team
|
||||
This file is part of QElectroTech.
|
||||
|
||||
QElectroTech 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.
|
||||
|
||||
QElectroTech 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 QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef DIAGRAMSELECTION_H
|
||||
#define DIAGRAMSELECTION_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
#include "diagram.h"
|
||||
#include "qetproject.h"
|
||||
|
||||
namespace Ui {
|
||||
class diagramselection;
|
||||
}
|
||||
|
||||
class diagramselection : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit diagramselection(QETProject *prj, QWidget *parent = 0);
|
||||
~diagramselection();
|
||||
|
||||
QList<Diagram *> list_of_DiagramSelected();
|
||||
|
||||
private slots:
|
||||
void on_tableDiagram_customContextMenuRequested(const QPoint &pos);
|
||||
|
||||
private:
|
||||
Ui::diagramselection *ui;
|
||||
QETProject *prj_;
|
||||
QList<Diagram *> list_diagram_;
|
||||
|
||||
void load_TableDiagram();
|
||||
};
|
||||
|
||||
#endif // DIAGRAMSELECTION_H
|
||||
42
sources/ui/diagramselection.ui
Normal file
42
sources/ui/diagramselection.ui
Normal file
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>diagramselection</class>
|
||||
<widget class="QWidget" name="diagramselection">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>400</width>
|
||||
<height>300</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Form</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<item>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<widget class="QLabel" name="label_prj">
|
||||
<property name="text">
|
||||
<string>TextLabel</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QTableWidget" name="tableDiagram">
|
||||
<property name="contextMenuPolicy">
|
||||
<enum>Qt::CustomContextMenu</enum>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::StyledPanel</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
||||
Reference in New Issue
Block a user