[qet] [2132] Add an diagramselection widget |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 2132
Author: cfdev
Date: 2013-04-30 12:25:05 +0200 (Tue, 30 Apr 2013)
Log Message:
-----------
Add an diagramselection widget
Added Paths:
-----------
trunk/sources/ui/diagramselection.cpp
trunk/sources/ui/diagramselection.h
trunk/sources/ui/diagramselection.ui
Added: trunk/sources/ui/diagramselection.cpp
===================================================================
--- trunk/sources/ui/diagramselection.cpp (rev 0)
+++ trunk/sources/ui/diagramselection.cpp 2013-04-30 10:25:05 UTC (rev 2132)
@@ -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);
+ }
+}
+
Added: trunk/sources/ui/diagramselection.h
===================================================================
--- trunk/sources/ui/diagramselection.h (rev 0)
+++ trunk/sources/ui/diagramselection.h 2013-04-30 10:25:05 UTC (rev 2132)
@@ -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
Added: trunk/sources/ui/diagramselection.ui
===================================================================
--- trunk/sources/ui/diagramselection.ui (rev 0)
+++ trunk/sources/ui/diagramselection.ui 2013-04-30 10:25:05 UTC (rev 2132)
@@ -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>