-
Augustin Degomme authored
Feature : add an Interval Selection Window, allowing to select a displayable interval on the trace. (Preferences/Interval Selection) Combined with IntervalOfContainers and Serialization, this allows to change the displayed interval and load only the data of the wanted interval, while freeing memory for non displayed zones.
Augustin Degomme authoredFeature : add an Interval Selection Window, allowing to select a displayable interval on the trace. (Preferences/Interval Selection) Combined with IntervalOfContainers and Serialization, this allows to change the displayed interval and load only the data of the wanted interval, while freeing memory for non displayed zones.
Node_select.hpp 5.51 KiB
/*
** This file is part of the ViTE project.
**
** This software is governed by the CeCILL-A license under French law
** and abiding by the rules of distribution of free software. You can
** use, modify and/or redistribute the software under the terms of the
** CeCILL-A license as circulated by CEA, CNRS and INRIA at the following
** URL: "http://www.cecill.info".
**
** As a counterpart to the access to the source code and rights to copy,
** modify and redistribute granted by the license, users are provided
** only with a limited warranty and the software's author, the holder of
** the economic rights, and the successive licensors have only limited
** liability.
**
** In this respect, the user's attention is drawn to the risks associated
** with loading, using, modifying and/or developing or reproducing the
** software by the user in light of its specific status of free software,
** that may mean that it is complicated to manipulate, and that also
** therefore means that it is reserved for developers and experienced
** professionals having in-depth computer knowledge. Users are therefore
** encouraged to load and test the software's suitability as regards
** their requirements in conditions enabling the security of their
** systems and/or data to be ensured and, more generally, to use and
** operate it in the same conditions as regards security.
**
** The fact that you are presently reading this means that you have had
** knowledge of the CeCILL-A license and that you accept its terms.
**
**
** ViTE developers are (for version 0.* to 1.0):
**
** - COULOMB Kevin
** - FAVERGE Mathieu
** - JAZEIX Johnny
** - LAGRASSE Olivier
** - MARCOUEILLE Jule
** - NOISETTE Pascal
** - REDONDY Arthur
** - VUCHENER Clément
**
*/
/*!
*\file Stats_window.hpp
*/
#ifndef NODE_SELECT_HPP
#define NODE_SELECT_HPP
class Node_select;
/* For moc compilation */
#include <string>
#include <map>
#include <list>
/* -- */
#include <QWidget>
#include "ui_node_select.h"
#include "trace/values/Values.hpp"
#include "trace/EntityValue.hpp"
#include "trace/EntityTypes.hpp"
#include "trace/Entitys.hpp"
#include "trace/tree/Interval.hpp"
#include "trace/Trace.hpp"
#include "interface/Interface_graphic.hpp"
class QDomElement;
class QDomDocument;
/* -- */
/*!
* \class Node select
* \brief Class used to select which containers should be displayed
*
*/
class Node_select : public QWidget, protected Ui::node_selector {
Q_OBJECT
private:
std::vector<Container *> _initial_containers;
std::list<Container *> _displayed_containers;
int _number_of_selected_container;
int _screen_width, _screen_height;
std::string _file_viewed;
Trace* _trace;
Interface_graphic *_console;
public:
/*!
* Default constructor
* \param parent The parent widget of the window.
*/
Node_select( Interface_graphic *console, QWidget *parent = 0);
~Node_select();
/*!
* \fn set_initial_container_names()
* \brief Set the names of the containers in the original containers trees, from the trace _root_containers
*/
void set_initial_container_names();
/*!
* \fn set_initial_container_names()
* \brief Set the names of the containers in the displayed containers tree, from the trace _view_root_containers or if empty from _root_containers
*/
void set_displayed_container_names();
/*!
* \fn set_trace(Trace *trace)
* \brief Set the trace parsed (give the container names)
* \param trace The trace.
*/
void set_trace(Trace *trace);
/*!
* \fn get_trace()
* \brief returns the trace
*/
Trace * get_trace();
/*!
* \fn set_filename(std::string filename)
* \brief Set the name of the file trace.
* \param filename The file name.
*/
void set_filename(std::string filename);
/*!
* \fn init_window()
* \brief Initialise the node selection window : set the container names, expand the lists
and clear what could have been here before
*/
void init_window();
/*!
* \fn close_window()
* \brief Properly close the window
*/
void close_window();
private:
/*!
* \fn build_displayed_nodes(std::list<Container *>& displayed_containers)
* \brief build a displayable array of Node from the tree viewed
* \param displayed_containers an empty list of containers to fill
*/
void build_displayed_nodes( std::list<Container *>& displayed_containers);
/*!
* \fn set_container_names_rec()
* \brief recursive method used to build tree views from the trace
*/
void set_container_names_rec(QTreeWidgetItem *current_node, Container *current_container, QFlags<Qt::ItemFlag>, bool load_view);
/*!
* \fn reassign_children_rec()
* \brief recursive method used to build trace view from tree views
*/
void reassign_children_rec(QTreeWidgetItem* item, QFlags<Qt::CheckState> flg);
/*!
* \fn export_children_rec()
* \brief recursive method used to build xml file from tree views
*/
void export_children_rec(QTreeWidgetItem* item, QDomElement& parent, QDomDocument& doc);
/*!
* \brief This functions receives all keyboard events.
* \param event The event triggered by the keyboard event.
*/
void keyPressEvent(QKeyEvent *event);
private slots:
void on_reset_button_clicked();
void on_export_button_clicked();
void on_load_button_clicked();
void on_display_button_clicked();
};
#endif // NODE_SELECT_HPP