1 | /*
|
---|
2 | * QTMainWindow.cpp
|
---|
3 | *
|
---|
4 | * Created on: Jan 14, 2010
|
---|
5 | * Author: crueger
|
---|
6 | */
|
---|
7 |
|
---|
8 | #include "QTMainWindow.hpp"
|
---|
9 |
|
---|
10 | #include<Qt/qapplication.h>
|
---|
11 | #include<Qt/qlabel.h>
|
---|
12 | #include<Qt/qstring.h>
|
---|
13 | #include<Qt/qmenubar.h>
|
---|
14 | #include<Qt/qsplitter.h>
|
---|
15 |
|
---|
16 | #include<iostream>
|
---|
17 | #include<map>
|
---|
18 |
|
---|
19 | #include<boost/bind.hpp>
|
---|
20 |
|
---|
21 | #include "atom.hpp"
|
---|
22 | #include "molecule.hpp"
|
---|
23 | #include "verbose.hpp"
|
---|
24 | #include "Actions/Action.hpp"
|
---|
25 | #include "Actions/ActionRegistry.hpp"
|
---|
26 | #include "Actions/MapOfActions.hpp"
|
---|
27 | #include "Menu/Menu.hpp"
|
---|
28 | #include "Menu/QT4/QTMenu.hpp"
|
---|
29 | #include "Menu/ActionMenuItem.hpp"
|
---|
30 | #include "Views/QT4/QTWorldView.hpp"
|
---|
31 | #include "Views/QT4/GLMoleculeView.hpp"
|
---|
32 | #include "Views/QT4/QTMoleculeView.hpp"
|
---|
33 | #include "Views/QT4/QTStatusBar.hpp"
|
---|
34 | #include "Helpers/MemDebug.hpp"
|
---|
35 |
|
---|
36 |
|
---|
37 | using namespace std;
|
---|
38 |
|
---|
39 | QTMainWindow::QTMainWindow(QApplication *_theApp) :
|
---|
40 | theApp(_theApp)
|
---|
41 | {
|
---|
42 | QSplitter *splitter1 = new QSplitter (Qt::Horizontal, this );
|
---|
43 | QSplitter *splitter2 = new QSplitter (Qt::Vertical, splitter1 );
|
---|
44 |
|
---|
45 | worldDisplay = new QTWorldView(splitter2);
|
---|
46 |
|
---|
47 | moleculeDisplay = new QTMoleculeView();
|
---|
48 | molecule3dDisplay = new GLMoleculeView();
|
---|
49 |
|
---|
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 | }
|
---|
71 |
|
---|
72 | setCentralWidget(splitter1);
|
---|
73 | splitter1->addWidget(splitter2);
|
---|
74 | splitter1->addWidget(moleculeDisplay);
|
---|
75 | splitter2->addWidget(molecule3dDisplay);
|
---|
76 | splitter2->addWidget(worldDisplay);
|
---|
77 |
|
---|
78 | statusBar = new QTStatusBar(this);
|
---|
79 | setStatusBar(statusBar);
|
---|
80 |
|
---|
81 | connect(worldDisplay,SIGNAL(moleculeSelected(molecule*)),moleculeDisplay,SLOT(moleculeSelected(molecule*)));
|
---|
82 | connect(worldDisplay,SIGNAL(moleculeUnSelected(molecule*)),moleculeDisplay,SLOT(moleculeUnSelected(molecule*)));
|
---|
83 | }
|
---|
84 |
|
---|
85 | QTMainWindow::~QTMainWindow()
|
---|
86 | {
|
---|
87 | menuBar()->clear();
|
---|
88 | delete editMoleculesMenu;
|
---|
89 | }
|
---|
90 |
|
---|
91 | void QTMainWindow::display() {
|
---|
92 | this->show();
|
---|
93 | theApp->exec();
|
---|
94 | }
|
---|
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 | }
|
---|