[3027f8] | 1 | /*
|
---|
| 2 | * QTMainWindow.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Jan 14, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #include "QTMainWindow.hpp"
|
---|
| 9 |
|
---|
[8f67e2] | 10 | #include<Qt/qapplication.h>
|
---|
[fa27ed] | 11 | #include<Qt/qlabel.h>
|
---|
| 12 | #include<Qt/qstring.h>
|
---|
| 13 | #include<Qt/qmenubar.h>
|
---|
[cef1d7] | 14 | #include<Qt/qsplitter.h>
|
---|
[8f67e2] | 15 |
|
---|
[3027f8] | 16 | #include<iostream>
|
---|
[b2531f] | 17 | #include<map>
|
---|
| 18 |
|
---|
[fa27ed] | 19 | #include<boost/bind.hpp>
|
---|
| 20 |
|
---|
| 21 | #include "atom.hpp"
|
---|
| 22 | #include "molecule.hpp"
|
---|
[952f38] | 23 | #include "Helpers/Verbose.hpp"
|
---|
[b2531f] | 24 | #include "Actions/Action.hpp"
|
---|
| 25 | #include "Actions/ActionRegistry.hpp"
|
---|
| 26 | #include "Actions/MapOfActions.hpp"
|
---|
| 27 | #include "Menu/Menu.hpp"
|
---|
[fa27ed] | 28 | #include "Menu/QT4/QTMenu.hpp"
|
---|
[b2531f] | 29 | #include "Menu/ActionMenuItem.hpp"
|
---|
[63b56a7] | 30 | #include "Views/QT4/QTWorldView.hpp"
|
---|
[cef1d7] | 31 | #include "Views/QT4/GLMoleculeView.hpp"
|
---|
[a77c96] | 32 | #include "Views/QT4/QTMoleculeView.hpp"
|
---|
[326a43b] | 33 | #include "Views/QT4/QTStatusBar.hpp"
|
---|
[992fd7] | 34 | #include "Helpers/MemDebug.hpp"
|
---|
[fa27ed] | 35 |
|
---|
[3027f8] | 36 |
|
---|
| 37 | using namespace std;
|
---|
| 38 |
|
---|
[257c77] | 39 | QTMainWindow::QTMainWindow(QApplication *_theApp) :
|
---|
[8f67e2] | 40 | theApp(_theApp)
|
---|
[fa27ed] | 41 | {
|
---|
[cef1d7] | 42 | QSplitter *splitter1 = new QSplitter (Qt::Horizontal, this );
|
---|
| 43 | QSplitter *splitter2 = new QSplitter (Qt::Vertical, splitter1 );
|
---|
| 44 |
|
---|
[257c77] | 45 | worldDisplay = new QTWorldView(splitter2);
|
---|
[cef1d7] | 46 |
|
---|
[a77c96] | 47 | moleculeDisplay = new QTMoleculeView();
|
---|
[cef1d7] | 48 | molecule3dDisplay = new GLMoleculeView();
|
---|
| 49 |
|
---|
[b2531f] | 50 | MenuBar = menuBar();
|
---|
| 51 |
|
---|
| 52 | std::map <std::string, QTMenu *> NametoTextMenuMap;
|
---|
| 53 | // go through all menus and create them
|
---|
| 54 | QTMenu *Menu = NULL;
|
---|
| 55 | for(std::map<std::string, std::pair<std::string,std::string> >::iterator iter = MapOfActions::getInstance().MenuDescription.begin(); iter != MapOfActions::getInstance().MenuDescription.end(); ++iter) {
|
---|
| 56 | cout << "Creating menu " << iter->first << endl;
|
---|
| 57 | Menu = new QTMenu(iter->first.c_str());
|
---|
| 58 | MenuBar->addMenu(Menu);
|
---|
| 59 | NametoTextMenuMap.insert( pair <std::string, QTMenu *> (iter->first, Menu) );
|
---|
| 60 | //new SubMenuItem(getSuitableShortForm(iter->first),iter->second.first,main_menu,Menu);
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | // populate all actions
|
---|
| 64 | MapOfActions::getInstance().populateActions();
|
---|
| 65 |
|
---|
| 66 | // go through all actions and add them to its menu
|
---|
| 67 | for (std::map <std::string, QTMenu *>::iterator MenuRunner = NametoTextMenuMap.begin(); MenuRunner != NametoTextMenuMap.end(); ++MenuRunner) {
|
---|
| 68 | cout << "Creating Action " << MenuRunner->first << " in menu " << MenuRunner->second << endl;
|
---|
| 69 | populateMenu(MenuRunner->second, MenuRunner->first);
|
---|
| 70 | }
|
---|
[b80021] | 71 |
|
---|
[cef1d7] | 72 | setCentralWidget(splitter1);
|
---|
| 73 | splitter1->addWidget(splitter2);
|
---|
[a77c96] | 74 | splitter1->addWidget(moleculeDisplay);
|
---|
[cef1d7] | 75 | splitter2->addWidget(molecule3dDisplay);
|
---|
[63b56a7] | 76 | splitter2->addWidget(worldDisplay);
|
---|
[cef1d7] | 77 |
|
---|
[326a43b] | 78 | statusBar = new QTStatusBar(this);
|
---|
| 79 | setStatusBar(statusBar);
|
---|
[fa27ed] | 80 |
|
---|
[a77c96] | 81 | connect(worldDisplay,SIGNAL(moleculeSelected(molecule*)),moleculeDisplay,SLOT(moleculeSelected(molecule*)));
|
---|
| 82 | connect(worldDisplay,SIGNAL(moleculeUnSelected(molecule*)),moleculeDisplay,SLOT(moleculeUnSelected(molecule*)));
|
---|
[fa27ed] | 83 | }
|
---|
[3027f8] | 84 |
|
---|
| 85 | QTMainWindow::~QTMainWindow()
|
---|
[992fd7] | 86 | {
|
---|
| 87 | menuBar()->clear();
|
---|
| 88 | delete editMoleculesMenu;
|
---|
| 89 | }
|
---|
[3027f8] | 90 |
|
---|
| 91 | void QTMainWindow::display() {
|
---|
[8f67e2] | 92 | this->show();
|
---|
| 93 | theApp->exec();
|
---|
[3027f8] | 94 | }
|
---|
[b2531f] | 95 |
|
---|
| 96 | char QTMainWindow::getSuitableShortForm(set <char> &ShortcutList, const std::string name) const
|
---|
| 97 | {
|
---|
| 98 | for (std::string::const_iterator CharRunner = name.begin(); CharRunner != name.end(); ++CharRunner) {
|
---|
| 99 | if (ShortcutList.find(*CharRunner) == ShortcutList.end())
|
---|
| 100 | return *CharRunner;
|
---|
| 101 | }
|
---|
| 102 | DoeLog(1) && (eLog() << Verbose(1) << "Could not find a suitable shortform for TextWindow::getSuitableShortForm()." << endl);
|
---|
| 103 | return ((char)(ShortcutList.size() % 10) + '0');
|
---|
| 104 | }
|
---|
| 105 |
|
---|
| 106 | void QTMainWindow::populateMenu(QTMenu* Menu, const std::string &MenuName)
|
---|
| 107 | {
|
---|
| 108 | Action *ActionItem = NULL;
|
---|
| 109 | set <char> ShortcutList;
|
---|
| 110 | // through all actions for this menu
|
---|
| 111 | std::pair < std::multimap <std::string, std::string>::iterator, std::multimap <std::string, std::string>::iterator > MenuActions = MapOfActions::getInstance().MenuContainsActionMap.equal_range(MenuName);
|
---|
| 112 | for (std::multimap <std::string, std::string>::const_iterator MenuRunner = MenuActions.first; MenuRunner != MenuActions.second; ++MenuRunner) {
|
---|
| 113 | cout << " Adding " << MenuRunner->second << " to submenu " << MenuName << endl;
|
---|
| 114 | ActionItem = ActionRegistry::getInstance().getActionByName(MenuRunner->second);
|
---|
| 115 | new ActionMenuItem(getSuitableShortForm(ShortcutList, MenuRunner->second),MapOfActions::getInstance().getDescription(MenuRunner->second).c_str(),Menu,ActionItem);
|
---|
| 116 | }
|
---|
| 117 | // finally add default quit item
|
---|
| 118 | //Action *returnFromAction = new TextMenu::LeaveAction(Menu);
|
---|
| 119 | //MenuItem *returnFromItem = new ActionMenuItem('q',"return to Main menu",Menu,returnFromAction);
|
---|
| 120 | //Menu->addDefault(returnFromItem);
|
---|
| 121 | }
|
---|