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