#include <visualisierung.h>
 | 
| 
Graph  | graph | 
|   | 
| 
ForceBundler  | forceBundler | 
|   | 
| 
QWidget *  | mainWidget | 
|   | 
| 
RenderWidget *  | renderWidget | 
|   | 
| 
QProgressBar *  | progressBar | 
|   | 
| 
QWidget *  | toolBoxWidget | 
|   | 
| 
QCheckBox *  | wrapCheckBox | 
|   | 
| 
QCheckBox *  | backgroundCheckBox | 
|   | 
| 
QCheckBox *  | nodesCheckBox | 
|   | 
| 
QCheckBox *  | descriptionsCheckBox | 
|   | 
| 
QCheckBox *  | edgesCheckBox | 
|   | 
| 
QCheckBox *  | bundleCheckBox | 
|   | 
| 
QSpinBox *  | cyclesSpinBox | 
|   | 
| 
QSpinBox *  | iterationsSpinBox | 
|   | 
| 
QDoubleSpinBox *  | springSpinBox | 
|   | 
| 
QComboBox *  | datasetComboBox | 
|   | 
| 
QPushButton *  | bundleButton | 
|   | 
| 
bool  | hasBackgroundImage | 
|   | 
| 
bool  | wrapPossible | 
|   | 
| 
bool  | bundle | 
|   | 
| 
int  | cycles | 
|   | 
| 
int  | iterations | 
|   | 
| 
double  | springConstant | 
|   | 
Main application window, inherits QMainWindow Contains all user interface elements as well as the Graph calculation and bundling class 
 
      
        
          | Visualisierung::Visualisierung  | 
          ( | 
           | ) | 
           | 
        
      
 
Constructor for the application's main window 
 
 
      
        
          | Visualisierung::~Visualisierung  | 
          ( | 
           | ) | 
           | 
        
      
 
Destructor for the application's main window 
 
 
  
  
      
        
          | void Visualisierung::bundleEdges  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
protectedslot   | 
  
 
The bundle edges slot is called when the bundle button in the user interface is pressed or when some other function calls this slot. 
 
 
  
  
      
        
          | void Visualisierung::initInterface  | 
          ( | 
          void  | 
           | ) | 
           | 
         
       
   | 
  
protected   | 
  
 
Initializes the application's user interface components. 
 
 
  
  
      
        
          | void Visualisierung::initRenderWidget  | 
          ( | 
          void  | 
           | ) | 
           | 
         
       
   | 
  
protected   | 
  
 
Initializes the render widget and defines the initial drawing parameters. 
 
 
  
  
      
        
          | void Visualisierung::initToolbox  | 
          ( | 
          void  | 
           | ) | 
           | 
         
       
   | 
  
protected   | 
  
 
Initializes the interface's toolbox items and sets their initial values. 
 
 
  
  
      
        
          | void Visualisierung::setCycles  | 
          ( | 
          int  | 
          c | ) | 
           | 
         
       
   | 
  
inlineprotectedslot   | 
  
 
Updates the cycles member variable to a new integer value. 
- Parameters
 - 
  
    | c | is the new integer value.  | 
  
   
 
 
  
  
      
        
          | void Visualisierung::setIterations  | 
          ( | 
          int  | 
          i | ) | 
           | 
         
       
   | 
  
inlineprotectedslot   | 
  
 
Updates the iterations member variable to a new integer value. 
- Parameters
 - 
  
    | i | is the new integer value.  | 
  
   
 
 
  
  
      
        
          | void Visualisierung::setSpringConstant  | 
          ( | 
          double  | 
          s | ) | 
           | 
         
       
   | 
  
inlineprotectedslot   | 
  
 
Updates the spring constant member variable to a new integer value. 
- Parameters
 - 
  
    | s | is the new double value.  | 
  
   
 
 
  
  
      
        
          | void Visualisierung::updateProgress  | 
          ( | 
          int  | 
          p | ) | 
           | 
         
       
   | 
  
inlineprotectedslot   | 
  
 
Updates the progress on the progressbar to a new integer value. 
- Parameters
 - 
  
    | p | is the new integer value.  | 
  
   
 
 
  
  
      
        
          | void Visualisierung::updateStatus  | 
          ( | 
          QString  | 
          s | ) | 
           | 
         
       
   | 
  
inlineprotectedslot   | 
  
 
Updates the text displayed in the status bar. This slot is called from many different places in the application. 
- Parameters
 - 
  
    | s | is the new status bar text.  | 
  
   
 
 
  
  
      
        
          | void Visualisierung::updateToolbox  | 
          ( | 
          void  | 
           | ) | 
           | 
         
       
   | 
  
protected   | 
  
 
An update for the toolbox interface is called whenever some graph properties are changed and the toolbox needs to be refreshed accordingly. 
 
 
  
  
      
        
          | void Visualisierung::useDataSet  | 
          ( | 
          QString  | 
          name | ) | 
           | 
         
       
   | 
  
protectedslot   | 
  
 
useDataset is called whenever a new dataset is selected from the corresponding ComboBox. 
- Parameters
 - 
  
    | name | is the dataset's name specified as a string.  | 
  
   
 
 
The documentation for this class was generated from the following files: