![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /********************************************************************* 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: formationTabBar.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 *********************************************************************/ 00008 00011 00012 #ifndef DTFORMATIONTABBAR_H_ 00013 #define DTFORMATIONTABBAR_H_ 00014 00015 #include "entityEditorImpl/entityEditorImplDefines.h" 00016 #include <QtGui/QTabBar> 00017 00018 class DtFormationTabBarStyle; 00019 class DtUiAggregateFormationEditor; 00020 00023 class DT_DLL_entityeditorimpl DtFormationTabBar : public QTabBar 00024 { 00025 Q_OBJECT 00026 00027 public: 00028 DtFormationTabBar(QWidget* parent); 00029 00030 virtual ~DtFormationTabBar(); 00031 00032 void setParent(DtUiAggregateFormationEditor* p) { myParent = p; }; 00033 00035 virtual bool isModified(const QString&) const; 00036 00037 protected: 00038 DtFormationTabBarStyle* myStyle; 00039 DtUiAggregateFormationEditor* myParent; 00040 }; 00041 00042 #endif