const QString& menu, const QString& tip, const int key,
QObject* parent, const bool toggle, QObject* reciever, const char* member )
{
- QtxAction* a = new QtxAction( text, icon, menu, key, parent, 0, toggle );
+ QtxAction* a = new QtxAction( text, icon, menu, key, parent, toggle );
a->setStatusTip( tip );
if ( reciever && member )
QtxMRUAction.h \
QtxResourceMgr.h \
QtxToolBar.h \
+ QtxWorkspace.h \
QtxWorkstack.h
#VSR: not yet migrated to Qt4 files
QtxMRUAction.cxx \
QtxResourceMgr.cxx \
QtxToolBar.cxx \
+ QtxWorkspace.cxx \
QtxWorkstack.cxx
#VSR: not yet migrated to Qt4 files
QtxMainWindow_moc.cxx \
QtxMRUAction_moc.cxx \
QtxToolBar_moc.cxx \
+ QtxWorkspace_moc.cxx \
QtxWorkstack_moc.cxx
#VSR: not yet migrated to Qt4 files
HEADERS += QtxMRUAction.h
HEADERS += QtxResourceMgr.h
HEADERS += QtxToolBar.h
+HEADERS += QtxWorkspace.h
HEADERS += QtxWorkstack.h
#HEADERS += QtxDblSpinBox.h
#HEADERS += QtxDblValidator.h
SOURCES += QtxMRUAction.cxx
SOURCES += QtxResourceMgr.cxx
SOURCES += QtxToolBar.cxx
+SOURCES += QtxWorkspace.cxx
SOURCES += QtxWorkstack.cxx
#SOURCES += QtxDblSpinBox.cxx
#SOURCES += QtxDblValidator.cxx
#include <QWidgetList>
+/*!
+ \class QtxWorkspace
+ \brief A workspace widget which can be used in the MDI application
+ as top-level widget in the application main window.
+
+ Provides methods to tile child windows in horizontal or vertical
+ direction.
+*/
+
/*!
\brief Constructor.
\param parent parent widget
}
/*!
- \brief Performs tile vertical action
+ \brief Tiles child windows vertically.
*/
void QtxWorkspace::tileVertical()
{
}
/*!
- \brief Performs tile horizontal action
+ \brief Tiles child windows horizontally.
*/
void QtxWorkspace::tileHorizontal()
{