Changeset 536380
- Timestamp:
- Feb 18, 2010, 11:38:02 AM (16 years ago)
- Children:
- 1614a17, 1aa81a
- Parents:
- b53a7e
- Location:
- molecuilder/src
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Actions/small_actions.hpp
rb53a7e r536380 25 25 }; 26 26 27 27 28 #endif // _SMALL_ACTIONS_HPP -
molecuilder/src/Makefile.am
rb53a7e r536380 20 20 MENUHEADER = Menu/Menu.hpp Menu/TextMenu.hpp Menu/MenuItem.hpp Menu/SubMenuItem.hpp Menu/ActionMenuItem.hpp Menu/SeperatorItem.hpp Menu/DisplayMenuItem.hpp 21 21 22 UISOURCE = ${ACTIONSSOURCE} ${VIEWSOURCE} ${MENUSOURCE} UIElements/UIFactory.cpp UIElements/TextUIFactory.cpp UIElements/MainWindow.cpp UIElements/TextWindow.cpp UIElements/ Dialog.cpp UIElements/TextDialog.cpp23 UIHEADER = ${ACTIONSHEADER} ${VIEWHEADER} ${MENUHEADER} UIElements/UIFactory.hpp UIElements/TextUIFactory.hpp UIElements/MainWindow.hpp UIElements/TextWindow.hpp UIElements/ Dialog.hpp UIElements/TextDialog.hpp22 UISOURCE = ${ACTIONSSOURCE} ${VIEWSOURCE} ${MENUSOURCE} UIElements/UIFactory.cpp UIElements/TextUIFactory.cpp UIElements/MainWindow.cpp UIElements/TextWindow.cpp UIElements/TextStatusIndicator.cpp UIElements/Dialog.cpp UIElements/TextDialog.cpp 23 UIHEADER = ${ACTIONSHEADER} ${VIEWHEADER} ${MENUHEADER} UIElements/UIFactory.hpp UIElements/TextUIFactory.hpp UIElements/MainWindow.hpp UIElements/TextWindow.hpp UIElements/TextStatusIndicator.hpp UIElements/Dialog.hpp UIElements/TextDialog.hpp 24 24 25 25 # all these files are only used for legacy reasons while the transition is in progress -
molecuilder/src/UIElements/TextWindow.cpp
rb53a7e r536380 36 36 #include "Menu/DisplayMenuItem.hpp" 37 37 #include "Menu/SubMenuItem.hpp" 38 #include "UIElements/TextStatusIndicator.hpp" 38 39 #include "Actions/MethodAction.hpp" 39 40 #include "Actions/ErrorAction.hpp" … … 97 98 98 99 editMoleculesMenu->addDefault(returnItem); 100 101 // Add status indicators etc... 102 103 statusIndicator = new TextStatusIndicator(); 99 104 } 100 105 … … 105 110 delete returnFromEditMoleculeAction; 106 111 delete moleculeView; 112 delete statusIndicator; 107 113 delete main_menu; 108 114 } -
molecuilder/src/UIElements/TextWindow.hpp
rb53a7e r536380 15 15 class oldmenu; 16 16 class StringView; 17 class TextStatusIndicator; 17 18 18 19 class TextWindow : public MainWindow … … 31 32 // all views that are contained in the main Menu 32 33 StringView *moleculeView; 34 TextStatusIndicator *statusIndicator; 33 35 34 36 // This class still contains a lot of scattered functionality -
molecuilder/src/builder.cpp
rb53a7e r536380 2160 2160 Action *eraseMoleculeAction = new MethodAction("eraseMoleculeAction",boost::bind(&MoleculeListClass::eraseMolecule,molecules)); 2161 2161 new ActionMenuItem('r',"remove a molecule",editMoleculesMenu,eraseMoleculeAction); 2162 2162 2163 } 2163 2164
Note:
See TracChangeset
for help on using the changeset viewer.