Public Member Functions
GroupWidget Class Reference

Brief description of class still missing. More...

#include <GroupWidget.h>

List of all members.

Public Member Functions

void expandAll ()
 GroupWidget (QWidget *parent=0)
void setMode (GroupView::Mode m)
void setSignalWindow (GeopsyMainWindow *sw)
 ~GroupWidget ()

Detailed Description

Brief description of class still missing.

Full description of class still missing


Constructor & Destructor Documentation

GroupWidget::GroupWidget ( QWidget *  parent = 0)

Description of constructor still missing

References GroupView::Browse, expandAll(), setMode(), and TRACE.

  : QWidget(parent)
{
  TRACE;
  setupUi(this);
  expandAll();

  // Tooltips to be eventually displayed by re-implementing the standard item model behind QComboBox
  //browseAction->setToolTip(tr("The normal mode to drag and drop signals to viewers (tables, graphics,...)."));
  //renameAction->setToolTip(tr("To rename groups directly inside the tree view."));
  //sortAction->setToolTip(tr("Re-organise groups with internal drag and drops."));

  findReplace->setHistoryBaseName("GroupWidgetFind");
  selectEdit->addItems(Settings::getHistory("GroupWidgetSelect"));

  setMode(GroupView::Browse);
}

Description of destructor still missing

References TRACE.

{
  TRACE;
}

Member Function Documentation

References TRACE.

Referenced by GroupWidget(), and GeopsyMainWindow::openDB().

{
  TRACE;
  groupView->expandToDepth(0);
}

References GroupView::Browse, GroupView::Rename, GroupView::Sort, and TRACE.

Referenced by GroupWidget().

{
  TRACE;
  switch(m) {
  case GroupView::Browse:
    findReplace->hide();
    break;
  case GroupView::Rename:
    findReplace->show();
    break;
  case GroupView::Sort:
    findReplace->hide();
    break;
  }
  groupView->setMode(m);
}

References TRACE.

Referenced by GeopsyMainWindow::setToolFactory().

{
  TRACE;
  groupView->setSignalWindow(sw);
}

The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines