6 #include "renderthread.h" 
   20     void useBackgroundColor(QColor color);
 
   22     bool    getBackgroundActive(
void) {
return visibleBackgroundImage;};
 
   23     bool    getNodesVisible(
void) {
return visibleNodes;};
 
   24     bool    getEdgesVisible(
void) {
return visibleEdges;};
 
   25     bool    getDescriptionsVisible(
void) {
return visibleDescriptions;};
 
   26     bool    getWrap(
void) {
return wrap;};
 
   28     void    clearWidget() {clear = 
true; repaint();};
 
   36     void    useBackground(
bool set) {visibleBackgroundImage = set; repaint();};
 
   37     void    drawNodes(
bool draw) {visibleNodes = draw; refresh();};
 
   38     void    drawEdges(
bool draw) {visibleEdges = draw; refresh();};
 
   39     void    showDescriptions(
bool show) {visibleDescriptions = show; refresh();};
 
   40     void    wrapEdges(
bool w) {wrap = w; refresh();};
 
   41     void    bundleEdges(
bool b) {bundle = b;};
 
   44     void setNodeProperties(
double radius, QColor fillColor, QColor lineColor, 
double lineWidth);
 
   54     QString backgroundImagePath;
 
   55     bool    visibleBackgroundImage;
 
   56     QPixmap backgroundImage;
 
   57     QBrush  backgroundSolid;
 
   64     bool visibleDescriptions;
 
   78 #endif // RENDERWIDGET_H 
Definition: renderthread.h:18